From fb4212fc974efe551683b9d71dd35cef5578b14d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 19 Jan 2025 17:06:07 +0300 Subject: [PATCH 1/6] Add additional validation for chat messages --- src/map/clif.c | 19 +++++++++++++++++++ src/map/clif.h | 1 + src/map/script.c | 7 ++++++- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/src/map/clif.c b/src/map/clif.c index a84ddbe1c..abb8ca3da 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10755,6 +10755,19 @@ static void clif_msgtable_color(struct map_session_data *sd, enum clif_messages clif->send(&p, sizeof(p), &sd->bl, SELF); } +static bool clif_validate_message(struct map_session_data *sd, char *message) +{ + nullpo_retr(false, message); + + if (strchr(message, '\n') != NULL || + strchr(message, '\r') != NULL || + strstr(message, " ") != NULL) { + return false; + } + + return true; +} + /** * Validates and processes a global/guild/party message packet. * @@ -10819,6 +10832,8 @@ static const char *clif_process_chat_message(struct map_session_data *sd, const safestrncpy(out_buf, packet->message, textlen+1); // [!] packet->message is not necessarily NUL terminated message = out_buf + namelen + 3; + if (clif->validate_message(sd, out_buf) == false) + return NULL; if (!pc->process_chat_message(sd, message)) return NULL; return message; @@ -10875,6 +10890,9 @@ static bool clif_process_whisper_message(struct map_session_data *sd, const stru safestrncpy(out_name, packet->name, NAME_LENGTH + 1); // [!] packet->name is not NUL terminated safestrncpy(out_message, packet->message, messagelen+1); // [!] packet->message is not necessarily NUL terminated + if (clif->validate_message(sd, out_message) == false) + return false; + if (!pc->process_chat_message(sd, out_message)) return false; @@ -26883,6 +26901,7 @@ void clif_defaults(void) clif->messages = clif_displaymessage_sprintf; clif->process_chat_message = clif_process_chat_message; clif->process_whisper_message = clif_process_whisper_message; + clif->validate_message = clif_validate_message; clif->wisexin = clif_wisexin; clif->wisall = clif_wisall; clif->PMIgnoreList = clif_PMIgnoreList; diff --git a/src/map/clif.h b/src/map/clif.h index e10b3c3af..5637b576c 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -1272,6 +1272,7 @@ struct clif_interface { void (*messages) (const int fd, const char *mes, ...) __attribute__((format(printf, 2, 3))); const char *(*process_chat_message) (struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen); bool (*process_whisper_message) (struct map_session_data *sd, const struct packet_whisper_message *packet, char *out_name, char *out_message, int out_messagelen); + bool (*validate_message) (struct map_session_data *sd, char *message); void (*wisexin) (struct map_session_data *sd,int type,int flag); void (*wisall) (struct map_session_data *sd,int type,int flag); void (*PMIgnoreList) (struct map_session_data* sd); diff --git a/src/map/script.c b/src/map/script.c index 3a7dc50b2..920f27c27 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -27026,7 +27026,12 @@ static BUILDIN(channelmes) return true; } - channel->send(chan, NULL, script_getstr(st, 3)); + char *message = script_getstr(st, 3); + if (clif->validate_message(sd, message) == false) { + script_pushint(st, 0); + return true; + } + channel->send(chan, NULL, message); script_pushint(st, 1); return true; From 9815693a333aec74c4604a7abc779f4e9c2c991e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 19 Jan 2025 17:17:39 +0300 Subject: [PATCH 2/6] Regenerate HPM data --- src/common/HPMDataCheck.h | 2 +- src/common/HPMSymbols.inc.h | 2 +- src/plugins/HPMHooking/HPMHooking.Defs.inc | 1168 +++++----- .../HPMHooking_api.HPMHooksCore.inc | 2 +- .../HPMHooking_api.HookingPoints.inc | 2 +- .../HPMHooking/HPMHooking_api.Hooks.inc | 594 ++--- .../HPMHooking/HPMHooking_api.sources.inc | 2 +- .../HPMHooking_char.HPMHooksCore.inc | 2 +- .../HPMHooking_char.HookingPoints.inc | 2 +- .../HPMHooking/HPMHooking_char.Hooks.inc | 506 ++--- .../HPMHooking/HPMHooking_char.sources.inc | 2 +- .../HPMHooking_login.HPMHooksCore.inc | 2 +- .../HPMHooking_login.HookingPoints.inc | 2 +- .../HPMHooking/HPMHooking_login.Hooks.inc | 418 ++-- .../HPMHooking/HPMHooking_login.sources.inc | 2 +- .../HPMHooking_map.HPMHooksCore.inc | 6 +- .../HPMHooking_map.HookingPoints.inc | 3 +- .../HPMHooking/HPMHooking_map.Hooks.inc | 1997 +++++++++-------- .../HPMHooking/HPMHooking_map.sources.inc | 2 +- 19 files changed, 2375 insertions(+), 2341 deletions(-) diff --git a/src/common/HPMDataCheck.h b/src/common/HPMDataCheck.h index 5d4bd1fdf..b537ebf32 100644 --- a/src/common/HPMDataCheck.h +++ b/src/common/HPMDataCheck.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2014-2024 Hercules Dev Team + * Copyright (C) 2014-2025 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 diff --git a/src/common/HPMSymbols.inc.h b/src/common/HPMSymbols.inc.h index ad30989ef..3a3e21095 100644 --- a/src/common/HPMSymbols.inc.h +++ b/src/common/HPMSymbols.inc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking.Defs.inc b/src/plugins/HPMHooking/HPMHooking.Defs.inc index d61e0fc3c..afb494dbd 100644 --- a/src/plugins/HPMHooking/HPMHooking.Defs.inc +++ b/src/plugins/HPMHooking/HPMHooking.Defs.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -30,12 +30,12 @@ typedef void (*HPMHOOK_pre_HCache_init) (void); typedef void (*HPMHOOK_post_HCache_init) (void); typedef bool (*HPMHOOK_pre_HCache_check) (const char **file); typedef bool (*HPMHOOK_post_HCache_check) (bool retVal___, const char *file); -typedef FILE* (*HPMHOOK_pre_HCache_open) (const char **file, const char **opt); -typedef FILE* (*HPMHOOK_post_HCache_open) (FILE* retVal___, const char *file, const char *opt); +typedef FILE * (*HPMHOOK_pre_HCache_open) (const char **file, const char **opt); +typedef FILE * (*HPMHOOK_post_HCache_open) (FILE * retVal___, const char *file, const char *opt); #endif // COMMON_UTILS_H #ifdef LOGIN_ACCOUNT_H /* account */ -typedef struct Sql* (*HPMHOOK_pre_account_db_sql_up) (AccountDB **self); -typedef struct Sql* (*HPMHOOK_post_account_db_sql_up) (struct Sql* retVal___, AccountDB *self); +typedef struct Sql * (*HPMHOOK_pre_account_db_sql_up) (AccountDB **self); +typedef struct Sql * (*HPMHOOK_post_account_db_sql_up) (struct Sql * retVal___, AccountDB *self); typedef void (*HPMHOOK_pre_account_mmo_send_accreg2) (AccountDB **self, int *fd, int *account_id, int *char_id); typedef void (*HPMHOOK_post_account_mmo_send_accreg2) (AccountDB *self, int fd, int account_id, int char_id); typedef void (*HPMHOOK_pre_account_mmo_save_accreg2) (AccountDB **self, int *fd, int *account_id, int *char_id); @@ -44,8 +44,8 @@ typedef bool (*HPMHOOK_pre_account_mmo_auth_fromsql) (AccountDB_SQL **db, struct typedef bool (*HPMHOOK_post_account_mmo_auth_fromsql) (bool retVal___, AccountDB_SQL *db, struct mmo_account *acc, int account_id); typedef bool (*HPMHOOK_pre_account_mmo_auth_tosql) (AccountDB_SQL **db, const struct mmo_account **acc, bool *is_new); typedef bool (*HPMHOOK_post_account_mmo_auth_tosql) (bool retVal___, AccountDB_SQL *db, const struct mmo_account *acc, bool is_new); -typedef AccountDB* (*HPMHOOK_pre_account_db_sql) (void); -typedef AccountDB* (*HPMHOOK_post_account_db_sql) (AccountDB* retVal___); +typedef AccountDB * (*HPMHOOK_pre_account_db_sql) (void); +typedef AccountDB * (*HPMHOOK_post_account_db_sql) (AccountDB * retVal___); typedef bool (*HPMHOOK_pre_account_db_sql_init) (AccountDB **self); typedef bool (*HPMHOOK_post_account_db_sql_init) (bool retVal___, AccountDB *self); typedef void (*HPMHOOK_pre_account_db_sql_destroy) (AccountDB **self); @@ -64,8 +64,8 @@ typedef bool (*HPMHOOK_pre_account_db_sql_load_num) (AccountDB **self, struct mm typedef bool (*HPMHOOK_post_account_db_sql_load_num) (bool retVal___, AccountDB *self, struct mmo_account *acc, const int account_id); typedef bool (*HPMHOOK_pre_account_db_sql_load_str) (AccountDB **self, struct mmo_account **acc, const char **userid); typedef bool (*HPMHOOK_post_account_db_sql_load_str) (bool retVal___, AccountDB *self, struct mmo_account *acc, const char *userid); -typedef AccountDBIterator* (*HPMHOOK_pre_account_db_sql_iterator) (AccountDB **self); -typedef AccountDBIterator* (*HPMHOOK_post_account_db_sql_iterator) (AccountDBIterator* retVal___, AccountDB *self); +typedef AccountDBIterator * (*HPMHOOK_pre_account_db_sql_iterator) (AccountDB **self); +typedef AccountDBIterator * (*HPMHOOK_post_account_db_sql_iterator) (AccountDBIterator * retVal___, AccountDB *self); typedef void (*HPMHOOK_pre_account_db_sql_iter_destroy) (AccountDBIterator **self); typedef void (*HPMHOOK_post_account_db_sql_iter_destroy) (AccountDBIterator *self); typedef bool (*HPMHOOK_pre_account_db_sql_iter_next) (AccountDBIterator **self, struct mmo_account **acc); @@ -114,10 +114,10 @@ typedef void (*HPMHOOK_pre_achievement_readdb_additional_fields) (const struct c typedef void (*HPMHOOK_post_achievement_readdb_additional_fields) (const struct config_setting_t *conf, struct achievement_data *entry, const char *source); typedef void (*HPMHOOK_pre_achievement_readdb_ranks) (void); typedef void (*HPMHOOK_post_achievement_readdb_ranks) (void); -typedef const struct achievement_data* (*HPMHOOK_pre_achievement_get) (int *aid); -typedef const struct achievement_data* (*HPMHOOK_post_achievement_get) (const struct achievement_data* retVal___, int aid); -typedef struct achievement* (*HPMHOOK_pre_achievement_ensure) (struct map_session_data **sd, const struct achievement_data **ad); -typedef struct achievement* (*HPMHOOK_post_achievement_ensure) (struct achievement* retVal___, struct map_session_data *sd, const struct achievement_data *ad); +typedef const struct achievement_data * (*HPMHOOK_pre_achievement_get) (int *aid); +typedef const struct achievement_data * (*HPMHOOK_post_achievement_get) (const struct achievement_data * retVal___, int aid); +typedef struct achievement * (*HPMHOOK_pre_achievement_ensure) (struct map_session_data **sd, const struct achievement_data **ad); +typedef struct achievement * (*HPMHOOK_post_achievement_ensure) (struct achievement * retVal___, struct map_session_data *sd, const struct achievement_data *ad); typedef void (*HPMHOOK_pre_achievement_calculate_totals) (const struct map_session_data **sd, int **points, int **completed, int **rank, int **curr_rank_points); typedef void (*HPMHOOK_post_achievement_calculate_totals) (const struct map_session_data *sd, int *points, int *completed, int *rank, int *curr_rank_points); typedef bool (*HPMHOOK_pre_achievement_check_complete) (struct map_session_data **sd, const struct achievement_data **ad); @@ -298,8 +298,8 @@ typedef void (*HPMHOOK_pre_aclif_add_remove_timer) (struct online_api_login_data typedef void (*HPMHOOK_post_aclif_add_remove_timer) (struct online_api_login_data *data); typedef void (*HPMHOOK_pre_aclif_remove_remove_timer) (struct online_api_login_data **data); typedef void (*HPMHOOK_post_aclif_remove_remove_timer) (struct online_api_login_data *data); -typedef const char* (*HPMHOOK_pre_aclif_get_first_world_name) (void); -typedef const char* (*HPMHOOK_post_aclif_get_first_world_name) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_aclif_get_first_world_name) (void); +typedef const char * (*HPMHOOK_post_aclif_get_first_world_name) (const char * retVal___); typedef void (*HPMHOOK_pre_aclif_show_request) (int *fd, struct api_session_data **sd, bool *show_http_headers); typedef void (*HPMHOOK_post_aclif_show_request) (int fd, struct api_session_data *sd, bool show_http_headers); #endif // API_ACLIF_H @@ -384,18 +384,18 @@ typedef bool (*HPMHOOK_pre_atcommand_can_use2) (struct map_session_data **sd, co typedef bool (*HPMHOOK_post_atcommand_can_use2) (bool retVal___, struct map_session_data *sd, const char *command, AtCommandType type); typedef void (*HPMHOOK_pre_atcommand_load_groups) (GroupSettings ***groups, struct config_setting_t ***commands_, size_t *sz); typedef void (*HPMHOOK_post_atcommand_load_groups) (GroupSettings **groups, struct config_setting_t **commands_, size_t sz); -typedef AtCommandInfo* (*HPMHOOK_pre_atcommand_exists) (const char **name); -typedef AtCommandInfo* (*HPMHOOK_post_atcommand_exists) (AtCommandInfo* retVal___, const char *name); +typedef AtCommandInfo * (*HPMHOOK_pre_atcommand_exists) (const char **name); +typedef AtCommandInfo * (*HPMHOOK_post_atcommand_exists) (AtCommandInfo * retVal___, const char *name); typedef bool (*HPMHOOK_pre_atcommand_msg_read) (const char **cfg_name, bool *allow_override); typedef bool (*HPMHOOK_post_atcommand_msg_read) (bool retVal___, const char *cfg_name, bool allow_override); typedef void (*HPMHOOK_pre_atcommand_final_msg) (void); typedef void (*HPMHOOK_post_atcommand_final_msg) (void); -typedef struct atcmd_binding_data* (*HPMHOOK_pre_atcommand_get_bind_byname) (const char **name); -typedef struct atcmd_binding_data* (*HPMHOOK_post_atcommand_get_bind_byname) (struct atcmd_binding_data* retVal___, const char *name); -typedef AtCommandInfo* (*HPMHOOK_pre_atcommand_get_info_byname) (const char **name); -typedef AtCommandInfo* (*HPMHOOK_post_atcommand_get_info_byname) (AtCommandInfo* retVal___, const char *name); -typedef const char* (*HPMHOOK_pre_atcommand_check_alias) (const char **aliasname); -typedef const char* (*HPMHOOK_post_atcommand_check_alias) (const char* retVal___, const char *aliasname); +typedef struct atcmd_binding_data * (*HPMHOOK_pre_atcommand_get_bind_byname) (const char **name); +typedef struct atcmd_binding_data * (*HPMHOOK_post_atcommand_get_bind_byname) (struct atcmd_binding_data * retVal___, const char *name); +typedef AtCommandInfo * (*HPMHOOK_pre_atcommand_get_info_byname) (const char **name); +typedef AtCommandInfo * (*HPMHOOK_post_atcommand_get_info_byname) (AtCommandInfo * retVal___, const char *name); +typedef const char * (*HPMHOOK_pre_atcommand_check_alias) (const char **aliasname); +typedef const char * (*HPMHOOK_post_atcommand_check_alias) (const char * retVal___, const char *aliasname); typedef void (*HPMHOOK_pre_atcommand_get_suggestions) (struct map_session_data **sd, const char **name, bool *is_atcmd_cmd); typedef void (*HPMHOOK_post_atcommand_get_suggestions) (struct map_session_data *sd, const char *name, bool is_atcmd_cmd); typedef void (*HPMHOOK_pre_atcommand_config_read) (const char **config_filename); @@ -434,14 +434,14 @@ typedef void (*HPMHOOK_pre_atcommand_base_commands) (void); typedef void (*HPMHOOK_post_atcommand_base_commands) (void); typedef bool (*HPMHOOK_pre_atcommand_add) (char **name, AtCommandFunc *func, bool *replace); typedef bool (*HPMHOOK_post_atcommand_add) (bool retVal___, char *name, AtCommandFunc func, bool replace); -typedef const char* (*HPMHOOK_pre_atcommand_msg) (int *msg_number); -typedef const char* (*HPMHOOK_post_atcommand_msg) (const char* retVal___, int msg_number); +typedef const char * (*HPMHOOK_pre_atcommand_msg) (int *msg_number); +typedef const char * (*HPMHOOK_post_atcommand_msg) (const char * retVal___, int msg_number); typedef void (*HPMHOOK_pre_atcommand_expand_message_table) (void); typedef void (*HPMHOOK_post_atcommand_expand_message_table) (void); -typedef const char* (*HPMHOOK_pre_atcommand_msgfd) (int *fd, int *msg_number); -typedef const char* (*HPMHOOK_post_atcommand_msgfd) (const char* retVal___, int fd, int msg_number); -typedef const char* (*HPMHOOK_pre_atcommand_msgsd) (struct map_session_data **sd, int *msg_number); -typedef const char* (*HPMHOOK_post_atcommand_msgsd) (const char* retVal___, struct map_session_data *sd, int msg_number); +typedef const char * (*HPMHOOK_pre_atcommand_msgfd) (int *fd, int *msg_number); +typedef const char * (*HPMHOOK_post_atcommand_msgfd) (const char * retVal___, int fd, int msg_number); +typedef const char * (*HPMHOOK_pre_atcommand_msgsd) (struct map_session_data **sd, int *msg_number); +typedef const char * (*HPMHOOK_post_atcommand_msgsd) (const char * retVal___, struct map_session_data *sd, int msg_number); #endif // MAP_ATCOMMAND_H #ifdef COMMON_BASE62_H /* base62 */ typedef bool (*HPMHOOK_pre_base62_encode_int_padded) (int *value, char **buf, int *min_len, int *buf_len); @@ -500,12 +500,12 @@ typedef int64 (*HPMHOOK_pre_battle_calc_weapon_damage) (struct block_list **src, typedef int64 (*HPMHOOK_post_battle_calc_weapon_damage) (int64 retVal___, struct block_list *src, struct block_list *bl, uint16 skill_id, uint16 skill_lv, struct weapon_atk *watk, int nk, bool n_ele, short s_ele, short s_ele_, int size, int type, int flag, int flag2); typedef int64 (*HPMHOOK_pre_battle_calc_defense) (int *attack_type, struct block_list **src, struct block_list **target, uint16 *skill_id, uint16 *skill_lv, int64 *damage, int *flag, int *pdef); typedef int64 (*HPMHOOK_post_battle_calc_defense) (int64 retVal___, int attack_type, struct block_list *src, struct block_list *target, uint16 skill_id, uint16 skill_lv, int64 damage, int flag, int pdef); -typedef struct block_list* (*HPMHOOK_pre_battle_get_master) (struct block_list **src); -typedef struct block_list* (*HPMHOOK_post_battle_get_master) (struct block_list* retVal___, struct block_list *src); -typedef struct block_list* (*HPMHOOK_pre_battle_get_targeted) (struct block_list **target); -typedef struct block_list* (*HPMHOOK_post_battle_get_targeted) (struct block_list* retVal___, struct block_list *target); -typedef struct block_list* (*HPMHOOK_pre_battle_get_enemy) (struct block_list **target, int *type, int *range); -typedef struct block_list* (*HPMHOOK_post_battle_get_enemy) (struct block_list* retVal___, struct block_list *target, int type, int range); +typedef struct block_list * (*HPMHOOK_pre_battle_get_master) (struct block_list **src); +typedef struct block_list * (*HPMHOOK_post_battle_get_master) (struct block_list * retVal___, struct block_list *src); +typedef struct block_list * (*HPMHOOK_pre_battle_get_targeted) (struct block_list **target); +typedef struct block_list * (*HPMHOOK_post_battle_get_targeted) (struct block_list * retVal___, struct block_list *target); +typedef struct block_list * (*HPMHOOK_pre_battle_get_enemy) (struct block_list **target, int *type, int *range); +typedef struct block_list * (*HPMHOOK_post_battle_get_enemy) (struct block_list * retVal___, struct block_list *target, int type, int range); typedef int (*HPMHOOK_pre_battle_get_target) (struct block_list **bl); typedef int (*HPMHOOK_post_battle_get_target) (int retVal___, struct block_list *bl); typedef int (*HPMHOOK_pre_battle_get_current_skill) (struct block_list **bl); @@ -558,8 +558,8 @@ typedef bool (*HPMHOOK_pre_battle_config_get_value) (const char **w1, int **valu typedef bool (*HPMHOOK_post_battle_config_get_value) (bool retVal___, const char *w1, int *value); typedef void (*HPMHOOK_pre_battle_config_adjust) (void); typedef void (*HPMHOOK_post_battle_config_adjust) (void); -typedef struct block_list* (*HPMHOOK_pre_battle_get_enemy_area) (struct block_list **src, int *x, int *y, int *range, int *type, int *ignore_id); -typedef struct block_list* (*HPMHOOK_post_battle_get_enemy_area) (struct block_list* retVal___, struct block_list *src, int x, int y, int range, int type, int ignore_id); +typedef struct block_list * (*HPMHOOK_pre_battle_get_enemy_area) (struct block_list **src, int *x, int *y, int *range, int *type, int *ignore_id); +typedef struct block_list * (*HPMHOOK_post_battle_get_enemy_area) (struct block_list * retVal___, struct block_list *src, int x, int y, int range, int type, int ignore_id); typedef int (*HPMHOOK_pre_battle_damage_area) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_battle_damage_area) (int retVal___, struct block_list *bl, va_list ap); typedef void (*HPMHOOK_pre_battle_calc_masteryfix_unknown) (struct block_list **src, struct block_list **target, uint16 **skill_id, uint16 **skill_lv, int64 **damage, int **div, bool **left, bool **weapon); @@ -576,8 +576,8 @@ typedef void (*HPMHOOK_pre_bg_init) (bool *minimal); typedef void (*HPMHOOK_post_bg_init) (bool minimal); typedef void (*HPMHOOK_pre_bg_final) (void); typedef void (*HPMHOOK_post_bg_final) (void); -typedef struct bg_arena* (*HPMHOOK_pre_bg_name2arena) (const char **name); -typedef struct bg_arena* (*HPMHOOK_post_bg_name2arena) (struct bg_arena* retVal___, const char *name); +typedef struct bg_arena * (*HPMHOOK_pre_bg_name2arena) (const char **name); +typedef struct bg_arena * (*HPMHOOK_post_bg_name2arena) (struct bg_arena * retVal___, const char *name); typedef void (*HPMHOOK_pre_bg_queue_add) (struct map_session_data **sd, struct bg_arena **arena, enum bg_queue_types *type); typedef void (*HPMHOOK_post_bg_queue_add) (struct map_session_data *sd, struct bg_arena *arena, enum bg_queue_types type); typedef enum BATTLEGROUNDS_QUEUE_ACK (*HPMHOOK_pre_bg_can_queue) (struct map_session_data **sd, struct bg_arena **arena, enum bg_queue_types *type); @@ -600,10 +600,10 @@ typedef void (*HPMHOOK_pre_bg_match_over) (struct bg_arena **arena, bool *cancel typedef void (*HPMHOOK_post_bg_match_over) (struct bg_arena *arena, bool canceled); typedef void (*HPMHOOK_pre_bg_queue_check) (struct bg_arena **arena); typedef void (*HPMHOOK_post_bg_queue_check) (struct bg_arena *arena); -typedef struct battleground_data* (*HPMHOOK_pre_bg_team_search) (int *bg_id); -typedef struct battleground_data* (*HPMHOOK_post_bg_team_search) (struct battleground_data* retVal___, int bg_id); -typedef struct map_session_data* (*HPMHOOK_pre_bg_getavailablesd) (struct battleground_data **bgd); -typedef struct map_session_data* (*HPMHOOK_post_bg_getavailablesd) (struct map_session_data* retVal___, struct battleground_data *bgd); +typedef struct battleground_data * (*HPMHOOK_pre_bg_team_search) (int *bg_id); +typedef struct battleground_data * (*HPMHOOK_post_bg_team_search) (struct battleground_data * retVal___, int bg_id); +typedef struct map_session_data * (*HPMHOOK_pre_bg_getavailablesd) (struct battleground_data **bgd); +typedef struct map_session_data * (*HPMHOOK_post_bg_getavailablesd) (struct map_session_data * retVal___, struct battleground_data *bgd); typedef bool (*HPMHOOK_pre_bg_team_delete) (int *bg_id); typedef bool (*HPMHOOK_post_bg_team_delete) (bool retVal___, int bg_id); typedef bool (*HPMHOOK_pre_bg_team_warp) (int *bg_id, unsigned short *map_index, short *x, short *y); @@ -658,8 +658,8 @@ typedef void (*HPMHOOK_pre_capiif_init) (void); typedef void (*HPMHOOK_post_capiif_init) (void); typedef void (*HPMHOOK_pre_capiif_final) (void); typedef void (*HPMHOOK_post_capiif_final) (void); -typedef struct online_char_data* (*HPMHOOK_pre_capiif_get_online_character) (const struct PACKET_API_PROXY **p); -typedef struct online_char_data* (*HPMHOOK_post_capiif_get_online_character) (struct online_char_data* retVal___, const struct PACKET_API_PROXY *p); +typedef struct online_char_data * (*HPMHOOK_pre_capiif_get_online_character) (const struct PACKET_API_PROXY **p); +typedef struct online_char_data * (*HPMHOOK_post_capiif_get_online_character) (struct online_char_data * retVal___, const struct PACKET_API_PROXY *p); typedef void (*HPMHOOK_pre_capiif_emblem_download) (int *fd, int *guild_id, int *emblem_id); typedef void (*HPMHOOK_post_capiif_emblem_download) (int fd, int guild_id, int emblem_id); typedef void (*HPMHOOK_pre_capiif_parse_userconfig_load_emotes) (int *fd); @@ -698,10 +698,10 @@ typedef int (*HPMHOOK_pre_channel_init) (bool *minimal); typedef int (*HPMHOOK_post_channel_init) (int retVal___, bool minimal); typedef void (*HPMHOOK_pre_channel_final) (void); typedef void (*HPMHOOK_post_channel_final) (void); -typedef struct channel_data* (*HPMHOOK_pre_channel_search) (const char **name, struct map_session_data **sd); -typedef struct channel_data* (*HPMHOOK_post_channel_search) (struct channel_data* retVal___, const char *name, struct map_session_data *sd); -typedef struct channel_data* (*HPMHOOK_pre_channel_create) (enum channel_types *type, const char **name, unsigned char *color); -typedef struct channel_data* (*HPMHOOK_post_channel_create) (struct channel_data* retVal___, enum channel_types type, const char *name, unsigned char color); +typedef struct channel_data * (*HPMHOOK_pre_channel_search) (const char **name, struct map_session_data **sd); +typedef struct channel_data * (*HPMHOOK_post_channel_search) (struct channel_data * retVal___, const char *name, struct map_session_data *sd); +typedef struct channel_data * (*HPMHOOK_pre_channel_create) (enum channel_types *type, const char **name, unsigned char *color); +typedef struct channel_data * (*HPMHOOK_post_channel_create) (struct channel_data * retVal___, enum channel_types type, const char *name, unsigned char color); typedef void (*HPMHOOK_pre_channel_delete) (struct channel_data **chan); typedef void (*HPMHOOK_post_channel_delete) (struct channel_data *chan); typedef void (*HPMHOOK_pre_channel_set_password) (struct channel_data **chan, const char **password); @@ -1116,8 +1116,8 @@ typedef bool (*HPMHOOK_pre_chat_npc_kick_all) (struct chat_data **cd); typedef bool (*HPMHOOK_post_chat_npc_kick_all) (bool retVal___, struct chat_data *cd); typedef bool (*HPMHOOK_pre_chat_trigger_event) (struct chat_data **cd); typedef bool (*HPMHOOK_post_chat_trigger_event) (bool retVal___, struct chat_data *cd); -typedef struct chat_data* (*HPMHOOK_pre_chat_create) (struct block_list **bl, const char **title, const char **pass, int *limit, bool *pub, int *trigger, const char **ev, int *zeny, int *min_level, int *max_level); -typedef struct chat_data* (*HPMHOOK_post_chat_create) (struct chat_data* retVal___, struct block_list *bl, const char *title, const char *pass, int limit, bool pub, int trigger, const char *ev, int zeny, int min_level, int max_level); +typedef struct chat_data * (*HPMHOOK_pre_chat_create) (struct block_list **bl, const char **title, const char **pass, int *limit, bool *pub, int *trigger, const char **ev, int *zeny, int *min_level, int *max_level); +typedef struct chat_data * (*HPMHOOK_post_chat_create) (struct chat_data * retVal___, struct block_list *bl, const char *title, const char *pass, int limit, bool pub, int trigger, const char *ev, int zeny, int min_level, int max_level); #endif // MAP_CHAT_H #ifdef MAP_CHRIF_H /* chrif */ typedef void (*HPMHOOK_pre_chrif_init) (bool *minimal); @@ -1138,10 +1138,10 @@ typedef int (*HPMHOOK_pre_chrif_isconnected) (void); typedef int (*HPMHOOK_post_chrif_isconnected) (int retVal___); typedef void (*HPMHOOK_pre_chrif_check_shutdown) (void); typedef void (*HPMHOOK_post_chrif_check_shutdown) (void); -typedef struct auth_node* (*HPMHOOK_pre_chrif_search) (int *account_id); -typedef struct auth_node* (*HPMHOOK_post_chrif_search) (struct auth_node* retVal___, int account_id); -typedef struct auth_node* (*HPMHOOK_pre_chrif_auth_check) (int *account_id, int *char_id, enum sd_state *state); -typedef struct auth_node* (*HPMHOOK_post_chrif_auth_check) (struct auth_node* retVal___, int account_id, int char_id, enum sd_state state); +typedef struct auth_node * (*HPMHOOK_pre_chrif_search) (int *account_id); +typedef struct auth_node * (*HPMHOOK_post_chrif_search) (struct auth_node * retVal___, int account_id); +typedef struct auth_node * (*HPMHOOK_pre_chrif_auth_check) (int *account_id, int *char_id, enum sd_state *state); +typedef struct auth_node * (*HPMHOOK_post_chrif_auth_check) (struct auth_node * retVal___, int account_id, int char_id, enum sd_state state); typedef bool (*HPMHOOK_pre_chrif_auth_delete) (int *account_id, int *char_id, enum sd_state *state); typedef bool (*HPMHOOK_post_chrif_auth_delete) (bool retVal___, int account_id, int char_id, enum sd_state state); typedef bool (*HPMHOOK_pre_chrif_auth_finished) (struct map_session_data **sd); @@ -1268,12 +1268,12 @@ typedef void (*HPMHOOK_pre_clan_read_db_additional_fields) (struct clan **entry, typedef void (*HPMHOOK_post_clan_read_db_additional_fields) (struct clan *entry, struct config_setting_t *t, int n, const char *source); typedef void (*HPMHOOK_pre_clan_read_buffs) (struct clan **c, struct config_setting_t **buff, const char **source); typedef void (*HPMHOOK_post_clan_read_buffs) (struct clan *c, struct config_setting_t *buff, const char *source); -typedef struct clan* (*HPMHOOK_pre_clan_search) (int *clan_id); -typedef struct clan* (*HPMHOOK_post_clan_search) (struct clan* retVal___, int clan_id); -typedef struct clan* (*HPMHOOK_pre_clan_searchname) (const char **name); -typedef struct clan* (*HPMHOOK_post_clan_searchname) (struct clan* retVal___, const char *name); -typedef struct map_session_data* (*HPMHOOK_pre_clan_getonlinesd) (struct clan **c); -typedef struct map_session_data* (*HPMHOOK_post_clan_getonlinesd) (struct map_session_data* retVal___, struct clan *c); +typedef struct clan * (*HPMHOOK_pre_clan_search) (int *clan_id); +typedef struct clan * (*HPMHOOK_post_clan_search) (struct clan * retVal___, int clan_id); +typedef struct clan * (*HPMHOOK_pre_clan_searchname) (const char **name); +typedef struct clan * (*HPMHOOK_post_clan_searchname) (struct clan * retVal___, const char *name); +typedef struct map_session_data * (*HPMHOOK_pre_clan_getonlinesd) (struct clan **c); +typedef struct map_session_data * (*HPMHOOK_post_clan_getonlinesd) (struct map_session_data * retVal___, struct clan *c); typedef int (*HPMHOOK_pre_clan_getindex) (const struct clan **c, int *char_id); typedef int (*HPMHOOK_post_clan_getindex) (int retVal___, const struct clan *c, int char_id); typedef bool (*HPMHOOK_pre_clan_join) (struct map_session_data **sd, int *clan_id); @@ -1328,8 +1328,8 @@ typedef int (*HPMHOOK_pre_clif_send_actual) (int *fd, void **buf, int *len); typedef int (*HPMHOOK_post_clif_send_actual) (int retVal___, int fd, void *buf, int len); typedef int (*HPMHOOK_pre_clif_parse) (int *fd); typedef int (*HPMHOOK_post_clif_parse) (int retVal___, int fd); -typedef const struct s_packet_db* (*HPMHOOK_pre_clif_packet) (int *packet_id); -typedef const struct s_packet_db* (*HPMHOOK_post_clif_packet) (const struct s_packet_db* retVal___, int packet_id); +typedef const struct s_packet_db * (*HPMHOOK_pre_clif_packet) (int *packet_id); +typedef const struct s_packet_db * (*HPMHOOK_post_clif_packet) (const struct s_packet_db * retVal___, int packet_id); typedef unsigned short (*HPMHOOK_pre_clif_parse_cmd) (int *fd, struct map_session_data **sd); typedef unsigned short (*HPMHOOK_post_clif_parse_cmd) (unsigned short retVal___, int fd, struct map_session_data *sd); typedef unsigned short (*HPMHOOK_pre_clif_decrypt_cmd) (int *cmd, struct map_session_data **sd); @@ -1910,10 +1910,12 @@ typedef void (*HPMHOOK_pre_clif_message) (const int *fd, const char **mes); typedef void (*HPMHOOK_post_clif_message) (const int fd, const char *mes); typedef void (*HPMHOOK_pre_clif_messageln) (const int *fd, const char **mes); typedef void (*HPMHOOK_post_clif_messageln) (const int fd, const char *mes); -typedef const char* (*HPMHOOK_pre_clif_process_chat_message) (struct map_session_data **sd, const struct packet_chat_message **packet, char **out_buf, int *out_buflen); -typedef const char* (*HPMHOOK_post_clif_process_chat_message) (const char* retVal___, struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen); +typedef const char * (*HPMHOOK_pre_clif_process_chat_message) (struct map_session_data **sd, const struct packet_chat_message **packet, char **out_buf, int *out_buflen); +typedef const char * (*HPMHOOK_post_clif_process_chat_message) (const char * retVal___, struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen); typedef bool (*HPMHOOK_pre_clif_process_whisper_message) (struct map_session_data **sd, const struct packet_whisper_message **packet, char **out_name, char **out_message, int *out_messagelen); typedef bool (*HPMHOOK_post_clif_process_whisper_message) (bool retVal___, struct map_session_data *sd, const struct packet_whisper_message *packet, char *out_name, char *out_message, int out_messagelen); +typedef bool (*HPMHOOK_pre_clif_validate_message) (struct map_session_data **sd, char **message); +typedef bool (*HPMHOOK_post_clif_validate_message) (bool retVal___, struct map_session_data *sd, char *message); typedef void (*HPMHOOK_pre_clif_wisexin) (struct map_session_data **sd, int *type, int *flag); typedef void (*HPMHOOK_post_clif_wisexin) (struct map_session_data *sd, int type, int flag); typedef void (*HPMHOOK_pre_clif_wisall) (struct map_session_data **sd, int *type, int *flag); @@ -2870,8 +2872,8 @@ typedef void (*HPMHOOK_pre_clif_selectcart) (struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_selectcart) (struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_pSelectCart) (int *fd, struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_pSelectCart) (int fd, struct map_session_data *sd); -typedef const char* (*HPMHOOK_pre_clif_get_bl_name) (const struct block_list **bl); -typedef const char* (*HPMHOOK_post_clif_get_bl_name) (const char* retVal___, const struct block_list *bl); +typedef const char * (*HPMHOOK_pre_clif_get_bl_name) (const struct block_list **bl); +typedef const char * (*HPMHOOK_post_clif_get_bl_name) (const char * retVal___, const struct block_list *bl); typedef void (*HPMHOOK_pre_clif_pRodexOpenWriteMail) (int *fd, struct map_session_data **sd); typedef void (*HPMHOOK_post_clif_pRodexOpenWriteMail) (int fd, struct map_session_data *sd); typedef void (*HPMHOOK_pre_clif_rodex_open_write_mail) (int *fd, const char **receiver_name, int8 *result); @@ -3188,8 +3190,8 @@ typedef int (*HPMHOOK_pre_cmdline_exec) (int *argc, char ***argv, unsigned int * typedef int (*HPMHOOK_post_cmdline_exec) (int retVal___, int argc, char **argv, unsigned int options); typedef bool (*HPMHOOK_pre_cmdline_arg_next_value) (const char **name, int *current_arg, int *argc); typedef bool (*HPMHOOK_post_cmdline_arg_next_value) (bool retVal___, const char *name, int current_arg, int argc); -typedef const char* (*HPMHOOK_pre_cmdline_arg_source) (struct CmdlineArgData **arg); -typedef const char* (*HPMHOOK_post_cmdline_arg_source) (const char* retVal___, struct CmdlineArgData *arg); +typedef const char * (*HPMHOOK_pre_cmdline_arg_source) (struct CmdlineArgData **arg); +typedef const char * (*HPMHOOK_post_cmdline_arg_source) (const char * retVal___, struct CmdlineArgData *arg); #endif // COMMON_CORE_H #ifdef COMMON_CONSOLE_H /* console */ typedef void (*HPMHOOK_pre_console_init) (void); @@ -3216,8 +3218,8 @@ typedef DBReleaser (*HPMHOOK_pre_DB_default_release) (enum DBType *type, enum DB typedef DBReleaser (*HPMHOOK_post_DB_default_release) (DBReleaser retVal___, enum DBType type, enum DBOptions options); typedef DBReleaser (*HPMHOOK_pre_DB_custom_release) (enum DBReleaseOption *which); typedef DBReleaser (*HPMHOOK_post_DB_custom_release) (DBReleaser retVal___, enum DBReleaseOption which); -typedef struct DBMap* (*HPMHOOK_pre_DB_alloc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); -typedef struct DBMap* (*HPMHOOK_post_DB_alloc) (struct DBMap* retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); +typedef struct DBMap * (*HPMHOOK_pre_DB_alloc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); +typedef struct DBMap * (*HPMHOOK_post_DB_alloc) (struct DBMap * retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); typedef union DBKey (*HPMHOOK_pre_DB_i2key) (int *key); typedef union DBKey (*HPMHOOK_post_DB_i2key) (union DBKey retVal___, int key); typedef union DBKey (*HPMHOOK_pre_DB_ui2key) (unsigned int *key); @@ -3238,8 +3240,8 @@ typedef int (*HPMHOOK_pre_DB_data2i) (struct DBData **data); typedef int (*HPMHOOK_post_DB_data2i) (int retVal___, struct DBData *data); typedef unsigned int (*HPMHOOK_pre_DB_data2ui) (struct DBData **data); typedef unsigned int (*HPMHOOK_post_DB_data2ui) (unsigned int retVal___, struct DBData *data); -typedef void* (*HPMHOOK_pre_DB_data2ptr) (struct DBData **data); -typedef void* (*HPMHOOK_post_DB_data2ptr) (void* retVal___, struct DBData *data); +typedef void * (*HPMHOOK_pre_DB_data2ptr) (struct DBData **data); +typedef void * (*HPMHOOK_post_DB_data2ptr) (void * retVal___, struct DBData *data); typedef void (*HPMHOOK_pre_DB_init) (void); typedef void (*HPMHOOK_post_DB_init) (void); typedef void (*HPMHOOK_pre_DB_final) (void); @@ -3278,8 +3280,8 @@ typedef void (*HPMHOOK_pre_elemental_final) (void); typedef void (*HPMHOOK_post_elemental_final) (void); typedef bool (*HPMHOOK_pre_elemental_class) (int *class_); typedef bool (*HPMHOOK_post_elemental_class) (bool retVal___, int class_); -typedef struct view_data* (*HPMHOOK_pre_elemental_get_viewdata) (int *class_); -typedef struct view_data* (*HPMHOOK_post_elemental_get_viewdata) (struct view_data* retVal___, int class_); +typedef struct view_data * (*HPMHOOK_pre_elemental_get_viewdata) (int *class_); +typedef struct view_data * (*HPMHOOK_post_elemental_get_viewdata) (struct view_data * retVal___, int class_); typedef int (*HPMHOOK_pre_elemental_create) (struct map_session_data **sd, int *class_, unsigned int *lifetime); typedef int (*HPMHOOK_post_elemental_create) (int retVal___, struct map_session_data *sd, int class_, unsigned int lifetime); typedef int (*HPMHOOK_pre_elemental_data_received) (const struct s_elemental **ele, bool *flag); @@ -3344,8 +3346,8 @@ typedef void (*HPMHOOK_pre_enchantui_final) (void); typedef void (*HPMHOOK_post_enchantui_final) (void); typedef int (*HPMHOOK_pre_enchantui_db_final_sub) (union DBKey *key, struct DBData **data, va_list ap); typedef int (*HPMHOOK_post_enchantui_db_final_sub) (int retVal___, union DBKey key, struct DBData *data, va_list ap); -typedef struct enchant_info* (*HPMHOOK_pre_enchantui_exists) (int64 *id); -typedef struct enchant_info* (*HPMHOOK_post_enchantui_exists) (struct enchant_info* retVal___, int64 id); +typedef struct enchant_info * (*HPMHOOK_pre_enchantui_exists) (int64 *id); +typedef struct enchant_info * (*HPMHOOK_post_enchantui_exists) (struct enchant_info * retVal___, int64 id); typedef void (*HPMHOOK_pre_enchantui_read_db_libconfig) (void); typedef void (*HPMHOOK_post_enchantui_read_db_libconfig) (void); typedef bool (*HPMHOOK_pre_enchantui_read_db_libconfig_sub) (const struct config_setting_t **it, int *n, const char **source); @@ -3372,8 +3374,8 @@ typedef bool (*HPMHOOK_pre_enchantui_read_db_libconfig_materials_list) (const st typedef bool (*HPMHOOK_post_enchantui_read_db_libconfig_materials_list) (bool retVal___, const struct config_setting_t *it, struct itemlist *materials, int n, const char *source); typedef bool (*HPMHOOK_pre_enchantui_read_db_libconfig_itemrate_list) (const struct config_setting_t **it, struct enchant_item_list **elist, int *n, const char **source); typedef bool (*HPMHOOK_post_enchantui_read_db_libconfig_itemrate_list) (bool retVal___, const struct config_setting_t *it, struct enchant_item_list *elist, int n, const char *source); -typedef const struct enchant_info* (*HPMHOOK_pre_enchantui_validate_targetitem) (struct map_session_data **sd, int64 *enchant_group, int *index); -typedef const struct enchant_info* (*HPMHOOK_post_enchantui_validate_targetitem) (const struct enchant_info* retVal___, struct map_session_data *sd, int64 enchant_group, int index); +typedef const struct enchant_info * (*HPMHOOK_pre_enchantui_validate_targetitem) (struct map_session_data **sd, int64 *enchant_group, int *index); +typedef const struct enchant_info * (*HPMHOOK_post_enchantui_validate_targetitem) (const struct enchant_info * retVal___, struct map_session_data *sd, int64 enchant_group, int index); typedef int (*HPMHOOK_pre_enchantui_validate_slot_id) (struct map_session_data **sd, const struct enchant_info **ei, const struct item **it); typedef int (*HPMHOOK_post_enchantui_validate_slot_id) (int retVal___, struct map_session_data *sd, const struct enchant_info *ei, const struct item *it); typedef bool (*HPMHOOK_pre_enchantui_validate_requirements) (struct map_session_data **sd, const int *zeny, const struct itemlist **materials); @@ -3410,8 +3412,8 @@ typedef bool (*HPMHOOK_pre_extraconf_read_emblems) (void); typedef bool (*HPMHOOK_post_extraconf_read_emblems) (bool retVal___); #endif // COMMON_EXTRACONF_H #ifdef CHAR_GEOIP_H /* geoip */ -typedef const char* (*HPMHOOK_pre_geoip_getcountry) (uint32 *ipnum); -typedef const char* (*HPMHOOK_post_geoip_getcountry) (const char* retVal___, uint32 ipnum); +typedef const char * (*HPMHOOK_pre_geoip_getcountry) (uint32 *ipnum); +typedef const char * (*HPMHOOK_post_geoip_getcountry) (const char * retVal___, uint32 ipnum); typedef void (*HPMHOOK_pre_geoip_final) (bool *shutdown); typedef void (*HPMHOOK_post_geoip_final) (bool shutdown); typedef void (*HPMHOOK_pre_geoip_init) (void); @@ -3422,8 +3424,8 @@ typedef int (*HPMHOOK_pre_goldpc_init) (bool *minimal); typedef int (*HPMHOOK_post_goldpc_init) (int retVal___, bool minimal); typedef void (*HPMHOOK_pre_goldpc_final) (void); typedef void (*HPMHOOK_post_goldpc_final) (void); -typedef struct goldpc_mode* (*HPMHOOK_pre_goldpc_exists) (int *id); -typedef struct goldpc_mode* (*HPMHOOK_post_goldpc_exists) (struct goldpc_mode* retVal___, int id); +typedef struct goldpc_mode * (*HPMHOOK_pre_goldpc_exists) (int *id); +typedef struct goldpc_mode * (*HPMHOOK_post_goldpc_exists) (struct goldpc_mode * retVal___, int id); typedef void (*HPMHOOK_pre_goldpc_read_db_libconfig) (void); typedef void (*HPMHOOK_post_goldpc_read_db_libconfig) (void); typedef bool (*HPMHOOK_pre_goldpc_read_db_libconfig_sub) (const struct config_setting_t **it, int *n, const char **source); @@ -3462,8 +3464,8 @@ typedef bool (*HPMHOOK_pre_grader_failure_behavior_string2enum) (const char **st typedef bool (*HPMHOOK_post_grader_failure_behavior_string2enum) (bool retVal___, const char *str, enum grade_ui_failure_behavior *result); typedef bool (*HPMHOOK_pre_grader_announce_behavior_string2enum) (const char **str, enum grade_announce_condition **result); typedef bool (*HPMHOOK_post_grader_announce_behavior_string2enum) (bool retVal___, const char *str, enum grade_announce_condition *result); -typedef const struct s_grade_info* (*HPMHOOK_pre_grader_get_grade_info) (int *grade); -typedef const struct s_grade_info* (*HPMHOOK_post_grader_get_grade_info) (const struct s_grade_info* retVal___, int grade); +typedef const struct s_grade_info * (*HPMHOOK_pre_grader_get_grade_info) (int *grade); +typedef const struct s_grade_info * (*HPMHOOK_post_grader_get_grade_info) (const struct s_grade_info * retVal___, int grade); typedef void (*HPMHOOK_pre_grader_enchant_add_item) (struct map_session_data **sd, int *idx); typedef void (*HPMHOOK_post_grader_enchant_add_item) (struct map_session_data *sd, int idx); typedef void (*HPMHOOK_pre_grader_enchant_start) (struct map_session_data **sd, int *idx, int *mat_idx, bool *use_blessing, int *blessing_amount); @@ -3474,10 +3476,10 @@ typedef void (*HPMHOOK_pre_grfio_init) (const char **fname); typedef void (*HPMHOOK_post_grfio_init) (const char *fname); typedef void (*HPMHOOK_pre_grfio_final) (void); typedef void (*HPMHOOK_post_grfio_final) (void); -typedef void* (*HPMHOOK_pre_grfio_reads) (const char **fname, int **size); -typedef void* (*HPMHOOK_post_grfio_reads) (void* retVal___, const char *fname, int *size); -typedef const char* (*HPMHOOK_pre_grfio_find_file) (const char **fname); -typedef const char* (*HPMHOOK_post_grfio_find_file) (const char* retVal___, const char *fname); +typedef void * (*HPMHOOK_pre_grfio_reads) (const char **fname, int **size); +typedef void * (*HPMHOOK_post_grfio_reads) (void * retVal___, const char *fname, int *size); +typedef const char * (*HPMHOOK_pre_grfio_find_file) (const char **fname); +typedef const char * (*HPMHOOK_post_grfio_find_file) (const char * retVal___, const char *fname); typedef unsigned long (*HPMHOOK_pre_grfio_crc32) (const unsigned char **buf, unsigned int *len); typedef unsigned long (*HPMHOOK_post_grfio_crc32) (unsigned long retVal___, const unsigned char *buf, unsigned int len); typedef int (*HPMHOOK_pre_grfio_decode_zip) (void **dest, unsigned long **dest_len, const void **source, unsigned long *source_len); @@ -3486,8 +3488,8 @@ typedef int (*HPMHOOK_pre_grfio_encode_zip) (void **dest, unsigned long **dest_l typedef int (*HPMHOOK_post_grfio_encode_zip) (int retVal___, void *dest, unsigned long *dest_len, const void *source, unsigned long source_len); typedef void (*HPMHOOK_pre_grfio_report_error) (int *err); typedef void (*HPMHOOK_post_grfio_report_error) (int err); -typedef char* (*HPMHOOK_pre_grfio_decode_filename) (unsigned char **buf, int *len); -typedef char* (*HPMHOOK_post_grfio_decode_filename) (char* retVal___, unsigned char *buf, int len); +typedef char * (*HPMHOOK_pre_grfio_decode_filename) (unsigned char **buf, int *len); +typedef char * (*HPMHOOK_post_grfio_decode_filename) (char * retVal___, unsigned char *buf, int len); #endif // COMMON_GRFIO_H #ifdef MAP_GUILD_H /* guild */ typedef void (*HPMHOOK_pre_guild_init) (bool *minimal); @@ -3504,18 +3506,18 @@ typedef int (*HPMHOOK_pre_guild_checkcastles) (struct guild **g); typedef int (*HPMHOOK_post_guild_checkcastles) (int retVal___, struct guild *g); typedef bool (*HPMHOOK_pre_guild_isallied) (int *guild_id, int *guild_id2); typedef bool (*HPMHOOK_post_guild_isallied) (bool retVal___, int guild_id, int guild_id2); -typedef struct guild* (*HPMHOOK_pre_guild_search) (int *guild_id); -typedef struct guild* (*HPMHOOK_post_guild_search) (struct guild* retVal___, int guild_id); -typedef struct guild* (*HPMHOOK_pre_guild_searchname) (const char **str); -typedef struct guild* (*HPMHOOK_post_guild_searchname) (struct guild* retVal___, const char *str); -typedef struct guild_castle* (*HPMHOOK_pre_guild_castle_search) (int *gcid); -typedef struct guild_castle* (*HPMHOOK_post_guild_castle_search) (struct guild_castle* retVal___, int gcid); -typedef struct guild_castle* (*HPMHOOK_pre_guild_mapname2gc) (const char **mapname); -typedef struct guild_castle* (*HPMHOOK_post_guild_mapname2gc) (struct guild_castle* retVal___, const char *mapname); -typedef struct guild_castle* (*HPMHOOK_pre_guild_mapindex2gc) (short *map_index); -typedef struct guild_castle* (*HPMHOOK_post_guild_mapindex2gc) (struct guild_castle* retVal___, short map_index); -typedef struct map_session_data* (*HPMHOOK_pre_guild_getavailablesd) (struct guild **g); -typedef struct map_session_data* (*HPMHOOK_post_guild_getavailablesd) (struct map_session_data* retVal___, struct guild *g); +typedef struct guild * (*HPMHOOK_pre_guild_search) (int *guild_id); +typedef struct guild * (*HPMHOOK_post_guild_search) (struct guild * retVal___, int guild_id); +typedef struct guild * (*HPMHOOK_pre_guild_searchname) (const char **str); +typedef struct guild * (*HPMHOOK_post_guild_searchname) (struct guild * retVal___, const char *str); +typedef struct guild_castle * (*HPMHOOK_pre_guild_castle_search) (int *gcid); +typedef struct guild_castle * (*HPMHOOK_post_guild_castle_search) (struct guild_castle * retVal___, int gcid); +typedef struct guild_castle * (*HPMHOOK_pre_guild_mapname2gc) (const char **mapname); +typedef struct guild_castle * (*HPMHOOK_post_guild_mapname2gc) (struct guild_castle * retVal___, const char *mapname); +typedef struct guild_castle * (*HPMHOOK_pre_guild_mapindex2gc) (short *map_index); +typedef struct guild_castle * (*HPMHOOK_post_guild_mapindex2gc) (struct guild_castle * retVal___, short map_index); +typedef struct map_session_data * (*HPMHOOK_pre_guild_getavailablesd) (struct guild **g); +typedef struct map_session_data * (*HPMHOOK_post_guild_getavailablesd) (struct map_session_data * retVal___, struct guild *g); typedef int (*HPMHOOK_pre_guild_getindex) (const struct guild **g, int *account_id, int *char_id); typedef int (*HPMHOOK_post_guild_getindex) (int retVal___, const struct guild *g, int account_id, int char_id); typedef int (*HPMHOOK_pre_guild_getposition) (struct guild **g, struct map_session_data **sd); @@ -3628,8 +3630,8 @@ typedef void (*HPMHOOK_pre_guild_retrieveitembound) (int *char_id, int *aid, int typedef void (*HPMHOOK_post_guild_retrieveitembound) (int char_id, int aid, int guild_id); typedef int (*HPMHOOK_pre_guild_payexp_timer) (int *tid, int64 *tick, int *id, intptr_t *data); typedef int (*HPMHOOK_post_guild_payexp_timer) (int retVal___, int tid, int64 tick, int id, intptr_t data); -typedef struct map_session_data* (*HPMHOOK_pre_guild_sd_check) (int *guild_id, int *account_id, int *char_id); -typedef struct map_session_data* (*HPMHOOK_post_guild_sd_check) (struct map_session_data* retVal___, int guild_id, int account_id, int char_id); +typedef struct map_session_data * (*HPMHOOK_pre_guild_sd_check) (int *guild_id, int *account_id, int *char_id); +typedef struct map_session_data * (*HPMHOOK_post_guild_sd_check) (struct map_session_data * retVal___, int guild_id, int account_id, int char_id); typedef bool (*HPMHOOK_pre_guild_read_guildskill_tree_db) (char **split[], int *columns, int *current); typedef bool (*HPMHOOK_post_guild_read_guildskill_tree_db) (bool retVal___, char *split[], int columns, int current); typedef bool (*HPMHOOK_pre_guild_read_castledb_libconfig) (void); @@ -3670,8 +3672,8 @@ typedef int (*HPMHOOK_pre_guild_castle_owner_change_foreach) (struct map_session typedef int (*HPMHOOK_post_guild_castle_owner_change_foreach) (int retVal___, struct map_session_data *sd, va_list ap); #endif // MAP_GUILD_H #ifdef MAP_STORAGE_H /* gstorage */ -typedef struct guild_storage* (*HPMHOOK_pre_gstorage_ensure) (int *guild_id); -typedef struct guild_storage* (*HPMHOOK_post_gstorage_ensure) (struct guild_storage* retVal___, int guild_id); +typedef struct guild_storage * (*HPMHOOK_pre_gstorage_ensure) (int *guild_id); +typedef struct guild_storage * (*HPMHOOK_post_gstorage_ensure) (struct guild_storage * retVal___, int guild_id); typedef void (*HPMHOOK_pre_gstorage_init) (bool *minimal); typedef void (*HPMHOOK_post_gstorage_init) (bool minimal); typedef void (*HPMHOOK_pre_gstorage_final) (void); @@ -3712,8 +3714,8 @@ typedef void (*HPMHOOK_pre_handlers_final) (void); typedef void (*HPMHOOK_post_handlers_final) (void); typedef void (*HPMHOOK_pre_handlers_sendHotkeyV2Tab) (JsonP **json, struct userconfig_userhotkeys_v2 **hotkeys); typedef void (*HPMHOOK_post_handlers_sendHotkeyV2Tab) (JsonP *json, struct userconfig_userhotkeys_v2 *hotkeys); -typedef const char* (*HPMHOOK_pre_handlers_hotkeyTabIdToName) (int *tab_id); -typedef const char* (*HPMHOOK_post_handlers_hotkeyTabIdToName) (const char* retVal___, int tab_id); +typedef const char * (*HPMHOOK_pre_handlers_hotkeyTabIdToName) (int *tab_id); +typedef const char * (*HPMHOOK_post_handlers_hotkeyTabIdToName) (const char * retVal___, int tab_id); typedef bool (*HPMHOOK_pre_handlers_parse_userconfig_load) (int *fd, struct api_session_data **sd); typedef bool (*HPMHOOK_post_handlers_parse_userconfig_load) (bool retVal___, int fd, struct api_session_data *sd); typedef void (*HPMHOOK_pre_handlers_userconfig_load) (int *fd, struct api_session_data **sd, const void **data, size_t *data_size); @@ -3770,8 +3772,8 @@ typedef void (*HPMHOOK_pre_homun_reload) (void); typedef void (*HPMHOOK_post_homun_reload) (void); typedef void (*HPMHOOK_pre_homun_reload_skill) (void); typedef void (*HPMHOOK_post_homun_reload_skill) (void); -typedef struct view_data* (*HPMHOOK_pre_homun_get_viewdata) (int *class_); -typedef struct view_data* (*HPMHOOK_post_homun_get_viewdata) (struct view_data* retVal___, int class_); +typedef struct view_data * (*HPMHOOK_pre_homun_get_viewdata) (int *class_); +typedef struct view_data * (*HPMHOOK_post_homun_get_viewdata) (struct view_data * retVal___, int class_); typedef enum homun_type (*HPMHOOK_pre_homun_class2type) (enum homun_id *class_); typedef enum homun_type (*HPMHOOK_post_homun_class2type) (enum homun_type retVal___, enum homun_id class_); typedef void (*HPMHOOK_pre_homun_damaged) (struct homun_data **hd); @@ -3896,8 +3898,8 @@ typedef void (*HPMHOOK_pre_httpparser_init_settings) (void); typedef void (*HPMHOOK_post_httpparser_init_settings) (void); typedef void (*HPMHOOK_pre_httpparser_init_multi_settings) (void); typedef void (*HPMHOOK_post_httpparser_init_multi_settings) (void); -typedef const char* (*HPMHOOK_pre_httpparser_get_method_str) (struct api_session_data **sd); -typedef const char* (*HPMHOOK_post_httpparser_get_method_str) (const char* retVal___, struct api_session_data *sd); +typedef const char * (*HPMHOOK_pre_httpparser_get_method_str) (struct api_session_data **sd); +typedef const char * (*HPMHOOK_post_httpparser_get_method_str) (const char * retVal___, struct api_session_data *sd); typedef http_method (*HPMHOOK_pre_httpparser_get_method) (struct api_session_data **sd); typedef http_method (*HPMHOOK_post_httpparser_get_method) (http_method retVal___, struct api_session_data *sd); typedef int (*HPMHOOK_pre_httpparser_on_message_begin) (HTTP_PARSER **parser); @@ -3942,8 +3944,8 @@ typedef int (*HPMHOOK_pre_httpsender_init) (bool *minimal); typedef int (*HPMHOOK_post_httpsender_init) (int retVal___, bool minimal); typedef void (*HPMHOOK_pre_httpsender_final) (void); typedef void (*HPMHOOK_post_httpsender_final) (void); -typedef const char* (*HPMHOOK_pre_httpsender_http_status_name) (enum http_status *status); -typedef const char* (*HPMHOOK_post_httpsender_http_status_name) (const char* retVal___, enum http_status status); +typedef const char * (*HPMHOOK_pre_httpsender_http_status_name) (enum http_status *status); +typedef const char * (*HPMHOOK_post_httpsender_http_status_name) (const char * retVal___, enum http_status status); typedef void (*HPMHOOK_pre_httpsender_send_continue) (int *fd); typedef void (*HPMHOOK_post_httpsender_send_continue) (int fd); typedef bool (*HPMHOOK_pre_httpsender_send_plain) (int *fd, const char **data); @@ -4102,12 +4104,12 @@ typedef int (*HPMHOOK_pre_inter_guild_removemember_tosql) (int *account_id, int typedef int (*HPMHOOK_post_inter_guild_removemember_tosql) (int retVal___, int account_id, int char_id); typedef bool (*HPMHOOK_pre_inter_guild_tosql) (struct guild **g, int *flag); typedef bool (*HPMHOOK_post_inter_guild_tosql) (bool retVal___, struct guild *g, int flag); -typedef struct guild* (*HPMHOOK_pre_inter_guild_fromsql) (int *guild_id); -typedef struct guild* (*HPMHOOK_post_inter_guild_fromsql) (struct guild* retVal___, int guild_id); +typedef struct guild * (*HPMHOOK_pre_inter_guild_fromsql) (int *guild_id); +typedef struct guild * (*HPMHOOK_post_inter_guild_fromsql) (struct guild * retVal___, int guild_id); typedef int (*HPMHOOK_pre_inter_guild_castle_tosql) (struct guild_castle **gc); typedef int (*HPMHOOK_post_inter_guild_castle_tosql) (int retVal___, struct guild_castle *gc); -typedef struct guild_castle* (*HPMHOOK_pre_inter_guild_castle_fromsql) (int *castle_id); -typedef struct guild_castle* (*HPMHOOK_post_inter_guild_castle_fromsql) (struct guild_castle* retVal___, int castle_id); +typedef struct guild_castle * (*HPMHOOK_pre_inter_guild_castle_fromsql) (int *castle_id); +typedef struct guild_castle * (*HPMHOOK_post_inter_guild_castle_fromsql) (struct guild_castle * retVal___, int castle_id); typedef bool (*HPMHOOK_pre_inter_guild_exp_parse_row) (char **split[], int *column, int *current); typedef bool (*HPMHOOK_post_inter_guild_exp_parse_row) (bool retVal___, char *split[], int column, int current); typedef int (*HPMHOOK_pre_inter_guild_CharOnline) (int *char_id, int *guild_id); @@ -4138,8 +4140,8 @@ typedef int (*HPMHOOK_pre_inter_guild_parse_frommap) (int *fd); typedef int (*HPMHOOK_post_inter_guild_parse_frommap) (int retVal___, int fd); typedef int (*HPMHOOK_pre_inter_guild_broken) (int *guild_id); typedef int (*HPMHOOK_post_inter_guild_broken) (int retVal___, int guild_id); -typedef struct guild* (*HPMHOOK_pre_inter_guild_create) (const char **name, const struct guild_member **master); -typedef struct guild* (*HPMHOOK_post_inter_guild_create) (struct guild* retVal___, const char *name, const struct guild_member *master); +typedef struct guild * (*HPMHOOK_pre_inter_guild_create) (const char **name, const struct guild_member **master); +typedef struct guild * (*HPMHOOK_post_inter_guild_create) (struct guild * retVal___, const char *name, const struct guild_member *master); typedef bool (*HPMHOOK_pre_inter_guild_add_member) (int *guild_id, const struct guild_member **member); typedef bool (*HPMHOOK_post_inter_guild_add_member) (bool retVal___, int guild_id, const struct guild_member *member); typedef bool (*HPMHOOK_pre_inter_guild_leave) (int *guild_id, int *account_id, int *char_id, int *flag, const char **mes); @@ -4190,14 +4192,14 @@ typedef bool (*HPMHOOK_pre_inter_homunculus_rename) (const char **name); typedef bool (*HPMHOOK_post_inter_homunculus_rename) (bool retVal___, const char *name); #endif // CHAR_INT_HOMUN_H #ifdef CHAR_INTER_H /* inter */ -typedef const char* (*HPMHOOK_pre_inter_msg_txt) (int *msg_number); -typedef const char* (*HPMHOOK_post_inter_msg_txt) (const char* retVal___, int msg_number); +typedef const char * (*HPMHOOK_pre_inter_msg_txt) (int *msg_number); +typedef const char * (*HPMHOOK_post_inter_msg_txt) (const char * retVal___, int msg_number); typedef bool (*HPMHOOK_pre_inter_msg_config_read) (const char **cfg_name, bool *allow_override); typedef bool (*HPMHOOK_post_inter_msg_config_read) (bool retVal___, const char *cfg_name, bool allow_override); typedef void (*HPMHOOK_pre_inter_do_final_msg) (void); typedef void (*HPMHOOK_post_inter_do_final_msg) (void); -typedef const char* (*HPMHOOK_pre_inter_job_name) (int *class); -typedef const char* (*HPMHOOK_post_inter_job_name) (const char* retVal___, int class); +typedef const char * (*HPMHOOK_pre_inter_job_name) (int *class); +typedef const char * (*HPMHOOK_post_inter_job_name) (const char * retVal___, int class); typedef void (*HPMHOOK_pre_inter_vmsg_to_fd) (int *fd, int *u_fd, int *aid, char **msg, va_list ap); typedef void (*HPMHOOK_post_inter_vmsg_to_fd) (int fd, int u_fd, int aid, char *msg, va_list ap); typedef void (*HPMHOOK_pre_inter_savereg) (int *account_id, int *char_id, const char **key, unsigned int *index, intptr_t *val, bool *is_string); @@ -4288,14 +4290,14 @@ typedef int (*HPMHOOK_pre_inter_party_tosql) (struct party **p, int *flag, int * typedef int (*HPMHOOK_post_inter_party_tosql) (int retVal___, struct party *p, int flag, int index); typedef int (*HPMHOOK_pre_inter_party_del_nonexistent_party) (int *party_id); typedef int (*HPMHOOK_post_inter_party_del_nonexistent_party) (int retVal___, int party_id); -typedef struct party_data* (*HPMHOOK_pre_inter_party_fromsql) (int *party_id); -typedef struct party_data* (*HPMHOOK_post_inter_party_fromsql) (struct party_data* retVal___, int party_id); +typedef struct party_data * (*HPMHOOK_pre_inter_party_fromsql) (int *party_id); +typedef struct party_data * (*HPMHOOK_post_inter_party_fromsql) (struct party_data * retVal___, int party_id); typedef int (*HPMHOOK_pre_inter_party_sql_init) (void); typedef int (*HPMHOOK_post_inter_party_sql_init) (int retVal___); typedef void (*HPMHOOK_pre_inter_party_sql_final) (void); typedef void (*HPMHOOK_post_inter_party_sql_final) (void); -typedef struct party_data* (*HPMHOOK_pre_inter_party_search_partyname) (const char **str); -typedef struct party_data* (*HPMHOOK_post_inter_party_search_partyname) (struct party_data* retVal___, const char *str); +typedef struct party_data * (*HPMHOOK_pre_inter_party_search_partyname) (const char **str); +typedef struct party_data * (*HPMHOOK_post_inter_party_search_partyname) (struct party_data * retVal___, const char *str); typedef int (*HPMHOOK_pre_inter_party_check_exp_share) (struct party_data **p); typedef int (*HPMHOOK_post_inter_party_check_exp_share) (int retVal___, struct party_data *p); typedef int (*HPMHOOK_pre_inter_party_check_empty) (struct party_data **p); @@ -4308,8 +4310,8 @@ typedef int (*HPMHOOK_pre_inter_party_CharOnline) (int *char_id, int *party_id); typedef int (*HPMHOOK_post_inter_party_CharOnline) (int retVal___, int char_id, int party_id); typedef int (*HPMHOOK_pre_inter_party_CharOffline) (int *char_id, int *party_id); typedef int (*HPMHOOK_post_inter_party_CharOffline) (int retVal___, int char_id, int party_id); -typedef struct party_data* (*HPMHOOK_pre_inter_party_create) (const char **name, int *item, int *item2, const struct party_member **leader); -typedef struct party_data* (*HPMHOOK_post_inter_party_create) (struct party_data* retVal___, const char *name, int item, int item2, const struct party_member *leader); +typedef struct party_data * (*HPMHOOK_pre_inter_party_create) (const char **name, int *item, int *item2, const struct party_member **leader); +typedef struct party_data * (*HPMHOOK_post_inter_party_create) (struct party_data * retVal___, const char *name, int item, int item2, const struct party_member *leader); typedef bool (*HPMHOOK_pre_inter_party_add_member) (int *party_id, const struct party_member **member); typedef bool (*HPMHOOK_post_inter_party_add_member) (bool retVal___, int party_id, const struct party_member *member); typedef bool (*HPMHOOK_pre_inter_party_change_option) (int *party_id, int *account_id, int *exp, int *item); @@ -4336,16 +4338,16 @@ typedef int (*HPMHOOK_pre_inter_pet_delete_) (int *pet_id); typedef int (*HPMHOOK_post_inter_pet_delete_) (int retVal___, int pet_id); typedef int (*HPMHOOK_pre_inter_pet_parse_frommap) (int *fd); typedef int (*HPMHOOK_post_inter_pet_parse_frommap) (int retVal___, int fd); -typedef struct s_pet* (*HPMHOOK_pre_inter_pet_create) (int *account_id, int *char_id, int *pet_class, int *pet_lv, int *pet_egg_id, int *pet_equip, short *intimate, short *hungry, char *rename_flag, char *incubate, const char **pet_name); -typedef struct s_pet* (*HPMHOOK_post_inter_pet_create) (struct s_pet* retVal___, int account_id, int char_id, int pet_class, int pet_lv, int pet_egg_id, int pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name); -typedef struct s_pet* (*HPMHOOK_pre_inter_pet_load) (int *account_id, int *char_id, int *pet_id); -typedef struct s_pet* (*HPMHOOK_post_inter_pet_load) (struct s_pet* retVal___, int account_id, int char_id, int pet_id); +typedef struct s_pet * (*HPMHOOK_pre_inter_pet_create) (int *account_id, int *char_id, int *pet_class, int *pet_lv, int *pet_egg_id, int *pet_equip, short *intimate, short *hungry, char *rename_flag, char *incubate, const char **pet_name); +typedef struct s_pet * (*HPMHOOK_post_inter_pet_create) (struct s_pet * retVal___, int account_id, int char_id, int pet_class, int pet_lv, int pet_egg_id, int pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name); +typedef struct s_pet * (*HPMHOOK_pre_inter_pet_load) (int *account_id, int *char_id, int *pet_id); +typedef struct s_pet * (*HPMHOOK_post_inter_pet_load) (struct s_pet * retVal___, int account_id, int char_id, int pet_id); #endif // CHAR_INT_PET_H #ifdef CHAR_INT_QUEST_H /* inter_quest */ typedef int (*HPMHOOK_pre_inter_quest_parse_frommap) (int *fd); typedef int (*HPMHOOK_post_inter_quest_parse_frommap) (int retVal___, int fd); -typedef struct quest* (*HPMHOOK_pre_inter_quest_fromsql) (int *char_id, int **count); -typedef struct quest* (*HPMHOOK_post_inter_quest_fromsql) (struct quest* retVal___, int char_id, int *count); +typedef struct quest * (*HPMHOOK_pre_inter_quest_fromsql) (int *char_id, int **count); +typedef struct quest * (*HPMHOOK_post_inter_quest_fromsql) (struct quest * retVal___, int char_id, int *count); typedef bool (*HPMHOOK_pre_inter_quest_delete) (int *char_id, int *quest_id); typedef bool (*HPMHOOK_post_inter_quest_delete) (bool retVal___, int char_id, int quest_id); typedef bool (*HPMHOOK_pre_inter_quest_add) (int *char_id, struct quest *qd); @@ -4740,8 +4742,8 @@ typedef void (*HPMHOOK_pre_ircbot_parse_sub) (int *fd, char **str); typedef void (*HPMHOOK_post_ircbot_parse_sub) (int fd, char *str); typedef void (*HPMHOOK_pre_ircbot_parse_source) (char **source, char **nick, char **ident, char **host); typedef void (*HPMHOOK_post_ircbot_parse_source) (char *source, char *nick, char *ident, char *host); -typedef struct irc_func* (*HPMHOOK_pre_ircbot_func_search) (char **function_name); -typedef struct irc_func* (*HPMHOOK_post_ircbot_func_search) (struct irc_func* retVal___, char *function_name); +typedef struct irc_func * (*HPMHOOK_pre_ircbot_func_search) (char **function_name); +typedef struct irc_func * (*HPMHOOK_post_ircbot_func_search) (struct irc_func * retVal___, char *function_name); typedef int (*HPMHOOK_pre_ircbot_connect_timer) (int *tid, int64 *tick, int *id, intptr_t *data); typedef int (*HPMHOOK_post_ircbot_connect_timer) (int retVal___, int tid, int64 tick, int id, intptr_t data); typedef int (*HPMHOOK_pre_ircbot_identify_timer) (int *tid, int64 *tick, int *id, intptr_t *data); @@ -4790,26 +4792,26 @@ typedef void (*HPMHOOK_pre_itemdb_write_cached_packages) (const char **config_fi typedef void (*HPMHOOK_post_itemdb_write_cached_packages) (const char *config_filename); typedef bool (*HPMHOOK_pre_itemdb_read_cached_packages) (const char **config_filename); typedef bool (*HPMHOOK_post_itemdb_read_cached_packages) (bool retVal___, const char *config_filename); -typedef struct item_data* (*HPMHOOK_pre_itemdb_name2id) (const char **str); -typedef struct item_data* (*HPMHOOK_post_itemdb_name2id) (struct item_data* retVal___, const char *str); -typedef struct item_data* (*HPMHOOK_pre_itemdb_search_name) (const char **name); -typedef struct item_data* (*HPMHOOK_post_itemdb_search_name) (struct item_data* retVal___, const char *name); +typedef struct item_data * (*HPMHOOK_pre_itemdb_name2id) (const char **str); +typedef struct item_data * (*HPMHOOK_post_itemdb_name2id) (struct item_data * retVal___, const char *str); +typedef struct item_data * (*HPMHOOK_pre_itemdb_search_name) (const char **name); +typedef struct item_data * (*HPMHOOK_post_itemdb_search_name) (struct item_data * retVal___, const char *name); typedef int (*HPMHOOK_pre_itemdb_search_name_array) (struct item_data ***data, const int *size, const char **str, enum item_name_search_flag *flag); typedef int (*HPMHOOK_post_itemdb_search_name_array) (int retVal___, struct item_data **data, const int size, const char *str, enum item_name_search_flag flag); -typedef struct item_data* (*HPMHOOK_pre_itemdb_load) (int *nameid); -typedef struct item_data* (*HPMHOOK_post_itemdb_load) (struct item_data* retVal___, int nameid); -typedef struct item_data* (*HPMHOOK_pre_itemdb_search) (int *nameid); -typedef struct item_data* (*HPMHOOK_post_itemdb_search) (struct item_data* retVal___, int nameid); -typedef struct item_data* (*HPMHOOK_pre_itemdb_exists) (int *nameid); -typedef struct item_data* (*HPMHOOK_post_itemdb_exists) (struct item_data* retVal___, int nameid); -typedef struct itemdb_option* (*HPMHOOK_pre_itemdb_option_exists) (int *idx); -typedef struct itemdb_option* (*HPMHOOK_post_itemdb_option_exists) (struct itemdb_option* retVal___, int idx); -typedef struct item_reform* (*HPMHOOK_pre_itemdb_reform_exists) (int *idx); -typedef struct item_reform* (*HPMHOOK_post_itemdb_reform_exists) (struct item_reform* retVal___, int idx); +typedef struct item_data * (*HPMHOOK_pre_itemdb_load) (int *nameid); +typedef struct item_data * (*HPMHOOK_post_itemdb_load) (struct item_data * retVal___, int nameid); +typedef struct item_data * (*HPMHOOK_pre_itemdb_search) (int *nameid); +typedef struct item_data * (*HPMHOOK_post_itemdb_search) (struct item_data * retVal___, int nameid); +typedef struct item_data * (*HPMHOOK_pre_itemdb_exists) (int *nameid); +typedef struct item_data * (*HPMHOOK_post_itemdb_exists) (struct item_data * retVal___, int nameid); +typedef struct itemdb_option * (*HPMHOOK_pre_itemdb_option_exists) (int *idx); +typedef struct itemdb_option * (*HPMHOOK_post_itemdb_option_exists) (struct itemdb_option * retVal___, int idx); +typedef struct item_reform * (*HPMHOOK_pre_itemdb_reform_exists) (int *idx); +typedef struct item_reform * (*HPMHOOK_post_itemdb_reform_exists) (struct item_reform * retVal___, int idx); typedef bool (*HPMHOOK_pre_itemdb_in_group) (struct item_group **group, int *nameid); typedef bool (*HPMHOOK_post_itemdb_in_group) (bool retVal___, struct item_group *group, int nameid); -typedef const struct item_group* (*HPMHOOK_pre_itemdb_search_group) (int *nameid); -typedef const struct item_group* (*HPMHOOK_post_itemdb_search_group) (const struct item_group* retVal___, int nameid); +typedef const struct item_group * (*HPMHOOK_pre_itemdb_search_group) (int *nameid); +typedef const struct item_group * (*HPMHOOK_post_itemdb_search_group) (const struct item_group * retVal___, int nameid); typedef int (*HPMHOOK_pre_itemdb_group_item) (struct item_group **group); typedef int (*HPMHOOK_post_itemdb_group_item) (int retVal___, struct item_group *group); typedef int (*HPMHOOK_pre_itemdb_chain_item) (unsigned short *chain_id, int **rate); @@ -4822,16 +4824,16 @@ typedef int (*HPMHOOK_pre_itemdb_searchname_array_sub) (union DBKey *key, struct typedef int (*HPMHOOK_post_itemdb_searchname_array_sub) (int retVal___, union DBKey key, struct DBData data, va_list ap); typedef int (*HPMHOOK_pre_itemdb_searchrandomid) (struct item_group **group); typedef int (*HPMHOOK_post_itemdb_searchrandomid) (int retVal___, struct item_group *group); -typedef const char* (*HPMHOOK_pre_itemdb_typename) (enum item_types *type); -typedef const char* (*HPMHOOK_post_itemdb_typename) (const char* retVal___, enum item_types type); +typedef const char * (*HPMHOOK_pre_itemdb_typename) (enum item_types *type); +typedef const char * (*HPMHOOK_post_itemdb_typename) (const char * retVal___, enum item_types type); typedef void (*HPMHOOK_pre_itemdb_jobmask2mapid) (uint64 **bclass, uint64 *jobmask); typedef void (*HPMHOOK_post_itemdb_jobmask2mapid) (uint64 *bclass, uint64 jobmask); typedef void (*HPMHOOK_pre_itemdb_jobid2mapid) (uint64 **bclass, int *job_class, bool *enable); typedef void (*HPMHOOK_post_itemdb_jobid2mapid) (uint64 *bclass, int job_class, bool enable); typedef void (*HPMHOOK_pre_itemdb_create_dummy_data) (void); typedef void (*HPMHOOK_post_itemdb_create_dummy_data) (void); -typedef struct item_data* (*HPMHOOK_pre_itemdb_create_item_data) (int *nameid); -typedef struct item_data* (*HPMHOOK_post_itemdb_create_item_data) (struct item_data* retVal___, int nameid); +typedef struct item_data * (*HPMHOOK_pre_itemdb_create_item_data) (int *nameid); +typedef struct item_data * (*HPMHOOK_post_itemdb_create_item_data) (struct item_data * retVal___, int nameid); typedef int (*HPMHOOK_pre_itemdb_isequip) (int *nameid); typedef int (*HPMHOOK_post_itemdb_isequip) (int retVal___, int nameid); typedef int (*HPMHOOK_pre_itemdb_isequip2) (struct item_data **data); @@ -4896,8 +4898,8 @@ typedef int (*HPMHOOK_pre_itemdb_reform_final_sub) (union DBKey *key, struct DBD typedef int (*HPMHOOK_post_itemdb_reform_final_sub) (int retVal___, union DBKey key, struct DBData *data, va_list ap); typedef void (*HPMHOOK_pre_itemdb_clear) (bool *total); typedef void (*HPMHOOK_post_itemdb_clear) (bool total); -typedef struct item_combo* (*HPMHOOK_pre_itemdb_id2combo) (int *id); -typedef struct item_combo* (*HPMHOOK_post_itemdb_id2combo) (struct item_combo* retVal___, int id); +typedef struct item_combo * (*HPMHOOK_pre_itemdb_id2combo) (int *id); +typedef struct item_combo * (*HPMHOOK_post_itemdb_id2combo) (struct item_combo * retVal___, int id); typedef bool (*HPMHOOK_pre_itemdb_is_item_usable) (struct item_data **item); typedef bool (*HPMHOOK_post_itemdb_is_item_usable) (bool retVal___, struct item_data *item); typedef int (*HPMHOOK_pre_itemdb_addname_sub) (union DBKey *key, struct DBData **data, va_list ap); @@ -4930,38 +4932,38 @@ typedef bool (*HPMHOOK_pre_itemdb_read_libconfig_item_reform_list_sub) (struct c typedef bool (*HPMHOOK_post_itemdb_read_libconfig_item_reform_list_sub) (bool retVal___, struct config_setting_t *it, const char *source); typedef void (*HPMHOOK_pre_itemdb_item_reform) (struct map_session_data **sd, const struct item_reform **ir, int *idx); typedef void (*HPMHOOK_post_itemdb_item_reform) (struct map_session_data *sd, const struct item_reform *ir, int idx); -typedef const struct item_reform* (*HPMHOOK_pre_itemdb_search_reform_baseitem) (const struct item_data **itd, int *nameid); -typedef const struct item_reform* (*HPMHOOK_post_itemdb_search_reform_baseitem) (const struct item_reform* retVal___, const struct item_data *itd, int nameid); +typedef const struct item_reform * (*HPMHOOK_pre_itemdb_search_reform_baseitem) (const struct item_data **itd, int *nameid); +typedef const struct item_reform * (*HPMHOOK_post_itemdb_search_reform_baseitem) (const struct item_reform * retVal___, const struct item_data *itd, int nameid); #endif // MAP_ITEMDB_H #ifdef API_JSONPARSER_H /* jsonparser */ typedef int (*HPMHOOK_pre_jsonparser_init) (bool *minimal); typedef int (*HPMHOOK_post_jsonparser_init) (int retVal___, bool minimal); typedef void (*HPMHOOK_pre_jsonparser_final) (void); typedef void (*HPMHOOK_post_jsonparser_final) (void); -typedef JsonP* (*HPMHOOK_pre_jsonparser_parse) (const char **text); -typedef JsonP* (*HPMHOOK_post_jsonparser_parse) (JsonP* retVal___, const char *text); +typedef JsonP * (*HPMHOOK_pre_jsonparser_parse) (const char **text); +typedef JsonP * (*HPMHOOK_post_jsonparser_parse) (JsonP * retVal___, const char *text); typedef void (*HPMHOOK_pre_jsonparser_print) (const JsonP **parent); typedef void (*HPMHOOK_post_jsonparser_print) (const JsonP *parent); -typedef char* (*HPMHOOK_pre_jsonparser_get_string) (const JsonP **parent); -typedef char* (*HPMHOOK_post_jsonparser_get_string) (char* retVal___, const JsonP *parent); -typedef char* (*HPMHOOK_pre_jsonparser_get_formatted_string) (const JsonP **parent); -typedef char* (*HPMHOOK_post_jsonparser_get_formatted_string) (char* retVal___, const JsonP *parent); +typedef char * (*HPMHOOK_pre_jsonparser_get_string) (const JsonP **parent); +typedef char * (*HPMHOOK_post_jsonparser_get_string) (char * retVal___, const JsonP *parent); +typedef char * (*HPMHOOK_pre_jsonparser_get_formatted_string) (const JsonP **parent); +typedef char * (*HPMHOOK_post_jsonparser_get_formatted_string) (char * retVal___, const JsonP *parent); typedef bool (*HPMHOOK_pre_jsonparser_is_null) (const JsonP **parent); typedef bool (*HPMHOOK_post_jsonparser_is_null) (bool retVal___, const JsonP *parent); typedef bool (*HPMHOOK_pre_jsonparser_is_null_or_missing) (const JsonP **parent); typedef bool (*HPMHOOK_post_jsonparser_is_null_or_missing) (bool retVal___, const JsonP *parent); -typedef JsonP* (*HPMHOOK_pre_jsonparser_get) (const JsonP **parent, const char **name); -typedef JsonP* (*HPMHOOK_post_jsonparser_get) (JsonP* retVal___, const JsonP *parent, const char *name); +typedef JsonP * (*HPMHOOK_pre_jsonparser_get) (const JsonP **parent, const char **name); +typedef JsonP * (*HPMHOOK_post_jsonparser_get) (JsonP * retVal___, const JsonP *parent, const char *name); typedef int (*HPMHOOK_pre_jsonparser_get_array_size) (const JsonP **parent); typedef int (*HPMHOOK_post_jsonparser_get_array_size) (int retVal___, const JsonP *parent); -typedef char* (*HPMHOOK_pre_jsonparser_get_string_value) (const JsonP **parent); -typedef char* (*HPMHOOK_post_jsonparser_get_string_value) (char* retVal___, const JsonP *parent); +typedef char * (*HPMHOOK_pre_jsonparser_get_string_value) (const JsonP **parent); +typedef char * (*HPMHOOK_post_jsonparser_get_string_value) (char * retVal___, const JsonP *parent); typedef double (*HPMHOOK_pre_jsonparser_get_number_value) (const JsonP **parent); typedef double (*HPMHOOK_post_jsonparser_get_number_value) (double retVal___, const JsonP *parent); typedef int (*HPMHOOK_pre_jsonparser_get_int_value) (const JsonP **parent); typedef int (*HPMHOOK_post_jsonparser_get_int_value) (int retVal___, const JsonP *parent); -typedef char* (*HPMHOOK_pre_jsonparser_get_child_string_value) (const JsonP **parent, const char **name); -typedef char* (*HPMHOOK_post_jsonparser_get_child_string_value) (char* retVal___, const JsonP *parent, const char *name); +typedef char * (*HPMHOOK_pre_jsonparser_get_child_string_value) (const JsonP **parent, const char **name); +typedef char * (*HPMHOOK_post_jsonparser_get_child_string_value) (char * retVal___, const JsonP *parent, const char *name); typedef double (*HPMHOOK_pre_jsonparser_get_child_number_value) (const JsonP **parent, const char **name); typedef double (*HPMHOOK_post_jsonparser_get_child_number_value) (double retVal___, const JsonP *parent, const char *name); typedef int (*HPMHOOK_pre_jsonparser_get_child_int_value) (const JsonP **parent, const char **name); @@ -4976,46 +4978,46 @@ typedef int (*HPMHOOK_pre_jsonwriter_init) (bool *minimal); typedef int (*HPMHOOK_post_jsonwriter_init) (int retVal___, bool minimal); typedef void (*HPMHOOK_pre_jsonwriter_final) (void); typedef void (*HPMHOOK_post_jsonwriter_final) (void); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_create) (const char **text); -typedef JsonW* (*HPMHOOK_post_jsonwriter_create) (JsonW* retVal___, const char *text); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_create_empty) (void); -typedef JsonW* (*HPMHOOK_post_jsonwriter_create_empty) (JsonW* retVal___); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_new_array) (void); -typedef JsonW* (*HPMHOOK_post_jsonwriter_new_array) (JsonW* retVal___); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_new_object) (void); -typedef JsonW* (*HPMHOOK_post_jsonwriter_new_object) (JsonW* retVal___); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_new_string) (const char **str); -typedef JsonW* (*HPMHOOK_post_jsonwriter_new_string) (JsonW* retVal___, const char *str); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_new_number) (int *number); -typedef JsonW* (*HPMHOOK_post_jsonwriter_new_number) (JsonW* retVal___, int number); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_new_null) (void); -typedef JsonW* (*HPMHOOK_post_jsonwriter_new_null) (JsonW* retVal___); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_create) (const char **text); +typedef JsonW * (*HPMHOOK_post_jsonwriter_create) (JsonW * retVal___, const char *text); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_create_empty) (void); +typedef JsonW * (*HPMHOOK_post_jsonwriter_create_empty) (JsonW * retVal___); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_new_array) (void); +typedef JsonW * (*HPMHOOK_post_jsonwriter_new_array) (JsonW * retVal___); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_new_object) (void); +typedef JsonW * (*HPMHOOK_post_jsonwriter_new_object) (JsonW * retVal___); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_new_string) (const char **str); +typedef JsonW * (*HPMHOOK_post_jsonwriter_new_string) (JsonW * retVal___, const char *str); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_new_number) (int *number); +typedef JsonW * (*HPMHOOK_post_jsonwriter_new_number) (JsonW * retVal___, int number); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_new_null) (void); +typedef JsonW * (*HPMHOOK_post_jsonwriter_new_null) (JsonW * retVal___); typedef JsonWBool (*HPMHOOK_pre_jsonwriter_add_node) (JsonW **parent, const char **name, JsonW **child); typedef JsonWBool (*HPMHOOK_post_jsonwriter_add_node) (JsonWBool retVal___, JsonW *parent, const char *name, JsonW *child); typedef JsonWBool (*HPMHOOK_pre_jsonwriter_add_node_to_array) (JsonW **parent, JsonW **child); typedef JsonWBool (*HPMHOOK_post_jsonwriter_add_node_to_array) (JsonWBool retVal___, JsonW *parent, JsonW *child); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_array) (JsonW **parent, const char **name); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_array) (JsonW* retVal___, JsonW *parent, const char *name); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_object) (JsonW **parent, const char **name); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_object) (JsonW* retVal___, JsonW *parent, const char *name); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_null) (JsonW **parent, const char **name); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_null) (JsonW* retVal___, JsonW *parent, const char *name); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_number) (JsonW **parent, const char **name, int *number); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_number) (JsonW* retVal___, JsonW *parent, const char *name, int number); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_string) (JsonW **parent, const char **name, const char **str); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_string) (JsonW* retVal___, JsonW *parent, const char *name, const char *str); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_string_to_array) (JsonW **parent, const char **str); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_string_to_array) (JsonW* retVal___, JsonW *parent, const char *str); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_add_new_object_to_array) (JsonW **parent); -typedef JsonW* (*HPMHOOK_post_jsonwriter_add_new_object_to_array) (JsonW* retVal___, JsonW *parent); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_array) (JsonW **parent, const char **name); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_array) (JsonW * retVal___, JsonW *parent, const char *name); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_object) (JsonW **parent, const char **name); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_object) (JsonW * retVal___, JsonW *parent, const char *name); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_null) (JsonW **parent, const char **name); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_null) (JsonW * retVal___, JsonW *parent, const char *name); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_number) (JsonW **parent, const char **name, int *number); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_number) (JsonW * retVal___, JsonW *parent, const char *name, int number); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_string) (JsonW **parent, const char **name, const char **str); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_string) (JsonW * retVal___, JsonW *parent, const char *name, const char *str); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_string_to_array) (JsonW **parent, const char **str); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_string_to_array) (JsonW * retVal___, JsonW *parent, const char *str); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_add_new_object_to_array) (JsonW **parent); +typedef JsonW * (*HPMHOOK_post_jsonwriter_add_new_object_to_array) (JsonW * retVal___, JsonW *parent); typedef void (*HPMHOOK_pre_jsonwriter_print) (const JsonW **parent); typedef void (*HPMHOOK_post_jsonwriter_print) (const JsonW *parent); -typedef JsonW* (*HPMHOOK_pre_jsonwriter_get) (const JsonW **parent, const char **name); -typedef JsonW* (*HPMHOOK_post_jsonwriter_get) (JsonW* retVal___, const JsonW *parent, const char *name); -typedef char* (*HPMHOOK_pre_jsonwriter_get_string) (const JsonW **parent); -typedef char* (*HPMHOOK_post_jsonwriter_get_string) (char* retVal___, const JsonW *parent); -typedef char* (*HPMHOOK_pre_jsonwriter_get_formatted_string) (const JsonW **parent); -typedef char* (*HPMHOOK_post_jsonwriter_get_formatted_string) (char* retVal___, const JsonW *parent); +typedef JsonW * (*HPMHOOK_pre_jsonwriter_get) (const JsonW **parent, const char **name); +typedef JsonW * (*HPMHOOK_post_jsonwriter_get) (JsonW * retVal___, const JsonW *parent, const char *name); +typedef char * (*HPMHOOK_pre_jsonwriter_get_string) (const JsonW **parent); +typedef char * (*HPMHOOK_post_jsonwriter_get_string) (char * retVal___, const JsonW *parent); +typedef char * (*HPMHOOK_pre_jsonwriter_get_formatted_string) (const JsonW **parent); +typedef char * (*HPMHOOK_post_jsonwriter_get_formatted_string) (char * retVal___, const JsonW *parent); typedef void (*HPMHOOK_pre_jsonwriter_free) (char **ptr); typedef void (*HPMHOOK_post_jsonwriter_free) (char *ptr); typedef void (*HPMHOOK_pre_jsonwriter_delete) (JsonW **ptr); @@ -5092,8 +5094,8 @@ typedef void (*HPMHOOK_pre_lclif_login_error) (int *fd, uint8 *error); typedef void (*HPMHOOK_post_lclif_login_error) (int fd, uint8 error); typedef void (*HPMHOOK_pre_lclif_coding_key) (int *fd, struct login_session_data **sd); typedef void (*HPMHOOK_post_lclif_coding_key) (int fd, struct login_session_data *sd); -typedef const struct login_packet_db* (*HPMHOOK_pre_lclif_packet) (int16 *packet_id); -typedef const struct login_packet_db* (*HPMHOOK_post_lclif_packet) (const struct login_packet_db* retVal___, int16 packet_id); +typedef const struct login_packet_db * (*HPMHOOK_pre_lclif_packet) (int16 *packet_id); +typedef const struct login_packet_db * (*HPMHOOK_post_lclif_packet) (const struct login_packet_db * retVal___, int16 packet_id); typedef enum parsefunc_rcode (*HPMHOOK_pre_lclif_parse_packet) (const struct login_packet_db **lpd, int *fd, struct login_session_data **sd); typedef enum parsefunc_rcode (*HPMHOOK_post_lclif_parse_packet) (enum parsefunc_rcode retVal___, const struct login_packet_db *lpd, int fd, struct login_session_data *sd); typedef int (*HPMHOOK_pre_lclif_parse) (int *fd); @@ -5170,10 +5172,10 @@ typedef double (*HPMHOOK_pre_libconfig_setting_get_float) (const struct config_s typedef double (*HPMHOOK_post_libconfig_setting_get_float) (double retVal___, const struct config_setting_t *setting); typedef int (*HPMHOOK_pre_libconfig_setting_get_bool) (const struct config_setting_t **setting); typedef int (*HPMHOOK_post_libconfig_setting_get_bool) (int retVal___, const struct config_setting_t *setting); -typedef const char* (*HPMHOOK_pre_libconfig_setting_get_string) (const struct config_setting_t **setting); -typedef const char* (*HPMHOOK_post_libconfig_setting_get_string) (const char* retVal___, const struct config_setting_t *setting); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_lookup) (struct config_setting_t **setting, const char **name); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_lookup) (struct config_setting_t* retVal___, struct config_setting_t *setting, const char *name); +typedef const char * (*HPMHOOK_pre_libconfig_setting_get_string) (const struct config_setting_t **setting); +typedef const char * (*HPMHOOK_post_libconfig_setting_get_string) (const char * retVal___, const struct config_setting_t *setting); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_lookup) (struct config_setting_t **setting, const char **name); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_lookup) (struct config_setting_t * retVal___, struct config_setting_t *setting, const char *name); typedef int (*HPMHOOK_pre_libconfig_setting_lookup_int) (const struct config_setting_t **setting, const char **name, int **value); typedef int (*HPMHOOK_post_libconfig_setting_lookup_int) (int retVal___, const struct config_setting_t *setting, const char *name, int *value); typedef int (*HPMHOOK_pre_libconfig_setting_lookup_int64) (const struct config_setting_t **setting, const char **name, int64 **value); @@ -5206,36 +5208,36 @@ typedef double (*HPMHOOK_pre_libconfig_setting_get_float_elem) (const struct con typedef double (*HPMHOOK_post_libconfig_setting_get_float_elem) (double retVal___, const struct config_setting_t *setting, int idx); typedef int (*HPMHOOK_pre_libconfig_setting_get_bool_elem) (const struct config_setting_t **setting, int *idx); typedef int (*HPMHOOK_post_libconfig_setting_get_bool_elem) (int retVal___, const struct config_setting_t *setting, int idx); -typedef const char* (*HPMHOOK_pre_libconfig_setting_get_string_elem) (const struct config_setting_t **setting, int *idx); -typedef const char* (*HPMHOOK_post_libconfig_setting_get_string_elem) (const char* retVal___, const struct config_setting_t *setting, int idx); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_set_int_elem) (struct config_setting_t **setting, int *idx, int *value); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_set_int_elem) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_set_int64_elem) (struct config_setting_t **setting, int *idx, int64 *value); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_set_int64_elem) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int64 value); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_set_float_elem) (struct config_setting_t **setting, int *idx, double *value); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_set_float_elem) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, double value); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_set_bool_elem) (struct config_setting_t **setting, int *idx, int *value); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_set_bool_elem) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_set_string_elem) (struct config_setting_t **setting, int *idx, const char **value); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_set_string_elem) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, const char *value); +typedef const char * (*HPMHOOK_pre_libconfig_setting_get_string_elem) (const struct config_setting_t **setting, int *idx); +typedef const char * (*HPMHOOK_post_libconfig_setting_get_string_elem) (const char * retVal___, const struct config_setting_t *setting, int idx); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_set_int_elem) (struct config_setting_t **setting, int *idx, int *value); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_set_int_elem) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_set_int64_elem) (struct config_setting_t **setting, int *idx, int64 *value); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_set_int64_elem) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int64 value); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_set_float_elem) (struct config_setting_t **setting, int *idx, double *value); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_set_float_elem) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, double value); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_set_bool_elem) (struct config_setting_t **setting, int *idx, int *value); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_set_bool_elem) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_set_string_elem) (struct config_setting_t **setting, int *idx, const char **value); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_set_string_elem) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, const char *value); typedef int (*HPMHOOK_pre_libconfig_setting_index) (const struct config_setting_t **setting); typedef int (*HPMHOOK_post_libconfig_setting_index) (int retVal___, const struct config_setting_t *setting); typedef int (*HPMHOOK_pre_libconfig_setting_length) (const struct config_setting_t **setting); typedef int (*HPMHOOK_post_libconfig_setting_length) (int retVal___, const struct config_setting_t *setting); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_get_elem) (const struct config_setting_t **setting, unsigned int *idx); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_get_elem) (struct config_setting_t* retVal___, const struct config_setting_t *setting, unsigned int idx); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_get_member) (const struct config_setting_t **setting, const char **name); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_get_member) (struct config_setting_t* retVal___, const struct config_setting_t *setting, const char *name); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_setting_add) (struct config_setting_t **parent, const char **name, int *type); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_setting_add) (struct config_setting_t* retVal___, struct config_setting_t *parent, const char *name, int type); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_get_elem) (const struct config_setting_t **setting, unsigned int *idx); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_get_elem) (struct config_setting_t * retVal___, const struct config_setting_t *setting, unsigned int idx); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_get_member) (const struct config_setting_t **setting, const char **name); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_get_member) (struct config_setting_t * retVal___, const struct config_setting_t *setting, const char *name); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_setting_add) (struct config_setting_t **parent, const char **name, int *type); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_setting_add) (struct config_setting_t * retVal___, struct config_setting_t *parent, const char *name, int type); typedef int (*HPMHOOK_pre_libconfig_setting_remove) (struct config_setting_t **parent, const char **name); typedef int (*HPMHOOK_post_libconfig_setting_remove) (int retVal___, struct config_setting_t *parent, const char *name); typedef int (*HPMHOOK_pre_libconfig_setting_remove_elem) (struct config_setting_t **parent, unsigned int *idx); typedef int (*HPMHOOK_post_libconfig_setting_remove_elem) (int retVal___, struct config_setting_t *parent, unsigned int idx); typedef void (*HPMHOOK_pre_libconfig_setting_set_hook) (struct config_setting_t **setting, void **hook); typedef void (*HPMHOOK_post_libconfig_setting_set_hook) (struct config_setting_t *setting, void *hook); -typedef struct config_setting_t* (*HPMHOOK_pre_libconfig_lookup) (const struct config_t **config, const char **filepath); -typedef struct config_setting_t* (*HPMHOOK_post_libconfig_lookup) (struct config_setting_t* retVal___, const struct config_t *config, const char *filepath); +typedef struct config_setting_t * (*HPMHOOK_pre_libconfig_lookup) (const struct config_t **config, const char **filepath); +typedef struct config_setting_t * (*HPMHOOK_post_libconfig_lookup) (struct config_setting_t * retVal___, const struct config_t *config, const char *filepath); typedef int (*HPMHOOK_pre_libconfig_lookup_int) (const struct config_t **config, const char **filepath, int **value); typedef int (*HPMHOOK_post_libconfig_lookup_int) (int retVal___, const struct config_t *config, const char *filepath, int *value); typedef int (*HPMHOOK_pre_libconfig_lookup_int64) (const struct config_t **config, const char **filepath, int64 **value); @@ -5332,8 +5334,8 @@ typedef int (*HPMHOOK_pre_login_waiting_disconnect_timer) (int *tid, int64 *tick typedef int (*HPMHOOK_post_login_waiting_disconnect_timer) (int retVal___, int tid, int64 tick, int id, intptr_t data); typedef struct DBData (*HPMHOOK_pre_login_create_online_user) (union DBKey *key, va_list args); typedef struct DBData (*HPMHOOK_post_login_create_online_user) (struct DBData retVal___, union DBKey key, va_list args); -typedef struct online_login_data* (*HPMHOOK_pre_login_add_online_user) (int *char_server, int *account_id); -typedef struct online_login_data* (*HPMHOOK_post_login_add_online_user) (struct online_login_data* retVal___, int char_server, int account_id); +typedef struct online_login_data * (*HPMHOOK_pre_login_add_online_user) (int *char_server, int *account_id); +typedef struct online_login_data * (*HPMHOOK_post_login_add_online_user) (struct online_login_data * retVal___, int char_server, int account_id); typedef void (*HPMHOOK_pre_login_remove_online_user) (int *account_id); typedef void (*HPMHOOK_post_login_remove_online_user) (int account_id); typedef int (*HPMHOOK_pre_login_online_db_setoffline) (union DBKey *key, struct DBData **data, va_list ap); @@ -5602,8 +5604,8 @@ typedef int (*HPMHOOK_pre_map_moveblock) (struct block_list **bl, int *x1, int * typedef int (*HPMHOOK_post_map_moveblock) (int retVal___, struct block_list *bl, int x1, int y1, int64 tick); typedef int (*HPMHOOK_pre_map_count_oncell) (int16 *m, int16 *x, int16 *y, int *type, int *flag); typedef int (*HPMHOOK_post_map_count_oncell) (int retVal___, int16 m, int16 x, int16 y, int type, int flag); -typedef struct skill_unit* (*HPMHOOK_pre_map_find_skill_unit_oncell) (struct block_list **target, int16 *x, int16 *y, uint16 *skill_id, struct skill_unit **out_unit, int *flag); -typedef struct skill_unit* (*HPMHOOK_post_map_find_skill_unit_oncell) (struct skill_unit* retVal___, struct block_list *target, int16 x, int16 y, uint16 skill_id, struct skill_unit *out_unit, int flag); +typedef struct skill_unit * (*HPMHOOK_pre_map_find_skill_unit_oncell) (struct block_list **target, int16 *x, int16 *y, uint16 *skill_id, struct skill_unit **out_unit, int *flag); +typedef struct skill_unit * (*HPMHOOK_post_map_find_skill_unit_oncell) (struct skill_unit * retVal___, struct block_list *target, int16 x, int16 y, uint16 skill_id, struct skill_unit *out_unit, int flag); typedef int (*HPMHOOK_pre_map_get_new_object_id) (void); typedef int (*HPMHOOK_post_map_get_new_object_id) (int retVal___); typedef int (*HPMHOOK_pre_map_search_free_cell) (struct block_list **src, int16 *m, int16 **x, int16 **y, int16 *range_x, int16 *range_y, int *flag); @@ -5628,10 +5630,10 @@ typedef void (*HPMHOOK_pre_map_delnickdb) (int *charid, const char **nick); typedef void (*HPMHOOK_post_map_delnickdb) (int charid, const char *nick); typedef void (*HPMHOOK_pre_map_reqnickdb) (struct map_session_data **sd, int *charid); typedef void (*HPMHOOK_post_map_reqnickdb) (struct map_session_data *sd, int charid); -typedef const char* (*HPMHOOK_pre_map_charid2nick) (int *charid); -typedef const char* (*HPMHOOK_post_map_charid2nick) (const char* retVal___, int charid); -typedef struct map_session_data* (*HPMHOOK_pre_map_charid2sd) (int *charid); -typedef struct map_session_data* (*HPMHOOK_post_map_charid2sd) (struct map_session_data* retVal___, int charid); +typedef const char * (*HPMHOOK_pre_map_charid2nick) (int *charid); +typedef const char * (*HPMHOOK_post_map_charid2nick) (const char * retVal___, int charid); +typedef struct map_session_data * (*HPMHOOK_pre_map_charid2sd) (int *charid); +typedef struct map_session_data * (*HPMHOOK_post_map_charid2sd) (struct map_session_data * retVal___, int charid); typedef void (*HPMHOOK_pre_map_vforeachpc) (int ( **func ) (struct map_session_data *sd, va_list args), va_list args); typedef void (*HPMHOOK_post_map_vforeachpc) (int ( *func ) (struct map_session_data *sd, va_list args), va_list args); typedef void (*HPMHOOK_pre_map_vforeachmob) (int ( **func ) (struct mob_data *md, va_list args), va_list args); @@ -5662,28 +5664,28 @@ typedef int (*HPMHOOK_pre_map_vforeachinmap) (int ( **func ) (struct block_list typedef int (*HPMHOOK_post_map_vforeachinmap) (int retVal___, int ( *func ) (struct block_list *, va_list), int16 m, int type, va_list args); typedef int (*HPMHOOK_pre_map_vforeachininstance) (int ( **func ) (struct block_list *, va_list), int16 *instance_id, int *type, va_list ap); typedef int (*HPMHOOK_post_map_vforeachininstance) (int retVal___, int ( *func ) (struct block_list *, va_list), int16 instance_id, int type, va_list ap); -typedef struct map_session_data* (*HPMHOOK_pre_map_id2sd) (int *id); -typedef struct map_session_data* (*HPMHOOK_post_map_id2sd) (struct map_session_data* retVal___, int id); -typedef struct npc_data* (*HPMHOOK_pre_map_id2nd) (int *id); -typedef struct npc_data* (*HPMHOOK_post_map_id2nd) (struct npc_data* retVal___, int id); -typedef struct mob_data* (*HPMHOOK_pre_map_id2md) (int *id); -typedef struct mob_data* (*HPMHOOK_post_map_id2md) (struct mob_data* retVal___, int id); -typedef struct flooritem_data* (*HPMHOOK_pre_map_id2fi) (int *id); -typedef struct flooritem_data* (*HPMHOOK_post_map_id2fi) (struct flooritem_data* retVal___, int id); -typedef struct chat_data* (*HPMHOOK_pre_map_id2cd) (int *id); -typedef struct chat_data* (*HPMHOOK_post_map_id2cd) (struct chat_data* retVal___, int id); -typedef struct skill_unit* (*HPMHOOK_pre_map_id2su) (int *id); -typedef struct skill_unit* (*HPMHOOK_post_map_id2su) (struct skill_unit* retVal___, int id); -typedef struct pet_data* (*HPMHOOK_pre_map_id2pd) (int *id); -typedef struct pet_data* (*HPMHOOK_post_map_id2pd) (struct pet_data* retVal___, int id); -typedef struct homun_data* (*HPMHOOK_pre_map_id2hd) (int *id); -typedef struct homun_data* (*HPMHOOK_post_map_id2hd) (struct homun_data* retVal___, int id); -typedef struct mercenary_data* (*HPMHOOK_pre_map_id2mc) (int *id); -typedef struct mercenary_data* (*HPMHOOK_post_map_id2mc) (struct mercenary_data* retVal___, int id); -typedef struct elemental_data* (*HPMHOOK_pre_map_id2ed) (int *id); -typedef struct elemental_data* (*HPMHOOK_post_map_id2ed) (struct elemental_data* retVal___, int id); -typedef struct block_list* (*HPMHOOK_pre_map_id2bl) (int *id); -typedef struct block_list* (*HPMHOOK_post_map_id2bl) (struct block_list* retVal___, int id); +typedef struct map_session_data * (*HPMHOOK_pre_map_id2sd) (int *id); +typedef struct map_session_data * (*HPMHOOK_post_map_id2sd) (struct map_session_data * retVal___, int id); +typedef struct npc_data * (*HPMHOOK_pre_map_id2nd) (int *id); +typedef struct npc_data * (*HPMHOOK_post_map_id2nd) (struct npc_data * retVal___, int id); +typedef struct mob_data * (*HPMHOOK_pre_map_id2md) (int *id); +typedef struct mob_data * (*HPMHOOK_post_map_id2md) (struct mob_data * retVal___, int id); +typedef struct flooritem_data * (*HPMHOOK_pre_map_id2fi) (int *id); +typedef struct flooritem_data * (*HPMHOOK_post_map_id2fi) (struct flooritem_data * retVal___, int id); +typedef struct chat_data * (*HPMHOOK_pre_map_id2cd) (int *id); +typedef struct chat_data * (*HPMHOOK_post_map_id2cd) (struct chat_data * retVal___, int id); +typedef struct skill_unit * (*HPMHOOK_pre_map_id2su) (int *id); +typedef struct skill_unit * (*HPMHOOK_post_map_id2su) (struct skill_unit * retVal___, int id); +typedef struct pet_data * (*HPMHOOK_pre_map_id2pd) (int *id); +typedef struct pet_data * (*HPMHOOK_post_map_id2pd) (struct pet_data * retVal___, int id); +typedef struct homun_data * (*HPMHOOK_pre_map_id2hd) (int *id); +typedef struct homun_data * (*HPMHOOK_post_map_id2hd) (struct homun_data * retVal___, int id); +typedef struct mercenary_data * (*HPMHOOK_pre_map_id2mc) (int *id); +typedef struct mercenary_data * (*HPMHOOK_post_map_id2mc) (struct mercenary_data * retVal___, int id); +typedef struct elemental_data * (*HPMHOOK_pre_map_id2ed) (int *id); +typedef struct elemental_data * (*HPMHOOK_post_map_id2ed) (struct elemental_data * retVal___, int id); +typedef struct block_list * (*HPMHOOK_pre_map_id2bl) (int *id); +typedef struct block_list * (*HPMHOOK_post_map_id2bl) (struct block_list * retVal___, int id); typedef bool (*HPMHOOK_pre_map_blid_exists) (int *id); typedef bool (*HPMHOOK_post_map_blid_exists) (bool retVal___, int id); typedef int16 (*HPMHOOK_pre_map_mapindex2mapid) (unsigned short *map_index); @@ -5694,12 +5696,12 @@ typedef void (*HPMHOOK_pre_map_addiddb) (struct block_list **bl); typedef void (*HPMHOOK_post_map_addiddb) (struct block_list *bl); typedef void (*HPMHOOK_pre_map_deliddb) (struct block_list **bl); typedef void (*HPMHOOK_post_map_deliddb) (struct block_list *bl); -typedef struct map_session_data* (*HPMHOOK_pre_map_nick2sd) (const char **nick, bool *allow_partial); -typedef struct map_session_data* (*HPMHOOK_post_map_nick2sd) (struct map_session_data* retVal___, const char *nick, bool allow_partial); -typedef struct mob_data* (*HPMHOOK_pre_map_getmob_boss) (int16 *m); -typedef struct mob_data* (*HPMHOOK_post_map_getmob_boss) (struct mob_data* retVal___, int16 m); -typedef struct mob_data* (*HPMHOOK_pre_map_id2boss) (int *id); -typedef struct mob_data* (*HPMHOOK_post_map_id2boss) (struct mob_data* retVal___, int id); +typedef struct map_session_data * (*HPMHOOK_pre_map_nick2sd) (const char **nick, bool *allow_partial); +typedef struct map_session_data * (*HPMHOOK_post_map_nick2sd) (struct map_session_data * retVal___, const char *nick, bool allow_partial); +typedef struct mob_data * (*HPMHOOK_pre_map_getmob_boss) (int16 *m); +typedef struct mob_data * (*HPMHOOK_post_map_getmob_boss) (struct mob_data * retVal___, int16 m); +typedef struct mob_data * (*HPMHOOK_pre_map_id2boss) (int *id); +typedef struct mob_data * (*HPMHOOK_post_map_id2boss) (struct mob_data * retVal___, int id); typedef uint32 (*HPMHOOK_pre_map_race_id2mask) (int *race); typedef uint32 (*HPMHOOK_post_map_race_id2mask) (uint32 retVal___, int race); typedef void (*HPMHOOK_pre_map_reloadnpc) (bool *clear); @@ -5834,8 +5836,8 @@ typedef bool (*HPMHOOK_pre_map_add_questinfo) (int *m, struct npc_data **nd); typedef bool (*HPMHOOK_post_map_add_questinfo) (bool retVal___, int m, struct npc_data *nd); typedef bool (*HPMHOOK_pre_map_remove_questinfo) (int *m, struct npc_data **nd); typedef bool (*HPMHOOK_post_map_remove_questinfo) (bool retVal___, int m, struct npc_data *nd); -typedef struct map_zone_data* (*HPMHOOK_pre_map_merge_zone) (struct map_zone_data **main, struct map_zone_data **other); -typedef struct map_zone_data* (*HPMHOOK_post_map_merge_zone) (struct map_zone_data* retVal___, struct map_zone_data *main, struct map_zone_data *other); +typedef struct map_zone_data * (*HPMHOOK_pre_map_merge_zone) (struct map_zone_data **main, struct map_zone_data **other); +typedef struct map_zone_data * (*HPMHOOK_post_map_merge_zone) (struct map_zone_data * retVal___, struct map_zone_data *main, struct map_zone_data *other); typedef void (*HPMHOOK_pre_map_zone_clear_single) (struct map_zone_data **zone); typedef void (*HPMHOOK_post_map_zone_clear_single) (struct map_zone_data *zone); typedef void (*HPMHOOK_pre_map_lock_check) (const char **file, const char **func, int *line, int *lock_count); @@ -6182,38 +6184,38 @@ typedef int (*HPMHOOK_pre_mapindex_addmap) (int *index, const char **name); typedef int (*HPMHOOK_post_mapindex_addmap) (int retVal___, int index, const char *name); typedef void (*HPMHOOK_pre_mapindex_removemap) (int *index); typedef void (*HPMHOOK_post_mapindex_removemap) (int index); -typedef const char* (*HPMHOOK_pre_mapindex_getmapname) (const char **string, char **output); -typedef const char* (*HPMHOOK_post_mapindex_getmapname) (const char* retVal___, const char *string, char *output); -typedef const char* (*HPMHOOK_pre_mapindex_getmapname_ext) (const char **string, char **output); -typedef const char* (*HPMHOOK_post_mapindex_getmapname_ext) (const char* retVal___, const char *string, char *output); +typedef const char * (*HPMHOOK_pre_mapindex_getmapname) (const char **string, char **output); +typedef const char * (*HPMHOOK_post_mapindex_getmapname) (const char * retVal___, const char *string, char *output); +typedef const char * (*HPMHOOK_pre_mapindex_getmapname_ext) (const char **string, char **output); +typedef const char * (*HPMHOOK_post_mapindex_getmapname_ext) (const char * retVal___, const char *string, char *output); typedef unsigned short (*HPMHOOK_pre_mapindex_name2id) (const char **p1); typedef unsigned short (*HPMHOOK_post_mapindex_name2id) (unsigned short retVal___, const char *p1); -typedef const char* (*HPMHOOK_pre_mapindex_id2name) (uint16 *id, const char **file, int *line, const char **func); -typedef const char* (*HPMHOOK_post_mapindex_id2name) (const char* retVal___, uint16 id, const char *file, int line, const char *func); +typedef const char * (*HPMHOOK_pre_mapindex_id2name) (uint16 *id, const char **file, int *line, const char **func); +typedef const char * (*HPMHOOK_post_mapindex_id2name) (const char * retVal___, uint16 id, const char *file, int line, const char *func); typedef bool (*HPMHOOK_pre_mapindex_check_default) (void); typedef bool (*HPMHOOK_post_mapindex_check_default) (bool retVal___); #endif // COMMON_MAPINDEX_H #ifdef MAP_MAP_H /* mapit */ -typedef struct s_mapiterator* (*HPMHOOK_pre_mapit_alloc) (enum e_mapitflags *flags, enum bl_type *types); -typedef struct s_mapiterator* (*HPMHOOK_post_mapit_alloc) (struct s_mapiterator* retVal___, enum e_mapitflags flags, enum bl_type types); +typedef struct s_mapiterator * (*HPMHOOK_pre_mapit_alloc) (enum e_mapitflags *flags, enum bl_type *types); +typedef struct s_mapiterator * (*HPMHOOK_post_mapit_alloc) (struct s_mapiterator * retVal___, enum e_mapitflags flags, enum bl_type types); typedef void (*HPMHOOK_pre_mapit_free) (struct s_mapiterator **iter); typedef void (*HPMHOOK_post_mapit_free) (struct s_mapiterator *iter); -typedef struct block_list* (*HPMHOOK_pre_mapit_first) (struct s_mapiterator **iter); -typedef struct block_list* (*HPMHOOK_post_mapit_first) (struct block_list* retVal___, struct s_mapiterator *iter); -typedef struct block_list* (*HPMHOOK_pre_mapit_last) (struct s_mapiterator **iter); -typedef struct block_list* (*HPMHOOK_post_mapit_last) (struct block_list* retVal___, struct s_mapiterator *iter); -typedef struct block_list* (*HPMHOOK_pre_mapit_next) (struct s_mapiterator **iter); -typedef struct block_list* (*HPMHOOK_post_mapit_next) (struct block_list* retVal___, struct s_mapiterator *iter); -typedef struct block_list* (*HPMHOOK_pre_mapit_prev) (struct s_mapiterator **iter); -typedef struct block_list* (*HPMHOOK_post_mapit_prev) (struct block_list* retVal___, struct s_mapiterator *iter); +typedef struct block_list * (*HPMHOOK_pre_mapit_first) (struct s_mapiterator **iter); +typedef struct block_list * (*HPMHOOK_post_mapit_first) (struct block_list * retVal___, struct s_mapiterator *iter); +typedef struct block_list * (*HPMHOOK_pre_mapit_last) (struct s_mapiterator **iter); +typedef struct block_list * (*HPMHOOK_post_mapit_last) (struct block_list * retVal___, struct s_mapiterator *iter); +typedef struct block_list * (*HPMHOOK_pre_mapit_next) (struct s_mapiterator **iter); +typedef struct block_list * (*HPMHOOK_post_mapit_next) (struct block_list * retVal___, struct s_mapiterator *iter); +typedef struct block_list * (*HPMHOOK_pre_mapit_prev) (struct s_mapiterator **iter); +typedef struct block_list * (*HPMHOOK_post_mapit_prev) (struct block_list * retVal___, struct s_mapiterator *iter); typedef bool (*HPMHOOK_pre_mapit_exists) (struct s_mapiterator **iter); typedef bool (*HPMHOOK_post_mapit_exists) (bool retVal___, struct s_mapiterator *iter); #endif // MAP_MAP_H #ifdef MAP_MAPREG_H /* mapreg */ typedef int (*HPMHOOK_pre_mapreg_readreg) (int64 *uid); typedef int (*HPMHOOK_post_mapreg_readreg) (int retVal___, int64 uid); -typedef char* (*HPMHOOK_pre_mapreg_readregstr) (int64 *uid); -typedef char* (*HPMHOOK_post_mapreg_readregstr) (char* retVal___, int64 uid); +typedef char * (*HPMHOOK_pre_mapreg_readregstr) (int64 *uid); +typedef char * (*HPMHOOK_post_mapreg_readregstr) (char * retVal___, int64 uid); typedef bool (*HPMHOOK_pre_mapreg_set_num_db) (int64 *uid, const char **name, unsigned int *index, int *value); typedef bool (*HPMHOOK_post_mapreg_set_num_db) (bool retVal___, int64 uid, const char *name, unsigned int index, int value); typedef bool (*HPMHOOK_pre_mapreg_delete_num_db) (int64 *uid, const char **name, unsigned int *index); @@ -6264,8 +6266,8 @@ typedef void (*HPMHOOK_pre_mercenary_init) (bool *minimal); typedef void (*HPMHOOK_post_mercenary_init) (bool minimal); typedef bool (*HPMHOOK_pre_mercenary_class) (int *class_); typedef bool (*HPMHOOK_post_mercenary_class) (bool retVal___, int class_); -typedef struct view_data* (*HPMHOOK_pre_mercenary_get_viewdata) (int *class_); -typedef struct view_data* (*HPMHOOK_post_mercenary_get_viewdata) (struct view_data* retVal___, int class_); +typedef struct view_data * (*HPMHOOK_pre_mercenary_get_viewdata) (int *class_); +typedef struct view_data * (*HPMHOOK_post_mercenary_get_viewdata) (struct view_data * retVal___, int class_); typedef int (*HPMHOOK_pre_mercenary_create) (struct map_session_data **sd, int *class_, unsigned int *lifetime); typedef int (*HPMHOOK_post_mercenary_create) (int retVal___, struct map_session_data *sd, int class_, unsigned int lifetime); typedef int (*HPMHOOK_pre_mercenary_data_received) (const struct s_mercenary **merc, bool *flag); @@ -6320,10 +6322,10 @@ typedef void (*HPMHOOK_pre_mob_reload) (void); typedef void (*HPMHOOK_post_mob_reload) (void); typedef int (*HPMHOOK_pre_mob_reload_sub_mob) (struct mob_data **md, va_list args); typedef int (*HPMHOOK_post_mob_reload_sub_mob) (int retVal___, struct mob_data *md, va_list args); -typedef struct mob_db* (*HPMHOOK_pre_mob_db) (int *index); -typedef struct mob_db* (*HPMHOOK_post_mob_db) (struct mob_db* retVal___, int index); -typedef struct mob_chat* (*HPMHOOK_pre_mob_chat) (short *id); -typedef struct mob_chat* (*HPMHOOK_post_mob_chat) (struct mob_chat* retVal___, short id); +typedef struct mob_db * (*HPMHOOK_pre_mob_db) (int *index); +typedef struct mob_db * (*HPMHOOK_post_mob_db) (struct mob_db * retVal___, int index); +typedef struct mob_chat * (*HPMHOOK_pre_mob_chat) (short *id); +typedef struct mob_chat * (*HPMHOOK_post_mob_chat) (struct mob_chat * retVal___, short id); typedef int (*HPMHOOK_pre_mob_makedummymobdb) (int *p1); typedef int (*HPMHOOK_post_mob_makedummymobdb) (int retVal___, int p1); typedef int (*HPMHOOK_pre_mob_spawn_guardian_sub) (int *tid, int64 *tick, int *id, intptr_t *data); @@ -6346,22 +6348,22 @@ typedef int (*HPMHOOK_pre_mob_db_searchname_array) (struct mob_db ***data, int * typedef int (*HPMHOOK_post_mob_db_searchname_array) (int retVal___, struct mob_db **data, int size, const char *str, int flag); typedef int (*HPMHOOK_pre_mob_db_checkid) (const int *id); typedef int (*HPMHOOK_post_mob_db_checkid) (int retVal___, const int id); -typedef struct view_data* (*HPMHOOK_pre_mob_get_viewdata) (int *class_); -typedef struct view_data* (*HPMHOOK_post_mob_get_viewdata) (struct view_data* retVal___, int class_); +typedef struct view_data * (*HPMHOOK_pre_mob_get_viewdata) (int *class_); +typedef struct view_data * (*HPMHOOK_post_mob_get_viewdata) (struct view_data * retVal___, int class_); typedef void (*HPMHOOK_pre_mob_set_dynamic_viewdata) (struct mob_data **md); typedef void (*HPMHOOK_post_mob_set_dynamic_viewdata) (struct mob_data *md); typedef void (*HPMHOOK_pre_mob_free_dynamic_viewdata) (struct mob_data **md); typedef void (*HPMHOOK_post_mob_free_dynamic_viewdata) (struct mob_data *md); typedef int (*HPMHOOK_pre_mob_parse_dataset) (struct spawn_data **data); typedef int (*HPMHOOK_post_mob_parse_dataset) (int retVal___, struct spawn_data *data); -typedef struct mob_data* (*HPMHOOK_pre_mob_spawn_dataset) (struct spawn_data **data, int *npc_id); -typedef struct mob_data* (*HPMHOOK_post_mob_spawn_dataset) (struct mob_data* retVal___, struct spawn_data *data, int npc_id); +typedef struct mob_data * (*HPMHOOK_pre_mob_spawn_dataset) (struct spawn_data **data, int *npc_id); +typedef struct mob_data * (*HPMHOOK_post_mob_spawn_dataset) (struct mob_data * retVal___, struct spawn_data *data, int npc_id); typedef int (*HPMHOOK_pre_mob_get_random_id) (enum mob_groups *type, int *flag, int *lv); typedef int (*HPMHOOK_post_mob_get_random_id) (int retVal___, enum mob_groups type, int flag, int lv); typedef bool (*HPMHOOK_pre_mob_ksprotected) (struct block_list **src, struct block_list **target); typedef bool (*HPMHOOK_post_mob_ksprotected) (bool retVal___, struct block_list *src, struct block_list *target); -typedef struct mob_data* (*HPMHOOK_pre_mob_once_spawn_sub) (struct block_list **bl, int16 *m, int16 *x, int16 *y, const char **mobname, int *class_, const char **event, unsigned int *size, unsigned int *ai, int *npc_id); -typedef struct mob_data* (*HPMHOOK_post_mob_once_spawn_sub) (struct mob_data* retVal___, struct block_list *bl, int16 m, int16 x, int16 y, const char *mobname, int class_, const char *event, unsigned int size, unsigned int ai, int npc_id); +typedef struct mob_data * (*HPMHOOK_pre_mob_once_spawn_sub) (struct block_list **bl, int16 *m, int16 *x, int16 *y, const char **mobname, int *class_, const char **event, unsigned int *size, unsigned int *ai, int *npc_id); +typedef struct mob_data * (*HPMHOOK_post_mob_once_spawn_sub) (struct mob_data * retVal___, struct block_list *bl, int16 m, int16 x, int16 y, const char *mobname, int class_, const char *event, unsigned int size, unsigned int ai, int npc_id); typedef int (*HPMHOOK_pre_mob_once_spawn) (struct map_session_data **sd, int16 *m, int16 *x, int16 *y, const char **mobname, int *class_, int *amount, const char **event, unsigned int *size, unsigned int *ai); typedef int (*HPMHOOK_post_mob_once_spawn) (int retVal___, struct map_session_data *sd, int16 m, int16 x, int16 y, const char *mobname, int class_, int amount, const char *event, unsigned int size, unsigned int ai); typedef int (*HPMHOOK_pre_mob_once_spawn_area) (struct map_session_data **sd, int16 *m, int16 *x0, int16 *y0, int16 *x1, int16 *y1, const char **mobname, int *class_, int *amount, const char **event, unsigned int *size, unsigned int *ai); @@ -6420,10 +6422,10 @@ typedef int (*HPMHOOK_pre_mob_ai_hard) (int *tid, int64 *tick, int *id, intptr_t typedef int (*HPMHOOK_post_mob_ai_hard) (int retVal___, int tid, int64 tick, int id, intptr_t data); typedef void (*HPMHOOK_pre_mob_setdropitem_options) (struct item **item, struct optdrop_group **options); typedef void (*HPMHOOK_post_mob_setdropitem_options) (struct item *item, struct optdrop_group *options); -typedef struct item_drop* (*HPMHOOK_pre_mob_setdropitem) (int *nameid, struct optdrop_group **options, int *qty, struct item_data **data); -typedef struct item_drop* (*HPMHOOK_post_mob_setdropitem) (struct item_drop* retVal___, int nameid, struct optdrop_group *options, int qty, struct item_data *data); -typedef struct item_drop* (*HPMHOOK_pre_mob_setlootitem) (struct item **item); -typedef struct item_drop* (*HPMHOOK_post_mob_setlootitem) (struct item_drop* retVal___, struct item *item); +typedef struct item_drop * (*HPMHOOK_pre_mob_setdropitem) (int *nameid, struct optdrop_group **options, int *qty, struct item_data **data); +typedef struct item_drop * (*HPMHOOK_post_mob_setdropitem) (struct item_drop * retVal___, int nameid, struct optdrop_group *options, int qty, struct item_data *data); +typedef struct item_drop * (*HPMHOOK_pre_mob_setlootitem) (struct item **item); +typedef struct item_drop * (*HPMHOOK_post_mob_setlootitem) (struct item_drop * retVal___, struct item *item); typedef int (*HPMHOOK_pre_mob_delay_item_drop) (int *tid, int64 *tick, int *id, intptr_t *data); typedef int (*HPMHOOK_post_mob_delay_item_drop) (int retVal___, int tid, int64 tick, int id, intptr_t data); typedef void (*HPMHOOK_pre_mob_item_drop) (struct mob_data **md, struct item_drop_list **dlist, struct item_drop **ditem, int *loot, int *drop_rate, unsigned short *flag); @@ -6464,14 +6466,14 @@ typedef int (*HPMHOOK_pre_mob_summonslave) (struct mob_data **md2, int **value, typedef int (*HPMHOOK_post_mob_summonslave) (int retVal___, struct mob_data *md2, int *value, int amount, uint16 skill_id); typedef int (*HPMHOOK_pre_mob_getfriendhprate_sub) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_mob_getfriendhprate_sub) (int retVal___, struct block_list *bl, va_list ap); -typedef struct block_list* (*HPMHOOK_pre_mob_getfriendhprate) (struct mob_data **md, int *min_rate, int *max_rate); -typedef struct block_list* (*HPMHOOK_post_mob_getfriendhprate) (struct block_list* retVal___, struct mob_data *md, int min_rate, int max_rate); -typedef struct block_list* (*HPMHOOK_pre_mob_getmasterhpltmaxrate) (struct mob_data **md, int *rate); -typedef struct block_list* (*HPMHOOK_post_mob_getmasterhpltmaxrate) (struct block_list* retVal___, struct mob_data *md, int rate); +typedef struct block_list * (*HPMHOOK_pre_mob_getfriendhprate) (struct mob_data **md, int *min_rate, int *max_rate); +typedef struct block_list * (*HPMHOOK_post_mob_getfriendhprate) (struct block_list * retVal___, struct mob_data *md, int min_rate, int max_rate); +typedef struct block_list * (*HPMHOOK_pre_mob_getmasterhpltmaxrate) (struct mob_data **md, int *rate); +typedef struct block_list * (*HPMHOOK_post_mob_getmasterhpltmaxrate) (struct block_list * retVal___, struct mob_data *md, int rate); typedef int (*HPMHOOK_pre_mob_getfriendstatus_sub) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_mob_getfriendstatus_sub) (int retVal___, struct block_list *bl, va_list ap); -typedef struct block_list* (*HPMHOOK_pre_mob_getfriendstatus) (struct mob_data **md, int *cond1, int *cond2); -typedef struct block_list* (*HPMHOOK_post_mob_getfriendstatus) (struct block_list* retVal___, struct mob_data *md, int cond1, int cond2); +typedef struct block_list * (*HPMHOOK_pre_mob_getfriendstatus) (struct mob_data **md, int *cond1, int *cond2); +typedef struct block_list * (*HPMHOOK_post_mob_getfriendstatus) (struct block_list * retVal___, struct mob_data *md, int cond1, int cond2); typedef int (*HPMHOOK_pre_mob_use_skill) (struct mob_data **md, int64 *tick, int *event); typedef int (*HPMHOOK_post_mob_use_skill) (int retVal___, struct mob_data *md, int64 tick, int event); typedef int (*HPMHOOK_pre_mob_use_skill_event) (struct mob_data **md, struct block_list **src, int64 *tick, int *flag); @@ -6512,8 +6514,8 @@ typedef void (*HPMHOOK_pre_mob_read_db_mvpdrops_sub) (struct mob_db **entry, str typedef void (*HPMHOOK_post_mob_read_db_mvpdrops_sub) (struct mob_db *entry, struct config_setting_t *t); typedef uint32 (*HPMHOOK_pre_mob_read_db_mode_sub) (struct mob_db **entry, struct config_setting_t **t); typedef uint32 (*HPMHOOK_post_mob_read_db_mode_sub) (uint32 retVal___, struct mob_db *entry, struct config_setting_t *t); -typedef struct optdrop_group* (*HPMHOOK_pre_mob_read_db_drops_option) (struct mob_db **entry, const char **item_name, struct config_setting_t **drop, int **drop_rate); -typedef struct optdrop_group* (*HPMHOOK_post_mob_read_db_drops_option) (struct optdrop_group* retVal___, struct mob_db *entry, const char *item_name, struct config_setting_t *drop, int *drop_rate); +typedef struct optdrop_group * (*HPMHOOK_pre_mob_read_db_drops_option) (struct mob_db **entry, const char **item_name, struct config_setting_t **drop, int **drop_rate); +typedef struct optdrop_group * (*HPMHOOK_post_mob_read_db_drops_option) (struct optdrop_group * retVal___, struct mob_db *entry, const char *item_name, struct config_setting_t *drop, int *drop_rate); typedef void (*HPMHOOK_pre_mob_read_db_stats_sub) (struct mob_db **entry, struct config_setting_t **t); typedef void (*HPMHOOK_post_mob_read_db_stats_sub) (struct mob_db *entry, struct config_setting_t *t); typedef void (*HPMHOOK_pre_mob_read_db_viewdata_sub) (struct mob_db **entry, struct config_setting_t **t); @@ -6536,8 +6538,8 @@ typedef void (*HPMHOOK_pre_mob_load) (bool *minimal); typedef void (*HPMHOOK_post_mob_load) (bool minimal); typedef void (*HPMHOOK_pre_mob_clear_spawninfo) (void); typedef void (*HPMHOOK_post_mob_clear_spawninfo) (void); -typedef struct item_drop_ratio* (*HPMHOOK_pre_mob_get_item_drop_ratio) (int *nameid); -typedef struct item_drop_ratio* (*HPMHOOK_post_mob_get_item_drop_ratio) (struct item_drop_ratio* retVal___, int nameid); +typedef struct item_drop_ratio * (*HPMHOOK_pre_mob_get_item_drop_ratio) (int *nameid); +typedef struct item_drop_ratio * (*HPMHOOK_post_mob_get_item_drop_ratio) (struct item_drop_ratio * retVal___, int nameid); typedef void (*HPMHOOK_pre_mob_set_item_drop_ratio) (int *nameid, struct item_drop_ratio **ratio); typedef void (*HPMHOOK_post_mob_set_item_drop_ratio) (int nameid, struct item_drop_ratio *ratio); typedef int (*HPMHOOK_pre_mob_final_ratio_sub) (union DBKey *key, struct DBData **data, va_list ap); @@ -6562,8 +6564,8 @@ typedef bool (*HPMHOOK_pre_mob_read_group_db_libconfig_sub_group) (struct config typedef bool (*HPMHOOK_post_mob_read_group_db_libconfig_sub_group) (bool retVal___, struct config_setting_t *it, enum mob_groups group_id, const char *source); #endif // MAP_MOB_H #ifdef COMMON_MUTEX_H /* mutex */ -typedef struct mutex_data* (*HPMHOOK_pre_mutex_create) (void); -typedef struct mutex_data* (*HPMHOOK_post_mutex_create) (struct mutex_data* retVal___); +typedef struct mutex_data * (*HPMHOOK_pre_mutex_create) (void); +typedef struct mutex_data * (*HPMHOOK_post_mutex_create) (struct mutex_data * retVal___); typedef void (*HPMHOOK_pre_mutex_destroy) (struct mutex_data **m); typedef void (*HPMHOOK_post_mutex_destroy) (struct mutex_data *m); typedef void (*HPMHOOK_pre_mutex_lock) (struct mutex_data **m); @@ -6572,8 +6574,8 @@ typedef bool (*HPMHOOK_pre_mutex_trylock) (struct mutex_data **m); typedef bool (*HPMHOOK_post_mutex_trylock) (bool retVal___, struct mutex_data *m); typedef void (*HPMHOOK_pre_mutex_unlock) (struct mutex_data **m); typedef void (*HPMHOOK_post_mutex_unlock) (struct mutex_data *m); -typedef struct cond_data* (*HPMHOOK_pre_mutex_cond_create) (void); -typedef struct cond_data* (*HPMHOOK_post_mutex_cond_create) (struct cond_data* retVal___); +typedef struct cond_data * (*HPMHOOK_pre_mutex_cond_create) (void); +typedef struct cond_data * (*HPMHOOK_post_mutex_cond_create) (struct cond_data * retVal___); typedef void (*HPMHOOK_pre_mutex_cond_destroy) (struct cond_data **c); typedef void (*HPMHOOK_post_mutex_cond_destroy) (struct cond_data *c); typedef void (*HPMHOOK_pre_mutex_cond_wait) (struct cond_data **c, struct mutex_data **m, sysint *timeout_ticks); @@ -6590,16 +6592,16 @@ typedef void (*HPMHOOK_pre_npc_chat_finalize) (struct npc_data **nd); typedef void (*HPMHOOK_post_npc_chat_finalize) (struct npc_data *nd); typedef void (*HPMHOOK_pre_npc_chat_def_pattern) (struct npc_data **nd, int *setid, const char **pattern, const char **label); typedef void (*HPMHOOK_post_npc_chat_def_pattern) (struct npc_data *nd, int setid, const char *pattern, const char *label); -typedef struct pcrematch_entry* (*HPMHOOK_pre_npc_chat_create_pcrematch_entry) (struct pcrematch_set **set); -typedef struct pcrematch_entry* (*HPMHOOK_post_npc_chat_create_pcrematch_entry) (struct pcrematch_entry* retVal___, struct pcrematch_set *set); +typedef struct pcrematch_entry * (*HPMHOOK_pre_npc_chat_create_pcrematch_entry) (struct pcrematch_set **set); +typedef struct pcrematch_entry * (*HPMHOOK_post_npc_chat_create_pcrematch_entry) (struct pcrematch_entry * retVal___, struct pcrematch_set *set); typedef void (*HPMHOOK_pre_npc_chat_delete_pcreset) (struct npc_data **nd, int *setid); typedef void (*HPMHOOK_post_npc_chat_delete_pcreset) (struct npc_data *nd, int setid); typedef void (*HPMHOOK_pre_npc_chat_deactivate_pcreset) (struct npc_data **nd, int *setid); typedef void (*HPMHOOK_post_npc_chat_deactivate_pcreset) (struct npc_data *nd, int setid); typedef void (*HPMHOOK_pre_npc_chat_activate_pcreset) (struct npc_data **nd, int *setid); typedef void (*HPMHOOK_post_npc_chat_activate_pcreset) (struct npc_data *nd, int setid); -typedef struct pcrematch_set* (*HPMHOOK_pre_npc_chat_lookup_pcreset) (struct npc_data **nd, int *setid); -typedef struct pcrematch_set* (*HPMHOOK_post_npc_chat_lookup_pcreset) (struct pcrematch_set* retVal___, struct npc_data *nd, int setid); +typedef struct pcrematch_set * (*HPMHOOK_pre_npc_chat_lookup_pcreset) (struct npc_data **nd, int *setid); +typedef struct pcrematch_set * (*HPMHOOK_post_npc_chat_lookup_pcreset) (struct pcrematch_set * retVal___, struct npc_data *nd, int setid); typedef void (*HPMHOOK_pre_npc_chat_finalize_pcrematch_entry) (struct pcrematch_entry **e); typedef void (*HPMHOOK_post_npc_chat_finalize_pcrematch_entry) (struct pcrematch_entry *e); #endif // MAP_NPC_H @@ -6610,8 +6612,8 @@ typedef int (*HPMHOOK_pre_npc_final) (void); typedef int (*HPMHOOK_post_npc_final) (int retVal___); typedef int (*HPMHOOK_pre_npc_get_new_npc_id) (void); typedef int (*HPMHOOK_post_npc_get_new_npc_id) (int retVal___); -typedef struct view_data* (*HPMHOOK_pre_npc_get_viewdata) (int *class_); -typedef struct view_data* (*HPMHOOK_post_npc_get_viewdata) (struct view_data* retVal___, int class_); +typedef struct view_data * (*HPMHOOK_pre_npc_get_viewdata) (int *class_); +typedef struct view_data * (*HPMHOOK_post_npc_get_viewdata) (struct view_data * retVal___, int class_); typedef int (*HPMHOOK_pre_npc_isnear_sub) (struct block_list **bl, va_list args); typedef int (*HPMHOOK_post_npc_isnear_sub) (int retVal___, struct block_list *bl, va_list args); typedef bool (*HPMHOOK_pre_npc_isnear) (struct block_list **bl); @@ -6626,8 +6628,8 @@ typedef int (*HPMHOOK_pre_npc_enable_sub) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_npc_enable_sub) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_npc_enable) (const char **name, int *flag); typedef int (*HPMHOOK_post_npc_enable) (int retVal___, const char *name, int flag); -typedef struct npc_data* (*HPMHOOK_pre_npc_name2id) (const char **name); -typedef struct npc_data* (*HPMHOOK_post_npc_name2id) (struct npc_data* retVal___, const char *name); +typedef struct npc_data * (*HPMHOOK_pre_npc_name2id) (const char **name); +typedef struct npc_data * (*HPMHOOK_post_npc_name2id) (struct npc_data * retVal___, const char *name); typedef int (*HPMHOOK_pre_npc_event_dequeue) (struct map_session_data **sd); typedef int (*HPMHOOK_post_npc_event_dequeue) (int retVal___, struct map_session_data *sd); typedef struct DBData (*HPMHOOK_pre_npc_event_export_create) (union DBKey *key, va_list args); @@ -6678,8 +6680,8 @@ typedef int (*HPMHOOK_pre_npc_touch_areanpc2) (struct mob_data **md); typedef int (*HPMHOOK_post_npc_touch_areanpc2) (int retVal___, struct mob_data *md); typedef int (*HPMHOOK_pre_npc_check_areanpc) (int *flag, int16 *m, int16 *x, int16 *y, int16 *range); typedef int (*HPMHOOK_post_npc_check_areanpc) (int retVal___, int flag, int16 m, int16 x, int16 y, int16 range); -typedef struct npc_data* (*HPMHOOK_pre_npc_checknear) (struct map_session_data **sd, struct block_list **bl); -typedef struct npc_data* (*HPMHOOK_post_npc_checknear) (struct npc_data* retVal___, struct map_session_data *sd, struct block_list *bl); +typedef struct npc_data * (*HPMHOOK_pre_npc_checknear) (struct map_session_data **sd, struct block_list **bl); +typedef struct npc_data * (*HPMHOOK_post_npc_checknear) (struct npc_data * retVal___, struct map_session_data *sd, struct block_list *bl); typedef int (*HPMHOOK_pre_npc_globalmessage) (const char **name, const char **mes); typedef int (*HPMHOOK_post_npc_globalmessage) (int retVal___, const char *name, const char *mes); typedef void (*HPMHOOK_pre_npc_run_tomb) (struct map_session_data **sd, struct npc_data **nd); @@ -6722,8 +6724,8 @@ typedef void (*HPMHOOK_pre_npc_addsrcfile) (const char **name); typedef void (*HPMHOOK_post_npc_addsrcfile) (const char *name); typedef void (*HPMHOOK_pre_npc_delsrcfile) (const char **name); typedef void (*HPMHOOK_post_npc_delsrcfile) (const char *name); -typedef const char* (*HPMHOOK_pre_npc_retainpathreference) (const char **filepath); -typedef const char* (*HPMHOOK_post_npc_retainpathreference) (const char* retVal___, const char *filepath); +typedef const char * (*HPMHOOK_pre_npc_retainpathreference) (const char **filepath); +typedef const char * (*HPMHOOK_post_npc_retainpathreference) (const char * retVal___, const char *filepath); typedef void (*HPMHOOK_pre_npc_releasepathreference) (const char **filepath); typedef void (*HPMHOOK_post_npc_releasepathreference) (const char *filepath); typedef void (*HPMHOOK_pre_npc_parsename) (struct npc_data **nd, const char **name, const char **start, const char **buffer, const char **filepath); @@ -6732,22 +6734,22 @@ typedef int (*HPMHOOK_pre_npc_parseview) (const char **w4, const char **start, c typedef int (*HPMHOOK_post_npc_parseview) (int retVal___, const char *w4, const char *start, const char *buffer, const char *filepath); typedef bool (*HPMHOOK_pre_npc_viewisid) (const char **viewid); typedef bool (*HPMHOOK_post_npc_viewisid) (bool retVal___, const char *viewid); -typedef struct npc_data* (*HPMHOOK_pre_npc_create_npc) (enum npc_subtype *subtype, int *m, int *x, int *y, enum unit_dir *dir, int *class_); -typedef struct npc_data* (*HPMHOOK_post_npc_create_npc) (struct npc_data* retVal___, enum npc_subtype subtype, int m, int x, int y, enum unit_dir dir, int class_); -typedef struct npc_data* (*HPMHOOK_pre_npc_add_warp) (char **name, short *from_mapid, short *from_x, short *from_y, short *xs, short *ys, unsigned short *to_mapindex, short *to_x, short *to_y); -typedef struct npc_data* (*HPMHOOK_post_npc_add_warp) (struct npc_data* retVal___, char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y); -typedef const char* (*HPMHOOK_pre_npc_parse_warp) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_warp) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); -typedef const char* (*HPMHOOK_pre_npc_parse_shop) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_shop) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); -typedef const char* (*HPMHOOK_pre_npc_parse_unknown_object) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_unknown_object) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); +typedef struct npc_data * (*HPMHOOK_pre_npc_create_npc) (enum npc_subtype *subtype, int *m, int *x, int *y, enum unit_dir *dir, int *class_); +typedef struct npc_data * (*HPMHOOK_post_npc_create_npc) (struct npc_data * retVal___, enum npc_subtype subtype, int m, int x, int y, enum unit_dir dir, int class_); +typedef struct npc_data * (*HPMHOOK_pre_npc_add_warp) (char **name, short *from_mapid, short *from_x, short *from_y, short *xs, short *ys, unsigned short *to_mapindex, short *to_x, short *to_y); +typedef struct npc_data * (*HPMHOOK_post_npc_add_warp) (struct npc_data * retVal___, char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y); +typedef const char * (*HPMHOOK_pre_npc_parse_warp) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_warp) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_shop) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_shop) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_unknown_object) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_unknown_object) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); typedef void (*HPMHOOK_pre_npc_convertlabel_db) (struct npc_label_list **label_list, const char **filepath); typedef void (*HPMHOOK_post_npc_convertlabel_db) (struct npc_label_list *label_list, const char *filepath); -typedef const char* (*HPMHOOK_pre_npc_skip_script) (const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_skip_script) (const char* retVal___, const char *start, const char *buffer, const char *filepath, int *retval); -typedef const char* (*HPMHOOK_pre_npc_parse_script) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_script) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); +typedef const char * (*HPMHOOK_pre_npc_skip_script) (const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_skip_script) (const char * retVal___, const char *start, const char *buffer, const char *filepath, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_script) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_script) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); typedef void (*HPMHOOK_pre_npc_add_to_location) (struct npc_data **nd); typedef void (*HPMHOOK_post_npc_add_to_location) (struct npc_data *nd); typedef bool (*HPMHOOK_pre_npc_duplicate_script_sub) (struct npc_data **nd, const struct npc_data **snd, int *xs, int *ys, int *options); @@ -6758,8 +6760,8 @@ typedef bool (*HPMHOOK_pre_npc_duplicate_warp_sub) (struct npc_data **nd, const typedef bool (*HPMHOOK_post_npc_duplicate_warp_sub) (bool retVal___, struct npc_data *nd, const struct npc_data *snd, int xs, int ys, int options); typedef bool (*HPMHOOK_pre_npc_duplicate_sub) (struct npc_data **nd, const struct npc_data **snd, int *xs, int *ys, int *options); typedef bool (*HPMHOOK_post_npc_duplicate_sub) (bool retVal___, struct npc_data *nd, const struct npc_data *snd, int xs, int ys, int options); -typedef const char* (*HPMHOOK_pre_npc_parse_duplicate) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_duplicate) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_duplicate) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_duplicate) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); typedef int (*HPMHOOK_pre_npc_duplicate4instance) (struct npc_data **snd, int16 *m); typedef int (*HPMHOOK_post_npc_duplicate4instance) (int retVal___, struct npc_data *snd, int16 m); typedef void (*HPMHOOK_pre_npc_setcells) (struct npc_data **nd); @@ -6776,14 +6778,14 @@ typedef void (*HPMHOOK_pre_npc_setclass) (struct npc_data **nd, int *class_); typedef void (*HPMHOOK_post_npc_setclass) (struct npc_data *nd, int class_); typedef int (*HPMHOOK_pre_npc_do_atcmd_event) (struct map_session_data **sd, const char **command, const char **message, const char **eventname); typedef int (*HPMHOOK_post_npc_do_atcmd_event) (int retVal___, struct map_session_data *sd, const char *command, const char *message, const char *eventname); -typedef const char* (*HPMHOOK_pre_npc_parse_function) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_function) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_function) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_function) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); typedef void (*HPMHOOK_pre_npc_parse_mob2) (struct spawn_data **mobspawn); typedef void (*HPMHOOK_post_npc_parse_mob2) (struct spawn_data *mobspawn); -typedef const char* (*HPMHOOK_pre_npc_parse_mob) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_mob) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); -typedef const char* (*HPMHOOK_pre_npc_parse_mapflag) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); -typedef const char* (*HPMHOOK_post_npc_parse_mapflag) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_mob) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_mob) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); +typedef const char * (*HPMHOOK_pre_npc_parse_mapflag) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); +typedef const char * (*HPMHOOK_post_npc_parse_mapflag) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); typedef void (*HPMHOOK_pre_npc_parse_unknown_mapflag) (const char **name, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); typedef void (*HPMHOOK_post_npc_parse_unknown_mapflag) (const char *name, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); typedef int (*HPMHOOK_pre_npc_parsesrcfile) (const char **filepath, bool *runOnInit); @@ -6888,14 +6890,14 @@ typedef void (*HPMHOOK_pre_party_init) (bool *minimal); typedef void (*HPMHOOK_post_party_init) (bool minimal); typedef void (*HPMHOOK_pre_party_final) (void); typedef void (*HPMHOOK_post_party_final) (void); -typedef struct party_data* (*HPMHOOK_pre_party_search) (int *party_id); -typedef struct party_data* (*HPMHOOK_post_party_search) (struct party_data* retVal___, int party_id); -typedef struct party_data* (*HPMHOOK_pre_party_searchname) (const char **str); -typedef struct party_data* (*HPMHOOK_post_party_searchname) (struct party_data* retVal___, const char *str); +typedef struct party_data * (*HPMHOOK_pre_party_search) (int *party_id); +typedef struct party_data * (*HPMHOOK_post_party_search) (struct party_data * retVal___, int party_id); +typedef struct party_data * (*HPMHOOK_pre_party_searchname) (const char **str); +typedef struct party_data * (*HPMHOOK_post_party_searchname) (struct party_data * retVal___, const char *str); typedef int (*HPMHOOK_pre_party_getmemberid) (struct party_data **p, struct map_session_data **sd); typedef int (*HPMHOOK_post_party_getmemberid) (int retVal___, struct party_data *p, struct map_session_data *sd); -typedef struct map_session_data* (*HPMHOOK_pre_party_getavailablesd) (struct party_data **p); -typedef struct map_session_data* (*HPMHOOK_post_party_getavailablesd) (struct map_session_data* retVal___, struct party_data *p); +typedef struct map_session_data * (*HPMHOOK_pre_party_getavailablesd) (struct party_data **p); +typedef struct map_session_data * (*HPMHOOK_post_party_getavailablesd) (struct map_session_data * retVal___, struct party_data *p); typedef int (*HPMHOOK_pre_party_create) (struct map_session_data **sd, const char **name, int *item, int *item2); typedef int (*HPMHOOK_post_party_create) (int retVal___, struct map_session_data *sd, const char *name, int item, int item2); typedef void (*HPMHOOK_pre_party_created) (int *account_id, int *char_id, int *fail, int *party_id, const char **name); @@ -6972,12 +6974,12 @@ typedef int (*HPMHOOK_pre_party_send_xy_timer) (int *tid, int64 *tick, int *id, typedef int (*HPMHOOK_post_party_send_xy_timer) (int retVal___, int tid, int64 tick, int id, intptr_t data); typedef void (*HPMHOOK_pre_party_fill_member) (struct party_member **member, struct map_session_data **sd, unsigned int *leader); typedef void (*HPMHOOK_post_party_fill_member) (struct party_member *member, struct map_session_data *sd, unsigned int leader); -typedef struct map_session_data* (*HPMHOOK_pre_party_sd_check) (int *party_id, int *account_id, int *char_id); -typedef struct map_session_data* (*HPMHOOK_post_party_sd_check) (struct map_session_data* retVal___, int party_id, int account_id, int char_id); +typedef struct map_session_data * (*HPMHOOK_pre_party_sd_check) (int *party_id, int *account_id, int *char_id); +typedef struct map_session_data * (*HPMHOOK_post_party_sd_check) (struct map_session_data * retVal___, int party_id, int account_id, int char_id); typedef void (*HPMHOOK_pre_party_check_state) (struct party_data **p); typedef void (*HPMHOOK_post_party_check_state) (struct party_data *p); -typedef struct party_booking_ad_info* (*HPMHOOK_pre_party_create_booking_data) (void); -typedef struct party_booking_ad_info* (*HPMHOOK_post_party_create_booking_data) (struct party_booking_ad_info* retVal___); +typedef struct party_booking_ad_info * (*HPMHOOK_pre_party_create_booking_data) (void); +typedef struct party_booking_ad_info * (*HPMHOOK_post_party_create_booking_data) (struct party_booking_ad_info * retVal___); typedef int (*HPMHOOK_pre_party_db_final) (union DBKey *key, struct DBData **data, va_list ap); typedef int (*HPMHOOK_post_party_db_final) (int retVal___, union DBKey key, struct DBData *data, va_list ap); typedef bool (*HPMHOOK_pre_party_is_leader) (struct map_session_data **sd, const struct party_data **p); @@ -7008,18 +7010,18 @@ typedef void (*HPMHOOK_pre_pcg_final) (void); typedef void (*HPMHOOK_post_pcg_final) (void); typedef void (*HPMHOOK_pre_pcg_reload) (void); typedef void (*HPMHOOK_post_pcg_reload) (void); -typedef GroupSettings* (*HPMHOOK_pre_pcg_get_dummy_group) (void); -typedef GroupSettings* (*HPMHOOK_post_pcg_get_dummy_group) (GroupSettings* retVal___); +typedef GroupSettings * (*HPMHOOK_pre_pcg_get_dummy_group) (void); +typedef GroupSettings * (*HPMHOOK_post_pcg_get_dummy_group) (GroupSettings * retVal___); typedef bool (*HPMHOOK_pre_pcg_exists) (int *group_id); typedef bool (*HPMHOOK_post_pcg_exists) (bool retVal___, int group_id); -typedef GroupSettings* (*HPMHOOK_pre_pcg_id2group) (int *group_id); -typedef GroupSettings* (*HPMHOOK_post_pcg_id2group) (GroupSettings* retVal___, int group_id); +typedef GroupSettings * (*HPMHOOK_pre_pcg_id2group) (int *group_id); +typedef GroupSettings * (*HPMHOOK_post_pcg_id2group) (GroupSettings * retVal___, int group_id); typedef bool (*HPMHOOK_pre_pcg_has_permission) (GroupSettings **group, unsigned int *permission); typedef bool (*HPMHOOK_post_pcg_has_permission) (bool retVal___, GroupSettings *group, unsigned int permission); typedef bool (*HPMHOOK_pre_pcg_should_log_commands) (GroupSettings **group); typedef bool (*HPMHOOK_post_pcg_should_log_commands) (bool retVal___, GroupSettings *group); -typedef const char* (*HPMHOOK_pre_pcg_get_name) (GroupSettings **group); -typedef const char* (*HPMHOOK_post_pcg_get_name) (const char* retVal___, GroupSettings *group); +typedef const char * (*HPMHOOK_pre_pcg_get_name) (GroupSettings **group); +typedef const char * (*HPMHOOK_post_pcg_get_name) (const char * retVal___, GroupSettings *group); typedef int (*HPMHOOK_pre_pcg_get_level) (GroupSettings **group); typedef int (*HPMHOOK_post_pcg_get_level) (int retVal___, GroupSettings *group); typedef int (*HPMHOOK_pre_pcg_get_idx) (GroupSettings **group); @@ -7030,8 +7032,8 @@ typedef void (*HPMHOOK_pre_pc_init) (bool *minimal); typedef void (*HPMHOOK_post_pc_init) (bool minimal); typedef void (*HPMHOOK_pre_pc_final) (void); typedef void (*HPMHOOK_post_pc_final) (void); -typedef struct map_session_data* (*HPMHOOK_pre_pc_get_dummy_sd) (void); -typedef struct map_session_data* (*HPMHOOK_post_pc_get_dummy_sd) (struct map_session_data* retVal___); +typedef struct map_session_data * (*HPMHOOK_pre_pc_get_dummy_sd) (void); +typedef struct map_session_data * (*HPMHOOK_post_pc_get_dummy_sd) (struct map_session_data * retVal___); typedef int (*HPMHOOK_pre_pc_class2idx) (int *class); typedef int (*HPMHOOK_post_pc_class2idx) (int retVal___, int class); typedef bool (*HPMHOOK_pre_pc_can_talk) (struct map_session_data **sd); @@ -7294,16 +7296,16 @@ typedef int (*HPMHOOK_pre_pc_readreg) (struct map_session_data **sd, int64 *reg) typedef int (*HPMHOOK_post_pc_readreg) (int retVal___, struct map_session_data *sd, int64 reg); typedef void (*HPMHOOK_pre_pc_setreg) (struct map_session_data **sd, int64 *reg, int *val); typedef void (*HPMHOOK_post_pc_setreg) (struct map_session_data *sd, int64 reg, int val); -typedef char* (*HPMHOOK_pre_pc_readregstr) (struct map_session_data **sd, int64 *reg); -typedef char* (*HPMHOOK_post_pc_readregstr) (char* retVal___, struct map_session_data *sd, int64 reg); +typedef char * (*HPMHOOK_pre_pc_readregstr) (struct map_session_data **sd, int64 *reg); +typedef char * (*HPMHOOK_post_pc_readregstr) (char * retVal___, struct map_session_data *sd, int64 reg); typedef void (*HPMHOOK_pre_pc_setregstr) (struct map_session_data **sd, int64 *reg, const char **str); typedef void (*HPMHOOK_post_pc_setregstr) (struct map_session_data *sd, int64 reg, const char *str); typedef int (*HPMHOOK_pre_pc_readregistry) (struct map_session_data **sd, int64 *reg); typedef int (*HPMHOOK_post_pc_readregistry) (int retVal___, struct map_session_data *sd, int64 reg); typedef int (*HPMHOOK_pre_pc_setregistry) (struct map_session_data **sd, int64 *reg, int *val); typedef int (*HPMHOOK_post_pc_setregistry) (int retVal___, struct map_session_data *sd, int64 reg, int val); -typedef char* (*HPMHOOK_pre_pc_readregistry_str) (struct map_session_data **sd, int64 *reg); -typedef char* (*HPMHOOK_post_pc_readregistry_str) (char* retVal___, struct map_session_data *sd, int64 reg); +typedef char * (*HPMHOOK_pre_pc_readregistry_str) (struct map_session_data **sd, int64 *reg); +typedef char * (*HPMHOOK_post_pc_readregistry_str) (char * retVal___, struct map_session_data *sd, int64 reg); typedef int (*HPMHOOK_pre_pc_setregistry_str) (struct map_session_data **sd, int64 *reg, const char **val); typedef int (*HPMHOOK_post_pc_setregistry_str) (int retVal___, struct map_session_data *sd, int64 reg, const char *val); typedef int (*HPMHOOK_pre_pc_addeventtimer) (struct map_session_data **sd, int *tick, const char **name); @@ -7326,14 +7328,14 @@ typedef int (*HPMHOOK_pre_pc_marriage) (struct map_session_data **sd, struct map typedef int (*HPMHOOK_post_pc_marriage) (int retVal___, struct map_session_data *sd, struct map_session_data *dstsd); typedef int (*HPMHOOK_pre_pc_divorce) (struct map_session_data **sd); typedef int (*HPMHOOK_post_pc_divorce) (int retVal___, struct map_session_data *sd); -typedef struct map_session_data* (*HPMHOOK_pre_pc_get_partner) (struct map_session_data **sd); -typedef struct map_session_data* (*HPMHOOK_post_pc_get_partner) (struct map_session_data* retVal___, struct map_session_data *sd); -typedef struct map_session_data* (*HPMHOOK_pre_pc_get_father) (struct map_session_data **sd); -typedef struct map_session_data* (*HPMHOOK_post_pc_get_father) (struct map_session_data* retVal___, struct map_session_data *sd); -typedef struct map_session_data* (*HPMHOOK_pre_pc_get_mother) (struct map_session_data **sd); -typedef struct map_session_data* (*HPMHOOK_post_pc_get_mother) (struct map_session_data* retVal___, struct map_session_data *sd); -typedef struct map_session_data* (*HPMHOOK_pre_pc_get_child) (struct map_session_data **sd); -typedef struct map_session_data* (*HPMHOOK_post_pc_get_child) (struct map_session_data* retVal___, struct map_session_data *sd); +typedef struct map_session_data * (*HPMHOOK_pre_pc_get_partner) (struct map_session_data **sd); +typedef struct map_session_data * (*HPMHOOK_post_pc_get_partner) (struct map_session_data * retVal___, struct map_session_data *sd); +typedef struct map_session_data * (*HPMHOOK_pre_pc_get_father) (struct map_session_data **sd); +typedef struct map_session_data * (*HPMHOOK_post_pc_get_father) (struct map_session_data * retVal___, struct map_session_data *sd); +typedef struct map_session_data * (*HPMHOOK_pre_pc_get_mother) (struct map_session_data **sd); +typedef struct map_session_data * (*HPMHOOK_post_pc_get_mother) (struct map_session_data * retVal___, struct map_session_data *sd); +typedef struct map_session_data * (*HPMHOOK_pre_pc_get_child) (struct map_session_data **sd); +typedef struct map_session_data * (*HPMHOOK_post_pc_get_child) (struct map_session_data * retVal___, struct map_session_data *sd); typedef void (*HPMHOOK_pre_pc_bleeding) (struct map_session_data **sd, unsigned int *diff_tick); typedef void (*HPMHOOK_post_pc_bleeding) (struct map_session_data *sd, unsigned int diff_tick); typedef void (*HPMHOOK_pre_pc_regen) (struct map_session_data **sd, unsigned int *diff_tick); @@ -7346,8 +7348,8 @@ typedef int (*HPMHOOK_pre_pc_jobid2mapid) (int *class); typedef int (*HPMHOOK_post_pc_jobid2mapid) (int retVal___, int class); typedef int (*HPMHOOK_pre_pc_mapid2jobid) (unsigned int *class_, int *sex); typedef int (*HPMHOOK_post_pc_mapid2jobid) (int retVal___, unsigned int class_, int sex); -typedef const char* (*HPMHOOK_pre_pc_job_name) (int *class); -typedef const char* (*HPMHOOK_post_pc_job_name) (const char* retVal___, int class); +typedef const char * (*HPMHOOK_pre_pc_job_name) (int *class); +typedef const char * (*HPMHOOK_post_pc_job_name) (const char * retVal___, int class); typedef void (*HPMHOOK_pre_pc_setinvincibletimer) (struct map_session_data **sd, int *val); typedef void (*HPMHOOK_post_pc_setinvincibletimer) (struct map_session_data *sd, int val); typedef void (*HPMHOOK_pre_pc_delinvincibletimer) (struct map_session_data **sd); @@ -7554,10 +7556,10 @@ typedef void (*HPMHOOK_pre_pc_clear_existing_reproduceskill) (struct map_session typedef void (*HPMHOOK_post_pc_clear_existing_reproduceskill) (struct map_session_data *sd, bool clear_vars); #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); -typedef pcre* (*HPMHOOK_post_libpcre_compile) (pcre* retVal___, const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr); -typedef pcre_extra* (*HPMHOOK_pre_libpcre_study) (const pcre **code, int *options, const char ***errptr); -typedef pcre_extra* (*HPMHOOK_post_libpcre_study) (pcre_extra* retVal___, const pcre *code, int options, const char **errptr); +typedef pcre * (*HPMHOOK_pre_libpcre_compile) (const char **pattern, int *options, const char ***errptr, int **erroffset, const unsigned char **tableptr); +typedef pcre * (*HPMHOOK_post_libpcre_compile) (pcre * retVal___, const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr); +typedef pcre_extra * (*HPMHOOK_pre_libpcre_study) (const pcre **code, int *options, const char ***errptr); +typedef pcre_extra * (*HPMHOOK_post_libpcre_study) (pcre_extra * retVal___, const pcre *code, int options, const char **errptr); typedef int (*HPMHOOK_pre_libpcre_exec) (const pcre **code, const pcre_extra **extra, PCRE_SPTR *subject, int *length, int *startoffset, int *options, int **ovector, int *ovecsize); typedef int (*HPMHOOK_post_libpcre_exec) (int retVal___, const pcre *code, const pcre_extra *extra, PCRE_SPTR subject, int length, int startoffset, int options, int *ovector, int ovecsize); typedef void (*HPMHOOK_pre_libpcre_free) (void **ptr); @@ -7706,8 +7708,8 @@ typedef void (*HPMHOOK_pre_quest_final) (void); typedef void (*HPMHOOK_post_quest_final) (void); typedef void (*HPMHOOK_pre_quest_reload) (void); typedef void (*HPMHOOK_post_quest_reload) (void); -typedef struct quest_db* (*HPMHOOK_pre_quest_db) (int *quest_id); -typedef struct quest_db* (*HPMHOOK_post_quest_db) (struct quest_db* retVal___, int quest_id); +typedef struct quest_db * (*HPMHOOK_pre_quest_db) (int *quest_id); +typedef struct quest_db * (*HPMHOOK_post_quest_db) (struct quest_db * retVal___, int quest_id); typedef int (*HPMHOOK_pre_quest_pc_login) (struct map_session_data **sd); typedef int (*HPMHOOK_post_quest_pc_login) (int retVal___, struct map_session_data *sd); typedef int (*HPMHOOK_pre_quest_add) (struct map_session_data **sd, int *quest_id, unsigned int *time_limit); @@ -7728,8 +7730,8 @@ typedef void (*HPMHOOK_pre_quest_clear) (void); typedef void (*HPMHOOK_post_quest_clear) (void); typedef int (*HPMHOOK_pre_quest_read_db) (void); typedef int (*HPMHOOK_post_quest_read_db) (int retVal___); -typedef struct quest_db* (*HPMHOOK_pre_quest_read_db_sub) (struct config_setting_t **cs, int *n, const char **source); -typedef struct quest_db* (*HPMHOOK_post_quest_read_db_sub) (struct quest_db* retVal___, struct config_setting_t *cs, int n, const char *source); +typedef struct quest_db * (*HPMHOOK_pre_quest_read_db_sub) (struct config_setting_t **cs, int *n, const char **source); +typedef struct quest_db * (*HPMHOOK_post_quest_read_db_sub) (struct quest_db * retVal___, struct config_setting_t *cs, int n, const char *source); typedef int (*HPMHOOK_pre_quest_setting_lookup_const) (struct config_setting_t **tt, const char **name, int **value, int *quest_id, int *idx, const char **kind, const char **source); typedef int (*HPMHOOK_post_quest_setting_lookup_const) (int retVal___, struct config_setting_t *tt, const char *name, int *value, int quest_id, int idx, const char *kind, const char *source); typedef int (*HPMHOOK_pre_quest_questinfo_validate_icon) (int *icon); @@ -7838,8 +7840,8 @@ typedef int (*HPMHOOK_pre_rodex_send_mail) (struct map_session_data **sd, const typedef int (*HPMHOOK_post_rodex_send_mail) (int retVal___, struct map_session_data *sd, const char *receiver_name, const char *body, const char *title, int64 zeny); typedef void (*HPMHOOK_pre_rodex_send_mail_result) (struct map_session_data **ssd, struct map_session_data **rsd, bool *result); typedef void (*HPMHOOK_post_rodex_send_mail_result) (struct map_session_data *ssd, struct map_session_data *rsd, bool result); -typedef struct rodex_message* (*HPMHOOK_pre_rodex_get_mail) (struct map_session_data **sd, int64 *mail_id); -typedef struct rodex_message* (*HPMHOOK_post_rodex_get_mail) (struct rodex_message* retVal___, struct map_session_data *sd, int64 mail_id); +typedef struct rodex_message * (*HPMHOOK_pre_rodex_get_mail) (struct map_session_data **sd, int64 *mail_id); +typedef struct rodex_message * (*HPMHOOK_post_rodex_get_mail) (struct rodex_message * retVal___, struct map_session_data *sd, int64 mail_id); typedef void (*HPMHOOK_pre_rodex_read_mail) (struct map_session_data **sd, int64 *mail_id); typedef void (*HPMHOOK_post_rodex_read_mail) (struct map_session_data *sd, int64 mail_id); typedef void (*HPMHOOK_pre_rodex_get_zeny) (struct map_session_data **sd, int8 *opentype, int64 *mail_id); @@ -7862,52 +7864,52 @@ typedef void (*HPMHOOK_pre_script_final) (void); typedef void (*HPMHOOK_post_script_final) (void); typedef int (*HPMHOOK_pre_script_reload) (void); typedef int (*HPMHOOK_post_script_reload) (int retVal___); -typedef struct script_code* (*HPMHOOK_pre_script_parse) (const char **src, const char **file, int *line, int *options, int **retval); -typedef struct script_code* (*HPMHOOK_post_script_parse) (struct script_code* retVal___, const char *src, const char *file, int line, int options, int *retval); +typedef struct script_code * (*HPMHOOK_pre_script_parse) (const char **src, const char **file, int *line, int *options, int **retval); +typedef struct script_code * (*HPMHOOK_post_script_parse) (struct script_code * retVal___, const char *src, const char *file, int line, int options, int *retval); typedef bool (*HPMHOOK_pre_script_add_builtin) (const struct script_function **buildin, bool *override); typedef bool (*HPMHOOK_post_script_add_builtin) (bool retVal___, const struct script_function *buildin, bool override); typedef void (*HPMHOOK_pre_script_parse_builtin) (void); typedef void (*HPMHOOK_post_script_parse_builtin) (void); -typedef const char* (*HPMHOOK_pre_script_parse_subexpr) (const char **p, int *limit); -typedef const char* (*HPMHOOK_post_script_parse_subexpr) (const char* retVal___, const char *p, int limit); -typedef const char* (*HPMHOOK_pre_script_skip_space) (const char **p); -typedef const char* (*HPMHOOK_post_script_skip_space) (const char* retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_subexpr) (const char **p, int *limit); +typedef const char * (*HPMHOOK_post_script_parse_subexpr) (const char * retVal___, const char *p, int limit); +typedef const char * (*HPMHOOK_pre_script_skip_space) (const char **p); +typedef const char * (*HPMHOOK_post_script_skip_space) (const char * retVal___, const char *p); typedef void (*HPMHOOK_pre_script_error) (const char **src, const char **file, int *start_line, const char **error_msg, const char **error_pos); typedef void (*HPMHOOK_post_script_error) (const char *src, const char *file, int start_line, const char *error_msg, const char *error_pos); typedef void (*HPMHOOK_pre_script_warning) (const char **src, const char **file, int *start_line, const char **error_msg, const char **error_pos); typedef void (*HPMHOOK_post_script_warning) (const char *src, const char *file, int start_line, const char *error_msg, const char *error_pos); -typedef struct script_code* (*HPMHOOK_pre_script_clone_script) (struct script_code **original); -typedef struct script_code* (*HPMHOOK_post_script_clone_script) (struct script_code* retVal___, struct script_code *original); +typedef struct script_code * (*HPMHOOK_pre_script_clone_script) (struct script_code **original); +typedef struct script_code * (*HPMHOOK_post_script_clone_script) (struct script_code * retVal___, struct script_code *original); typedef bool (*HPMHOOK_pre_script_addScript) (char **name, char **args, bool ( **func ) (struct script_state *st), bool *isDeprecated); typedef bool (*HPMHOOK_post_script_addScript) (bool retVal___, char *name, char *args, bool ( *func ) (struct script_state *st), bool isDeprecated); typedef int (*HPMHOOK_pre_script_conv_num) (struct script_state **st, struct script_data **data); typedef int (*HPMHOOK_post_script_conv_num) (int retVal___, struct script_state *st, struct script_data *data); -typedef const char* (*HPMHOOK_pre_script_conv_str) (struct script_state **st, struct script_data **data); -typedef const char* (*HPMHOOK_post_script_conv_str) (const char* retVal___, struct script_state *st, struct script_data *data); -typedef struct map_session_data* (*HPMHOOK_pre_script_rid2sd) (struct script_state **st); -typedef struct map_session_data* (*HPMHOOK_post_script_rid2sd) (struct map_session_data* retVal___, struct script_state *st); -typedef struct map_session_data* (*HPMHOOK_pre_script_id2sd) (struct script_state **st, int *account_id); -typedef struct map_session_data* (*HPMHOOK_post_script_id2sd) (struct map_session_data* retVal___, struct script_state *st, int account_id); -typedef struct map_session_data* (*HPMHOOK_pre_script_charid2sd) (struct script_state **st, int *char_id); -typedef struct map_session_data* (*HPMHOOK_post_script_charid2sd) (struct map_session_data* retVal___, struct script_state *st, int char_id); -typedef struct map_session_data* (*HPMHOOK_pre_script_nick2sd) (struct script_state **st, const char **name); -typedef struct map_session_data* (*HPMHOOK_post_script_nick2sd) (struct map_session_data* retVal___, struct script_state *st, const char *name); +typedef const char * (*HPMHOOK_pre_script_conv_str) (struct script_state **st, struct script_data **data); +typedef const char * (*HPMHOOK_post_script_conv_str) (const char * retVal___, struct script_state *st, struct script_data *data); +typedef struct map_session_data * (*HPMHOOK_pre_script_rid2sd) (struct script_state **st); +typedef struct map_session_data * (*HPMHOOK_post_script_rid2sd) (struct map_session_data * retVal___, struct script_state *st); +typedef struct map_session_data * (*HPMHOOK_pre_script_id2sd) (struct script_state **st, int *account_id); +typedef struct map_session_data * (*HPMHOOK_post_script_id2sd) (struct map_session_data * retVal___, struct script_state *st, int account_id); +typedef struct map_session_data * (*HPMHOOK_pre_script_charid2sd) (struct script_state **st, int *char_id); +typedef struct map_session_data * (*HPMHOOK_post_script_charid2sd) (struct map_session_data * retVal___, struct script_state *st, int char_id); +typedef struct map_session_data * (*HPMHOOK_pre_script_nick2sd) (struct script_state **st, const char **name); +typedef struct map_session_data * (*HPMHOOK_post_script_nick2sd) (struct map_session_data * retVal___, struct script_state *st, const char *name); typedef void (*HPMHOOK_pre_script_detach_rid) (struct script_state **st); typedef void (*HPMHOOK_post_script_detach_rid) (struct script_state *st); -typedef struct script_data* (*HPMHOOK_pre_script_push_val) (struct script_stack **stack, enum c_op *type, int64 *val, struct reg_db **ref); -typedef struct script_data* (*HPMHOOK_post_script_push_val) (struct script_data* retVal___, struct script_stack *stack, enum c_op type, int64 val, struct reg_db *ref); -typedef struct script_data* (*HPMHOOK_pre_script_get_val) (struct script_state **st, struct script_data **data); -typedef struct script_data* (*HPMHOOK_post_script_get_val) (struct script_data* retVal___, struct script_state *st, struct script_data *data); -typedef char* (*HPMHOOK_pre_script_get_val_ref_str) (struct script_state **st, struct reg_db **n, struct script_data **data); -typedef char* (*HPMHOOK_post_script_get_val_ref_str) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); -typedef char* (*HPMHOOK_pre_script_get_val_pc_ref_str) (struct script_state **st, struct reg_db **n, struct script_data **data); -typedef char* (*HPMHOOK_post_script_get_val_pc_ref_str) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); -typedef char* (*HPMHOOK_pre_script_get_val_scope_str) (struct script_state **st, struct reg_db **n, struct script_data **data); -typedef char* (*HPMHOOK_post_script_get_val_scope_str) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); -typedef char* (*HPMHOOK_pre_script_get_val_npc_str) (struct script_state **st, struct reg_db **n, struct script_data **data); -typedef char* (*HPMHOOK_post_script_get_val_npc_str) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); -typedef char* (*HPMHOOK_pre_script_get_val_instance_str) (struct script_state **st, const char **name, struct script_data **data); -typedef char* (*HPMHOOK_post_script_get_val_instance_str) (char* retVal___, struct script_state *st, const char *name, struct script_data *data); +typedef struct script_data * (*HPMHOOK_pre_script_push_val) (struct script_stack **stack, enum c_op *type, int64 *val, struct reg_db **ref); +typedef struct script_data * (*HPMHOOK_post_script_push_val) (struct script_data * retVal___, struct script_stack *stack, enum c_op type, int64 val, struct reg_db *ref); +typedef struct script_data * (*HPMHOOK_pre_script_get_val) (struct script_state **st, struct script_data **data); +typedef struct script_data * (*HPMHOOK_post_script_get_val) (struct script_data * retVal___, struct script_state *st, struct script_data *data); +typedef char * (*HPMHOOK_pre_script_get_val_ref_str) (struct script_state **st, struct reg_db **n, struct script_data **data); +typedef char * (*HPMHOOK_post_script_get_val_ref_str) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); +typedef char * (*HPMHOOK_pre_script_get_val_pc_ref_str) (struct script_state **st, struct reg_db **n, struct script_data **data); +typedef char * (*HPMHOOK_post_script_get_val_pc_ref_str) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); +typedef char * (*HPMHOOK_pre_script_get_val_scope_str) (struct script_state **st, struct reg_db **n, struct script_data **data); +typedef char * (*HPMHOOK_post_script_get_val_scope_str) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); +typedef char * (*HPMHOOK_pre_script_get_val_npc_str) (struct script_state **st, struct reg_db **n, struct script_data **data); +typedef char * (*HPMHOOK_post_script_get_val_npc_str) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); +typedef char * (*HPMHOOK_pre_script_get_val_instance_str) (struct script_state **st, const char **name, struct script_data **data); +typedef char * (*HPMHOOK_post_script_get_val_instance_str) (char * retVal___, struct script_state *st, const char *name, struct script_data *data); typedef int (*HPMHOOK_pre_script_get_val_ref_num) (struct script_state **st, struct reg_db **n, struct script_data **data); typedef int (*HPMHOOK_post_script_get_val_ref_num) (int retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); typedef int (*HPMHOOK_pre_script_get_val_pc_ref_num) (struct script_state **st, struct reg_db **n, struct script_data **data); @@ -7918,14 +7920,14 @@ typedef int (*HPMHOOK_pre_script_get_val_npc_num) (struct script_state **st, str typedef int (*HPMHOOK_post_script_get_val_npc_num) (int retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); typedef int (*HPMHOOK_pre_script_get_val_instance_num) (struct script_state **st, const char **name, struct script_data **data); typedef int (*HPMHOOK_post_script_get_val_instance_num) (int retVal___, struct script_state *st, const char *name, struct script_data *data); -typedef const void* (*HPMHOOK_pre_script_get_val2) (struct script_state **st, int64 *uid, struct reg_db **ref); -typedef const void* (*HPMHOOK_post_script_get_val2) (const void* retVal___, struct script_state *st, int64 uid, struct reg_db *ref); -typedef struct script_data* (*HPMHOOK_pre_script_push_str) (struct script_stack **stack, char **str); -typedef struct script_data* (*HPMHOOK_post_script_push_str) (struct script_data* retVal___, struct script_stack *stack, char *str); -typedef struct script_data* (*HPMHOOK_pre_script_push_conststr) (struct script_stack **stack, const char **str); -typedef struct script_data* (*HPMHOOK_post_script_push_conststr) (struct script_data* retVal___, struct script_stack *stack, const char *str); -typedef struct script_data* (*HPMHOOK_pre_script_push_copy) (struct script_stack **stack, int *pos); -typedef struct script_data* (*HPMHOOK_post_script_push_copy) (struct script_data* retVal___, struct script_stack *stack, int pos); +typedef const void * (*HPMHOOK_pre_script_get_val2) (struct script_state **st, int64 *uid, struct reg_db **ref); +typedef const void * (*HPMHOOK_post_script_get_val2) (const void * retVal___, struct script_state *st, int64 uid, struct reg_db *ref); +typedef struct script_data * (*HPMHOOK_pre_script_push_str) (struct script_stack **stack, char **str); +typedef struct script_data * (*HPMHOOK_post_script_push_str) (struct script_data * retVal___, struct script_stack *stack, char *str); +typedef struct script_data * (*HPMHOOK_pre_script_push_conststr) (struct script_stack **stack, const char **str); +typedef struct script_data * (*HPMHOOK_post_script_push_conststr) (struct script_data * retVal___, struct script_stack *stack, const char *str); +typedef struct script_data * (*HPMHOOK_pre_script_push_copy) (struct script_stack **stack, int *pos); +typedef struct script_data * (*HPMHOOK_post_script_push_copy) (struct script_data * retVal___, struct script_stack *stack, int pos); typedef void (*HPMHOOK_pre_script_pop_stack) (struct script_state **st, int *start, int *end); typedef void (*HPMHOOK_post_script_pop_stack) (struct script_state *st, int start, int end); typedef void (*HPMHOOK_pre_script_set_constant) (const char **name, int *value, bool *is_parameter, bool *is_deprecated); @@ -7954,8 +7956,8 @@ typedef void (*HPMHOOK_pre_script_free_code) (struct script_code **code); typedef void (*HPMHOOK_post_script_free_code) (struct script_code *code); typedef void (*HPMHOOK_pre_script_free_vars) (struct DBMap **var_storage); typedef void (*HPMHOOK_post_script_free_vars) (struct DBMap *var_storage); -typedef struct script_state* (*HPMHOOK_pre_script_alloc_state) (struct script_code **rootscript, int *pos, int *rid, int *oid); -typedef struct script_state* (*HPMHOOK_post_script_alloc_state) (struct script_state* retVal___, struct script_code *rootscript, int pos, int rid, int oid); +typedef struct script_state * (*HPMHOOK_pre_script_alloc_state) (struct script_code **rootscript, int *pos, int *rid, int *oid); +typedef struct script_state * (*HPMHOOK_post_script_alloc_state) (struct script_state * retVal___, struct script_code *rootscript, int pos, int rid, int oid); typedef void (*HPMHOOK_pre_script_free_state) (struct script_state **st); typedef void (*HPMHOOK_post_script_free_state) (struct script_state *st); typedef void (*HPMHOOK_pre_script_add_pending_ref) (struct script_state **st, struct reg_db **ref); @@ -7972,16 +7974,16 @@ typedef int (*HPMHOOK_pre_script_add_str) (const char **p); typedef int (*HPMHOOK_post_script_add_str) (int retVal___, const char *p); typedef int (*HPMHOOK_pre_script_add_variable) (const char **varname); typedef int (*HPMHOOK_post_script_add_variable) (int retVal___, const char *varname); -typedef const char* (*HPMHOOK_pre_script_get_str) (int *id); -typedef const char* (*HPMHOOK_post_script_get_str) (const char* retVal___, int id); +typedef const char * (*HPMHOOK_pre_script_get_str) (int *id); +typedef const char * (*HPMHOOK_post_script_get_str) (const char * retVal___, int id); typedef int (*HPMHOOK_pre_script_search_str) (const char **p); typedef int (*HPMHOOK_post_script_search_str) (int retVal___, const char *p); typedef void (*HPMHOOK_pre_script_setd_sub) (struct script_state **st, struct map_session_data **sd, const char **varname, int *elem, const void **value, struct reg_db **ref); typedef void (*HPMHOOK_post_script_setd_sub) (struct script_state *st, struct map_session_data *sd, const char *varname, int elem, const void *value, struct reg_db *ref); typedef void (*HPMHOOK_pre_script_attach_state) (struct script_state **st); typedef void (*HPMHOOK_post_script_attach_state) (struct script_state *st); -typedef struct script_queue* (*HPMHOOK_pre_script_queue) (int *idx); -typedef struct script_queue* (*HPMHOOK_post_script_queue) (struct script_queue* retVal___, int idx); +typedef struct script_queue * (*HPMHOOK_pre_script_queue) (int *idx); +typedef struct script_queue * (*HPMHOOK_post_script_queue) (struct script_queue * retVal___, int idx); typedef bool (*HPMHOOK_pre_script_queue_add) (int *idx, int *var); typedef bool (*HPMHOOK_post_script_queue_add) (bool retVal___, int idx, int var); typedef bool (*HPMHOOK_pre_script_queue_del) (int *idx); @@ -7992,22 +7994,22 @@ typedef int (*HPMHOOK_pre_script_queue_create) (void); typedef int (*HPMHOOK_post_script_queue_create) (int retVal___); typedef bool (*HPMHOOK_pre_script_queue_clear) (int *idx); typedef bool (*HPMHOOK_post_script_queue_clear) (bool retVal___, int idx); -typedef const char* (*HPMHOOK_pre_script_parse_curly_close) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_curly_close) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_syntax_close) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_syntax_close) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_syntax_close_sub) (const char **p, int **flag); -typedef const char* (*HPMHOOK_post_script_parse_syntax_close_sub) (const char* retVal___, const char *p, int *flag); -typedef const char* (*HPMHOOK_pre_script_parse_syntax) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_syntax) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_syntax_function) (const char **p, bool *is_public); -typedef const char* (*HPMHOOK_post_script_parse_syntax_function) (const char* retVal___, const char *p, bool is_public); +typedef const char * (*HPMHOOK_pre_script_parse_curly_close) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_curly_close) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_syntax_close) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_syntax_close) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_syntax_close_sub) (const char **p, int **flag); +typedef const char * (*HPMHOOK_post_script_parse_syntax_close_sub) (const char * retVal___, const char *p, int *flag); +typedef const char * (*HPMHOOK_pre_script_parse_syntax) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_syntax) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_syntax_function) (const char **p, bool *is_public); +typedef const char * (*HPMHOOK_post_script_parse_syntax_function) (const char * retVal___, const char *p, bool is_public); typedef c_op (*HPMHOOK_pre_script_get_com) (const struct script_buf **scriptbuf, int **pos); typedef c_op (*HPMHOOK_post_script_get_com) (c_op retVal___, const struct script_buf *scriptbuf, int *pos); typedef int (*HPMHOOK_pre_script_get_num) (const struct script_buf **scriptbuf, int **pos); typedef int (*HPMHOOK_post_script_get_num) (int retVal___, const struct script_buf *scriptbuf, int *pos); -typedef const char* (*HPMHOOK_pre_script_op2name) (int *op); -typedef const char* (*HPMHOOK_post_script_op2name) (const char* retVal___, int op); +typedef const char * (*HPMHOOK_pre_script_op2name) (int *op); +typedef const char * (*HPMHOOK_post_script_op2name) (const char * retVal___, int op); typedef void (*HPMHOOK_pre_script_reportsrc) (struct script_state **st); typedef void (*HPMHOOK_post_script_reportsrc) (struct script_state *st); typedef void (*HPMHOOK_pre_script_reportdata) (struct script_data **data); @@ -8030,40 +8032,40 @@ typedef void (*HPMHOOK_pre_script_addl) (int *l); typedef void (*HPMHOOK_post_script_addl) (int l); typedef void (*HPMHOOK_pre_script_set_label) (int *l, int *pos, const char **script_pos); typedef void (*HPMHOOK_post_script_set_label) (int l, int pos, const char *script_pos); -typedef const char* (*HPMHOOK_pre_script_skip_word) (const char **p); -typedef const char* (*HPMHOOK_post_script_skip_word) (const char* retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_skip_word) (const char **p); +typedef const char * (*HPMHOOK_post_script_skip_word) (const char * retVal___, const char *p); typedef int (*HPMHOOK_pre_script_add_word) (const char **p); typedef int (*HPMHOOK_post_script_add_word) (int retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_callfunc) (const char **p, int *require_paren, int *is_custom); -typedef const char* (*HPMHOOK_post_script_parse_callfunc) (const char* retVal___, const char *p, int require_paren, int is_custom); +typedef const char * (*HPMHOOK_pre_script_parse_callfunc) (const char **p, int *require_paren, int *is_custom); +typedef const char * (*HPMHOOK_post_script_parse_callfunc) (const char * retVal___, const char *p, int require_paren, int is_custom); typedef void (*HPMHOOK_pre_script_parse_nextline) (bool *first, const char **p); typedef void (*HPMHOOK_post_script_parse_nextline) (bool first, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_variable) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_variable) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_simpleexpr) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_simpleexpr) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_simpleexpr_paren) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_simpleexpr_paren) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_simpleexpr_number) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_simpleexpr_number) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_simpleexpr_string) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_simpleexpr_string) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_simpleexpr_name) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_simpleexpr_name) (const char* retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_variable) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_variable) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_simpleexpr) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_simpleexpr) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_simpleexpr_paren) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_simpleexpr_paren) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_simpleexpr_number) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_simpleexpr_number) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_simpleexpr_string) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_simpleexpr_string) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_simpleexpr_name) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_simpleexpr_name) (const char * retVal___, const char *p); typedef void (*HPMHOOK_pre_script_add_translatable_string) (const struct script_string_buf **string, const char **start_point); typedef void (*HPMHOOK_post_script_add_translatable_string) (const struct script_string_buf *string, const char *start_point); -typedef const char* (*HPMHOOK_pre_script_parse_expr) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_expr) (const char* retVal___, const char *p); -typedef const char* (*HPMHOOK_pre_script_parse_line) (const char **p); -typedef const char* (*HPMHOOK_post_script_parse_line) (const char* retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_expr) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_expr) (const char * retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_script_parse_line) (const char **p); +typedef const char * (*HPMHOOK_post_script_parse_line) (const char * retVal___, const char *p); typedef void (*HPMHOOK_pre_script_read_constdb) (bool *reload); typedef void (*HPMHOOK_post_script_read_constdb) (bool reload); typedef void (*HPMHOOK_pre_script_constdb_comment) (const char **comment); typedef void (*HPMHOOK_post_script_constdb_comment) (const char *comment); typedef void (*HPMHOOK_pre_script_load_parameters) (void); typedef void (*HPMHOOK_post_script_load_parameters) (void); -typedef const char* (*HPMHOOK_pre_script_print_line) (StringBuf **buf, const char **p, const char **mark, int *line); -typedef const char* (*HPMHOOK_post_script_print_line) (const char* retVal___, StringBuf *buf, const char *p, const char *mark, int line); +typedef const char * (*HPMHOOK_pre_script_print_line) (StringBuf **buf, const char **p, const char **mark, int *line); +typedef const char * (*HPMHOOK_post_script_print_line) (const char * retVal___, StringBuf *buf, const char *p, const char *mark, int line); typedef void (*HPMHOOK_pre_script_errorwarning_sub) (StringBuf **buf, const char **src, const char **file, int *start_line, const char **error_msg, const char **error_pos); typedef void (*HPMHOOK_post_script_errorwarning_sub) (StringBuf *buf, const char *src, const char *file, int start_line, const char *error_msg, const char *error_pos); typedef bool (*HPMHOOK_pre_script_is_permanent_variable) (const char **name); @@ -8092,8 +8094,8 @@ typedef void (*HPMHOOK_pre_script_set_reg_instance_num) (struct script_state **s typedef void (*HPMHOOK_post_script_set_reg_instance_num) (struct script_state *st, int64 num, const char *name, int val); typedef void (*HPMHOOK_pre_script_stack_expand) (struct script_stack **stack); typedef void (*HPMHOOK_post_script_stack_expand) (struct script_stack *stack); -typedef struct script_data* (*HPMHOOK_pre_script_push_retinfo) (struct script_stack **stack, struct script_retinfo **ri, struct reg_db **ref); -typedef struct script_data* (*HPMHOOK_post_script_push_retinfo) (struct script_data* retVal___, struct script_stack *stack, struct script_retinfo *ri, struct reg_db *ref); +typedef struct script_data * (*HPMHOOK_pre_script_push_retinfo) (struct script_stack **stack, struct script_retinfo **ri, struct reg_db **ref); +typedef struct script_data * (*HPMHOOK_post_script_push_retinfo) (struct script_data * retVal___, struct script_stack *stack, struct script_retinfo *ri, struct reg_db *ref); typedef void (*HPMHOOK_pre_script_op_3) (struct script_state **st, int *op); typedef void (*HPMHOOK_post_script_op_3) (struct script_state *st, int op); typedef void (*HPMHOOK_pre_script_op_2str) (struct script_state **st, int *op, const char **s1, const char **s2); @@ -8174,12 +8176,12 @@ typedef int (*HPMHOOK_pre_script_run_func) (struct script_state **st); typedef int (*HPMHOOK_post_script_run_func) (int retVal___, struct script_state *st); typedef bool (*HPMHOOK_pre_script_sprintf_helper) (struct script_state **st, int *start, struct StringBuf **out); typedef bool (*HPMHOOK_post_script_sprintf_helper) (bool retVal___, struct script_state *st, int start, struct StringBuf *out); -typedef const char* (*HPMHOOK_pre_script_getfuncname) (struct script_state **st); -typedef const char* (*HPMHOOK_post_script_getfuncname) (const char* retVal___, struct script_state *st); +typedef const char * (*HPMHOOK_pre_script_getfuncname) (struct script_state **st); +typedef const char * (*HPMHOOK_post_script_getfuncname) (const char * retVal___, struct script_state *st); typedef unsigned int (*HPMHOOK_pre_script_calc_hash_ci) (const char **p); typedef unsigned int (*HPMHOOK_post_script_calc_hash_ci) (unsigned int retVal___, const char *p); -typedef struct reg_db* (*HPMHOOK_pre_script_array_src) (struct script_state **st, struct map_session_data **sd, const char **name, struct reg_db **ref); -typedef struct reg_db* (*HPMHOOK_post_script_array_src) (struct reg_db* retVal___, struct script_state *st, struct map_session_data *sd, const char *name, struct reg_db *ref); +typedef struct reg_db * (*HPMHOOK_pre_script_array_src) (struct script_state **st, struct map_session_data **sd, const char **name, struct reg_db **ref); +typedef struct reg_db * (*HPMHOOK_post_script_array_src) (struct reg_db * retVal___, struct script_state *st, struct map_session_data *sd, const char *name, struct reg_db *ref); typedef void (*HPMHOOK_pre_script_array_update) (struct reg_db **src, int64 *num, bool *empty); typedef void (*HPMHOOK_post_script_array_update) (struct reg_db *src, int64 num, bool empty); typedef void (*HPMHOOK_pre_script_array_delete) (struct reg_db **src, struct script_array **sa); @@ -8204,8 +8206,8 @@ typedef int (*HPMHOOK_pre_script_reg_destroy) (union DBKey *key, struct DBData * typedef int (*HPMHOOK_post_script_reg_destroy) (int retVal___, union DBKey key, struct DBData *data, va_list ap); typedef void (*HPMHOOK_pre_script_generic_ui_array_expand) (unsigned int *plus); typedef void (*HPMHOOK_post_script_generic_ui_array_expand) (unsigned int plus); -typedef unsigned int* (*HPMHOOK_pre_script_array_cpy_list) (struct script_array **sa); -typedef unsigned int* (*HPMHOOK_post_script_array_cpy_list) (unsigned int* retVal___, struct script_array *sa); +typedef unsigned int * (*HPMHOOK_pre_script_array_cpy_list) (struct script_array **sa); +typedef unsigned int * (*HPMHOOK_post_script_array_cpy_list) (unsigned int * retVal___, struct script_array *sa); typedef void (*HPMHOOK_pre_script_hardcoded_constants) (void); typedef void (*HPMHOOK_post_script_hardcoded_constants) (void); typedef unsigned short (*HPMHOOK_pre_script_mapindexname2id) (struct script_state **st, const char **name); @@ -8228,8 +8230,8 @@ typedef int (*HPMHOOK_pre_script_parse_cleanup_timer) (int *tid, int64 *tick, in typedef int (*HPMHOOK_post_script_parse_cleanup_timer) (int retVal___, int tid, int64 tick, int id, intptr_t data); typedef uint8 (*HPMHOOK_pre_script_add_language) (const char **name); typedef uint8 (*HPMHOOK_post_script_add_language) (uint8 retVal___, const char *name); -typedef const char* (*HPMHOOK_pre_script_get_translation_dir_name) (const char **directory); -typedef const char* (*HPMHOOK_post_script_get_translation_dir_name) (const char* retVal___, const char *directory); +typedef const char * (*HPMHOOK_pre_script_get_translation_dir_name) (const char **directory); +typedef const char * (*HPMHOOK_post_script_get_translation_dir_name) (const char * retVal___, const char *directory); typedef void (*HPMHOOK_pre_script_parser_clean_leftovers) (void); typedef void (*HPMHOOK_post_script_parser_clean_leftovers) (void); typedef void (*HPMHOOK_pre_script_run_use_script) (struct map_session_data **sd, struct item_data **data, int *oid); @@ -8282,8 +8284,8 @@ typedef void (*HPMHOOK_pre_showmsg_clearScreen) (void); typedef void (*HPMHOOK_post_showmsg_clearScreen) (void); typedef int (*HPMHOOK_pre_showmsg_showMessageV) (const char **string, va_list ap); typedef int (*HPMHOOK_post_showmsg_showMessageV) (int retVal___, const char *string, va_list ap); -typedef const char* (*HPMHOOK_pre_showmsg_getLogFileName) (void); -typedef const char* (*HPMHOOK_post_showmsg_getLogFileName) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_showmsg_getLogFileName) (void); +typedef const char * (*HPMHOOK_post_showmsg_getLogFileName) (const char * retVal___); #endif // COMMON_SHOWMSG_H #ifdef MAP_SKILL_H /* skill */ typedef int (*HPMHOOK_pre_skill_init) (bool *minimal); @@ -8398,10 +8400,10 @@ typedef int (*HPMHOOK_pre_skill_get_cooldown) (int *skill_id, int *skill_lv); typedef int (*HPMHOOK_post_skill_get_cooldown) (int retVal___, int skill_id, int skill_lv); typedef int (*HPMHOOK_pre_skill_tree_get_max) (int *skill_id, int *class); typedef int (*HPMHOOK_post_skill_tree_get_max) (int retVal___, int skill_id, int class); -typedef const char* (*HPMHOOK_pre_skill_get_name) (int *skill_id); -typedef const char* (*HPMHOOK_post_skill_get_name) (const char* retVal___, int skill_id); -typedef const char* (*HPMHOOK_pre_skill_get_desc) (int *skill_id); -typedef const char* (*HPMHOOK_post_skill_get_desc) (const char* retVal___, int skill_id); +typedef const char * (*HPMHOOK_pre_skill_get_name) (int *skill_id); +typedef const char * (*HPMHOOK_post_skill_get_name) (const char * retVal___, int skill_id); +typedef const char * (*HPMHOOK_pre_skill_get_desc) (int *skill_id); +typedef const char * (*HPMHOOK_post_skill_get_desc) (const char * retVal___, int skill_id); typedef int (*HPMHOOK_pre_skill_get_casttype) (int *skill_id); typedef int (*HPMHOOK_post_skill_get_casttype) (int retVal___, int skill_id); typedef int (*HPMHOOK_pre_skill_get_casttype2) (int *index); @@ -8434,16 +8436,16 @@ typedef int (*HPMHOOK_pre_skill_break_equip) (struct block_list **bl, unsigned s typedef int (*HPMHOOK_post_skill_break_equip) (int retVal___, struct block_list *bl, unsigned short where, int rate, int flag); typedef int (*HPMHOOK_pre_skill_strip_equip) (struct block_list **bl, unsigned short *where, int *rate, int *lv, int *time); typedef int (*HPMHOOK_post_skill_strip_equip) (int retVal___, struct block_list *bl, unsigned short where, int rate, int lv, int time); -typedef struct skill_unit_group* (*HPMHOOK_pre_skill_id2group) (int *group_id); -typedef struct skill_unit_group* (*HPMHOOK_post_skill_id2group) (struct skill_unit_group* retVal___, int group_id); -typedef struct skill_unit_group* (*HPMHOOK_pre_skill_unitsetting) (struct block_list **src, uint16 *skill_id, uint16 *skill_lv, short *x, short *y, int *flag); -typedef struct skill_unit_group* (*HPMHOOK_post_skill_unitsetting) (struct skill_unit_group* retVal___, struct block_list *src, uint16 skill_id, uint16 skill_lv, short x, short y, int flag); -typedef struct skill_unit* (*HPMHOOK_pre_skill_initunit) (struct skill_unit_group **group, int *idx, int *x, int *y, int *val1, int *val2); -typedef struct skill_unit* (*HPMHOOK_post_skill_initunit) (struct skill_unit* retVal___, struct skill_unit_group *group, int idx, int x, int y, int val1, int val2); +typedef struct skill_unit_group * (*HPMHOOK_pre_skill_id2group) (int *group_id); +typedef struct skill_unit_group * (*HPMHOOK_post_skill_id2group) (struct skill_unit_group * retVal___, int group_id); +typedef struct skill_unit_group * (*HPMHOOK_pre_skill_unitsetting) (struct block_list **src, uint16 *skill_id, uint16 *skill_lv, short *x, short *y, int *flag); +typedef struct skill_unit_group * (*HPMHOOK_post_skill_unitsetting) (struct skill_unit_group * retVal___, struct block_list *src, uint16 skill_id, uint16 skill_lv, short x, short y, int flag); +typedef struct skill_unit * (*HPMHOOK_pre_skill_initunit) (struct skill_unit_group **group, int *idx, int *x, int *y, int *val1, int *val2); +typedef struct skill_unit * (*HPMHOOK_post_skill_initunit) (struct skill_unit * retVal___, struct skill_unit_group *group, int idx, int x, int y, int val1, int val2); typedef int (*HPMHOOK_pre_skill_delunit) (struct skill_unit **su); typedef int (*HPMHOOK_post_skill_delunit) (int retVal___, struct skill_unit *su); -typedef struct skill_unit_group* (*HPMHOOK_pre_skill_init_unitgroup) (struct block_list **src, int *count, uint16 *skill_id, uint16 *skill_lv, int *unit_id, int *limit, int *interval); -typedef struct skill_unit_group* (*HPMHOOK_post_skill_init_unitgroup) (struct skill_unit_group* retVal___, struct block_list *src, int count, uint16 skill_id, uint16 skill_lv, int unit_id, int limit, int interval); +typedef struct skill_unit_group * (*HPMHOOK_pre_skill_init_unitgroup) (struct block_list **src, int *count, uint16 *skill_id, uint16 *skill_lv, int *unit_id, int *limit, int *interval); +typedef struct skill_unit_group * (*HPMHOOK_post_skill_init_unitgroup) (struct skill_unit_group * retVal___, struct block_list *src, int count, uint16 skill_id, uint16 skill_lv, int unit_id, int limit, int interval); typedef int (*HPMHOOK_pre_skill_del_unitgroup) (struct skill_unit_group **group); typedef int (*HPMHOOK_post_skill_del_unitgroup) (int retVal___, struct skill_unit_group *group); typedef int (*HPMHOOK_pre_skill_clear_unitgroup) (struct block_list **src); @@ -8582,8 +8584,8 @@ 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); typedef int (*HPMHOOK_post_skill_check_condition_mercenary) (int retVal___, struct block_list *bl, int skill_id, int lv, int type); -typedef struct skill_unit_group* (*HPMHOOK_pre_skill_locate_element_field) (struct block_list **bl); -typedef struct skill_unit_group* (*HPMHOOK_post_skill_locate_element_field) (struct skill_unit_group* retVal___, struct block_list *bl); +typedef struct skill_unit_group * (*HPMHOOK_pre_skill_locate_element_field) (struct block_list **bl); +typedef struct skill_unit_group * (*HPMHOOK_post_skill_locate_element_field) (struct skill_unit_group * retVal___, struct block_list *bl); typedef int (*HPMHOOK_pre_skill_graffitiremover) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_skill_graffitiremover) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_skill_activate_reverberation) (struct block_list **bl, va_list ap); @@ -8592,16 +8594,16 @@ typedef int (*HPMHOOK_pre_skill_dance_overlap_sub) (struct block_list **bl, va_l typedef int (*HPMHOOK_post_skill_dance_overlap_sub) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_skill_dance_overlap) (struct skill_unit **su, int *flag); typedef int (*HPMHOOK_post_skill_dance_overlap) (int retVal___, struct skill_unit *su, int flag); -typedef struct s_skill_unit_layout* (*HPMHOOK_pre_skill_get_unit_layout) (uint16 *skill_id, uint16 *skill_lv, struct block_list **src, int *x, int *y); -typedef struct s_skill_unit_layout* (*HPMHOOK_post_skill_get_unit_layout) (struct s_skill_unit_layout* retVal___, uint16 skill_id, uint16 skill_lv, struct block_list *src, int x, int y); +typedef struct s_skill_unit_layout * (*HPMHOOK_pre_skill_get_unit_layout) (uint16 *skill_id, uint16 *skill_lv, struct block_list **src, int *x, int *y); +typedef struct s_skill_unit_layout * (*HPMHOOK_post_skill_get_unit_layout) (struct s_skill_unit_layout * retVal___, uint16 skill_id, uint16 skill_lv, struct block_list *src, int x, int y); typedef int (*HPMHOOK_pre_skill_frostjoke_scream) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_skill_frostjoke_scream) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_skill_greed) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_skill_greed) (int retVal___, struct block_list *bl, va_list ap); typedef int (*HPMHOOK_pre_skill_destroy_trap) (struct block_list **bl, va_list ap); typedef int (*HPMHOOK_post_skill_destroy_trap) (int retVal___, struct block_list *bl, va_list ap); -typedef struct skill_unit_group_tickset* (*HPMHOOK_pre_skill_unitgrouptickset_search) (struct block_list **bl, struct skill_unit_group **group, int64 *tick); -typedef struct skill_unit_group_tickset* (*HPMHOOK_post_skill_unitgrouptickset_search) (struct skill_unit_group_tickset* retVal___, struct block_list *bl, struct skill_unit_group *group, int64 tick); +typedef struct skill_unit_group_tickset * (*HPMHOOK_pre_skill_unitgrouptickset_search) (struct block_list **bl, struct skill_unit_group **group, int64 *tick); +typedef struct skill_unit_group_tickset * (*HPMHOOK_post_skill_unitgrouptickset_search) (struct skill_unit_group_tickset * retVal___, struct block_list *bl, struct skill_unit_group *group, int64 tick); typedef bool (*HPMHOOK_pre_skill_dance_switch) (struct skill_unit **su, int *flag); typedef bool (*HPMHOOK_post_skill_dance_switch) (bool retVal___, struct skill_unit *su, int flag); typedef int (*HPMHOOK_pre_skill_check_condition_char_sub) (struct block_list **bl, va_list ap); @@ -8960,8 +8962,8 @@ typedef void (*HPMHOOK_pre_sockt_set_default_delete) (DeleteFunc *defaultdelete) typedef void (*HPMHOOK_post_sockt_set_default_delete) (DeleteFunc defaultdelete); typedef uint32 (*HPMHOOK_pre_sockt_host2ip) (const char **hostname); typedef uint32 (*HPMHOOK_post_sockt_host2ip) (uint32 retVal___, const char *hostname); -typedef const char* (*HPMHOOK_pre_sockt_ip2str) (uint32 *ip, char **ip_str); -typedef const char* (*HPMHOOK_post_sockt_ip2str) (const char* retVal___, uint32 ip, char *ip_str); +typedef const char * (*HPMHOOK_pre_sockt_ip2str) (uint32 *ip, char **ip_str); +typedef const char * (*HPMHOOK_post_sockt_ip2str) (const char * retVal___, uint32 ip, char *ip_str); typedef uint32 (*HPMHOOK_pre_sockt_str2ip) (const char **ip_str); typedef uint32 (*HPMHOOK_post_sockt_str2ip) (uint32 retVal___, const char *ip_str); typedef uint16 (*HPMHOOK_pre_sockt_ntows) (uint16 *netshort); @@ -9018,10 +9020,10 @@ typedef void (*HPMHOOK_pre_SQL_ShowDebug_) (struct Sql **self, const char **debu typedef void (*HPMHOOK_post_SQL_ShowDebug_) (struct Sql *self, const char *debug_file, const unsigned long debug_line); typedef void (*HPMHOOK_pre_SQL_Free) (struct Sql **self); typedef void (*HPMHOOK_post_SQL_Free) (struct Sql *self); -typedef struct Sql* (*HPMHOOK_pre_SQL_Malloc) (void); -typedef struct Sql* (*HPMHOOK_post_SQL_Malloc) (struct Sql* retVal___); -typedef struct SqlStmt* (*HPMHOOK_pre_SQL_StmtMalloc) (struct Sql **sql); -typedef struct SqlStmt* (*HPMHOOK_post_SQL_StmtMalloc) (struct SqlStmt* retVal___, struct Sql *sql); +typedef struct Sql * (*HPMHOOK_pre_SQL_Malloc) (void); +typedef struct Sql * (*HPMHOOK_post_SQL_Malloc) (struct Sql * retVal___); +typedef struct SqlStmt * (*HPMHOOK_pre_SQL_StmtMalloc) (struct Sql **sql); +typedef struct SqlStmt * (*HPMHOOK_post_SQL_StmtMalloc) (struct SqlStmt * retVal___, struct Sql *sql); typedef int (*HPMHOOK_pre_SQL_StmtPrepareV) (struct SqlStmt **self, const char **query, va_list args); typedef int (*HPMHOOK_post_SQL_StmtPrepareV) (int retVal___, struct SqlStmt *self, const char *query, va_list args); typedef int (*HPMHOOK_pre_SQL_StmtPrepareStr) (struct SqlStmt **self, const char **query); @@ -9080,14 +9082,14 @@ typedef int (*HPMHOOK_pre_status_revive) (struct block_list **bl, unsigned char 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); typedef int (*HPMHOOK_post_status_fixed_revive) (int retVal___, struct block_list *bl, unsigned int per_hp, unsigned int per_sp); -typedef struct regen_data* (*HPMHOOK_pre_status_get_regen_data) (struct block_list **bl); -typedef struct regen_data* (*HPMHOOK_post_status_get_regen_data) (struct regen_data* retVal___, struct block_list *bl); -typedef struct status_data* (*HPMHOOK_pre_status_get_status_data) (struct block_list **bl); -typedef struct status_data* (*HPMHOOK_post_status_get_status_data) (struct status_data* retVal___, struct block_list *bl); -typedef struct status_data* (*HPMHOOK_pre_status_get_base_status) (struct block_list **bl); -typedef struct status_data* (*HPMHOOK_post_status_get_base_status) (struct status_data* retVal___, struct block_list *bl); -typedef const char* (*HPMHOOK_pre_status_get_name) (const struct block_list **bl); -typedef const char* (*HPMHOOK_post_status_get_name) (const char* retVal___, const struct block_list *bl); +typedef struct regen_data * (*HPMHOOK_pre_status_get_regen_data) (struct block_list **bl); +typedef struct regen_data * (*HPMHOOK_post_status_get_regen_data) (struct regen_data * retVal___, struct block_list *bl); +typedef struct status_data * (*HPMHOOK_pre_status_get_status_data) (struct block_list **bl); +typedef struct status_data * (*HPMHOOK_post_status_get_status_data) (struct status_data * retVal___, struct block_list *bl); +typedef struct status_data * (*HPMHOOK_pre_status_get_base_status) (struct block_list **bl); +typedef struct status_data * (*HPMHOOK_post_status_get_base_status) (struct status_data * retVal___, struct block_list *bl); +typedef const char * (*HPMHOOK_pre_status_get_name) (const struct block_list **bl); +typedef const char * (*HPMHOOK_post_status_get_name) (const char * retVal___, const struct block_list *bl); typedef int (*HPMHOOK_pre_status_get_class) (const struct block_list **bl); typedef int (*HPMHOOK_post_status_get_class) (int retVal___, const struct block_list *bl); typedef int (*HPMHOOK_pre_status_get_lv) (const struct block_list **bl); @@ -9110,14 +9112,14 @@ typedef int (*HPMHOOK_pre_status_get_mexp) (const struct block_list **bl); typedef int (*HPMHOOK_post_status_get_mexp) (int retVal___, const struct block_list *bl); typedef int (*HPMHOOK_pre_status_get_race2) (const struct block_list **bl); typedef int (*HPMHOOK_post_status_get_race2) (int retVal___, const struct block_list *bl); -typedef struct view_data* (*HPMHOOK_pre_status_get_viewdata) (struct block_list **bl); -typedef struct view_data* (*HPMHOOK_post_status_get_viewdata) (struct view_data* retVal___, struct block_list *bl); +typedef struct view_data * (*HPMHOOK_pre_status_get_viewdata) (struct block_list **bl); +typedef struct view_data * (*HPMHOOK_post_status_get_viewdata) (struct view_data * retVal___, struct block_list *bl); typedef void (*HPMHOOK_pre_status_set_viewdata) (struct block_list **bl, int *class_); typedef void (*HPMHOOK_post_status_set_viewdata) (struct block_list *bl, int class_); typedef void (*HPMHOOK_pre_status_change_init) (struct block_list **bl); typedef void (*HPMHOOK_post_status_change_init) (struct block_list *bl); -typedef struct status_change* (*HPMHOOK_pre_status_get_sc) (struct block_list **bl); -typedef struct status_change* (*HPMHOOK_post_status_get_sc) (struct status_change* retVal___, struct block_list *bl); +typedef struct status_change * (*HPMHOOK_pre_status_get_sc) (struct block_list **bl); +typedef struct status_change * (*HPMHOOK_post_status_get_sc) (struct status_change * retVal___, struct block_list *bl); typedef int (*HPMHOOK_pre_status_isdead) (struct block_list **bl); typedef int (*HPMHOOK_post_status_isdead) (int retVal___, struct block_list *bl); typedef int (*HPMHOOK_pre_status_isimmune) (struct block_list **bl); @@ -9236,8 +9238,8 @@ typedef int (*HPMHOOK_pre_status_base_atk) (const struct block_list **bl, const typedef int (*HPMHOOK_post_status_base_atk) (int retVal___, const struct block_list *bl, const struct status_data *st); typedef unsigned int (*HPMHOOK_pre_status_get_base_maxhp) (const struct map_session_data **sd, const struct status_data **st); typedef unsigned int (*HPMHOOK_post_status_get_base_maxhp) (unsigned int retVal___, const struct map_session_data *sd, const struct status_data *st); -typedef struct s_maxhp_entry* (*HPMHOOK_pre_status_get_maxhp_cap_entry) (int *classidx, int *level); -typedef struct s_maxhp_entry* (*HPMHOOK_post_status_get_maxhp_cap_entry) (struct s_maxhp_entry* retVal___, int classidx, int level); +typedef struct s_maxhp_entry * (*HPMHOOK_pre_status_get_maxhp_cap_entry) (int *classidx, int *level); +typedef struct s_maxhp_entry * (*HPMHOOK_post_status_get_maxhp_cap_entry) (struct s_maxhp_entry * retVal___, int classidx, int level); 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); @@ -9386,8 +9388,8 @@ typedef int (*HPMHOOK_pre_storage_reconnect_sub) (union DBKey *key, struct DBDat typedef int (*HPMHOOK_post_storage_reconnect_sub) (int retVal___, union DBKey key, struct DBData *data, va_list ap); #endif // MAP_STORAGE_H #ifdef COMMON_STRLIB_H /* StrBuf */ -typedef StringBuf* (*HPMHOOK_pre_StrBuf_Malloc) (void); -typedef StringBuf* (*HPMHOOK_post_StrBuf_Malloc) (StringBuf* retVal___); +typedef StringBuf * (*HPMHOOK_pre_StrBuf_Malloc) (void); +typedef StringBuf * (*HPMHOOK_post_StrBuf_Malloc) (StringBuf * retVal___); typedef void (*HPMHOOK_pre_StrBuf_Init) (StringBuf **self); typedef void (*HPMHOOK_post_StrBuf_Init) (StringBuf *self); typedef int (*HPMHOOK_pre_StrBuf_Vprintf) (StringBuf **self, const char **fmt, va_list args); @@ -9398,8 +9400,8 @@ typedef int (*HPMHOOK_pre_StrBuf_AppendStr) (StringBuf **self, const char **str) typedef int (*HPMHOOK_post_StrBuf_AppendStr) (int retVal___, StringBuf *self, const char *str); typedef int (*HPMHOOK_pre_StrBuf_Length) (StringBuf **self); typedef int (*HPMHOOK_post_StrBuf_Length) (int retVal___, StringBuf *self); -typedef char* (*HPMHOOK_pre_StrBuf_Value) (StringBuf **self); -typedef char* (*HPMHOOK_post_StrBuf_Value) (char* retVal___, StringBuf *self); +typedef char * (*HPMHOOK_pre_StrBuf_Value) (StringBuf **self); +typedef char * (*HPMHOOK_post_StrBuf_Value) (char * retVal___, StringBuf *self); typedef void (*HPMHOOK_pre_StrBuf_Clear) (StringBuf **self); typedef void (*HPMHOOK_post_StrBuf_Clear) (StringBuf *self); typedef void (*HPMHOOK_pre_StrBuf_Destroy) (StringBuf **self); @@ -9408,30 +9410,30 @@ typedef void (*HPMHOOK_pre_StrBuf_Free) (StringBuf **self); typedef void (*HPMHOOK_post_StrBuf_Free) (StringBuf *self); #endif // COMMON_STRLIB_H #ifdef COMMON_STRLIB_H /* strlib */ -typedef char* (*HPMHOOK_pre_strlib_jstrescape) (char **pt); -typedef char* (*HPMHOOK_post_strlib_jstrescape) (char* retVal___, char *pt); -typedef char* (*HPMHOOK_pre_strlib_jstrescapecpy) (char **pt, const char **spt); -typedef char* (*HPMHOOK_post_strlib_jstrescapecpy) (char* retVal___, char *pt, const char *spt); +typedef char * (*HPMHOOK_pre_strlib_jstrescape) (char **pt); +typedef char * (*HPMHOOK_post_strlib_jstrescape) (char * retVal___, char *pt); +typedef char * (*HPMHOOK_pre_strlib_jstrescapecpy) (char **pt, const char **spt); +typedef char * (*HPMHOOK_post_strlib_jstrescapecpy) (char * retVal___, char *pt, const char *spt); typedef int (*HPMHOOK_pre_strlib_jmemescapecpy) (char **pt, const char **spt, int *size); typedef int (*HPMHOOK_post_strlib_jmemescapecpy) (int retVal___, char *pt, const char *spt, int size); typedef int (*HPMHOOK_pre_strlib_remove_control_chars_) (char **str); typedef int (*HPMHOOK_post_strlib_remove_control_chars_) (int retVal___, char *str); -typedef char* (*HPMHOOK_pre_strlib_trim_) (char **str); -typedef char* (*HPMHOOK_post_strlib_trim_) (char* retVal___, char *str); -typedef char* (*HPMHOOK_pre_strlib_normalize_name_) (char **str, const char **delims); -typedef char* (*HPMHOOK_post_strlib_normalize_name_) (char* retVal___, char *str, const char *delims); -typedef const char* (*HPMHOOK_pre_strlib_stristr_) (const char **haystack, const char **needle); -typedef const char* (*HPMHOOK_post_strlib_stristr_) (const char* retVal___, const char *haystack, const char *needle); +typedef char * (*HPMHOOK_pre_strlib_trim_) (char **str); +typedef char * (*HPMHOOK_post_strlib_trim_) (char * retVal___, char *str); +typedef char * (*HPMHOOK_pre_strlib_normalize_name_) (char **str, const char **delims); +typedef char * (*HPMHOOK_post_strlib_normalize_name_) (char * retVal___, char *str, const char *delims); +typedef const char * (*HPMHOOK_pre_strlib_stristr_) (const char **haystack, const char **needle); +typedef const char * (*HPMHOOK_post_strlib_stristr_) (const char * retVal___, const char *haystack, const char *needle); typedef size_t (*HPMHOOK_pre_strlib_strnlen_) (const char **string, size_t *maxlen); typedef size_t (*HPMHOOK_post_strlib_strnlen_) (size_t retVal___, const char *string, size_t maxlen); -typedef char* (*HPMHOOK_pre_strlib_strtok_r_) (char **s1, const char **s2, char ***lasts); -typedef char* (*HPMHOOK_post_strlib_strtok_r_) (char* retVal___, char *s1, const char *s2, char **lasts); +typedef char * (*HPMHOOK_pre_strlib_strtok_r_) (char **s1, const char **s2, char ***lasts); +typedef char * (*HPMHOOK_post_strlib_strtok_r_) (char * retVal___, char *s1, const char *s2, char **lasts); typedef int (*HPMHOOK_pre_strlib_e_mail_check_) (char **email); typedef int (*HPMHOOK_post_strlib_e_mail_check_) (int retVal___, char *email); typedef int (*HPMHOOK_pre_strlib_config_switch_) (const char **str); typedef int (*HPMHOOK_post_strlib_config_switch_) (int retVal___, const char *str); -typedef char* (*HPMHOOK_pre_strlib_safestrncpy_) (char **dst, const char **src, size_t *n); -typedef char* (*HPMHOOK_post_strlib_safestrncpy_) (char* retVal___, char *dst, const char *src, size_t n); +typedef char * (*HPMHOOK_pre_strlib_safestrncpy_) (char **dst, const char **src, size_t *n); +typedef char * (*HPMHOOK_post_strlib_safestrncpy_) (char * retVal___, char *dst, const char *src, size_t n); typedef size_t (*HPMHOOK_pre_strlib_safestrnlen_) (const char **string, size_t *maxlen); typedef size_t (*HPMHOOK_post_strlib_safestrnlen_) (size_t retVal___, const char *string, size_t maxlen); typedef int (*HPMHOOK_pre_strlib_strline_) (const char **str, size_t *pos); @@ -9470,40 +9472,40 @@ typedef size_t (*HPMHOOK_pre_sv_escape_c) (char **out_dest, const char **src, si typedef size_t (*HPMHOOK_post_sv_escape_c) (size_t retVal___, char *out_dest, const char *src, size_t len, const char *escapes); typedef size_t (*HPMHOOK_pre_sv_unescape_c) (char **out_dest, const char **src, size_t *len); typedef size_t (*HPMHOOK_post_sv_unescape_c) (size_t retVal___, char *out_dest, const char *src, size_t len); -typedef const char* (*HPMHOOK_pre_sv_skip_escaped_c) (const char **p); -typedef const char* (*HPMHOOK_post_sv_skip_escaped_c) (const char* retVal___, const char *p); +typedef const char * (*HPMHOOK_pre_sv_skip_escaped_c) (const char **p); +typedef const char * (*HPMHOOK_post_sv_skip_escaped_c) (const char * retVal___, const char *p); typedef bool (*HPMHOOK_pre_sv_readdb) (const char **directory, const char **filename, char *delim, int *mincols, int *maxcols, int *maxrows, bool ( **parseproc ) (char *fields[], int columns, int current)); typedef bool (*HPMHOOK_post_sv_readdb) (bool retVal___, const char *directory, const char *filename, char delim, int mincols, int maxcols, int maxrows, bool ( *parseproc ) (char *fields[], int columns, int current)); #endif // COMMON_STRLIB_H #ifdef COMMON_SYSINFO_H /* sysinfo */ typedef long (*HPMHOOK_pre_sysinfo_getpagesize) (void); typedef long (*HPMHOOK_post_sysinfo_getpagesize) (long retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_platform) (void); -typedef const char* (*HPMHOOK_post_sysinfo_platform) (const char* retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_osversion) (void); -typedef const char* (*HPMHOOK_post_sysinfo_osversion) (const char* retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_cpu) (void); -typedef const char* (*HPMHOOK_post_sysinfo_cpu) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_platform) (void); +typedef const char * (*HPMHOOK_post_sysinfo_platform) (const char * retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_osversion) (void); +typedef const char * (*HPMHOOK_post_sysinfo_osversion) (const char * retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_cpu) (void); +typedef const char * (*HPMHOOK_post_sysinfo_cpu) (const char * retVal___); typedef int (*HPMHOOK_pre_sysinfo_cpucores) (void); typedef int (*HPMHOOK_post_sysinfo_cpucores) (int retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_arch) (void); -typedef const char* (*HPMHOOK_post_sysinfo_arch) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_arch) (void); +typedef const char * (*HPMHOOK_post_sysinfo_arch) (const char * retVal___); typedef bool (*HPMHOOK_pre_sysinfo_is64bit) (void); typedef bool (*HPMHOOK_post_sysinfo_is64bit) (bool retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_compiler) (void); -typedef const char* (*HPMHOOK_post_sysinfo_compiler) (const char* retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_cflags) (void); -typedef const char* (*HPMHOOK_post_sysinfo_cflags) (const char* retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_time) (void); -typedef const char* (*HPMHOOK_post_sysinfo_time) (const char* retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_vcstype) (void); -typedef const char* (*HPMHOOK_post_sysinfo_vcstype) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_compiler) (void); +typedef const char * (*HPMHOOK_post_sysinfo_compiler) (const char * retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_cflags) (void); +typedef const char * (*HPMHOOK_post_sysinfo_cflags) (const char * retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_time) (void); +typedef const char * (*HPMHOOK_post_sysinfo_time) (const char * retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_vcstype) (void); +typedef const char * (*HPMHOOK_post_sysinfo_vcstype) (const char * retVal___); typedef int (*HPMHOOK_pre_sysinfo_vcstypeid) (void); typedef int (*HPMHOOK_post_sysinfo_vcstypeid) (int retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_vcsrevision_src) (void); -typedef const char* (*HPMHOOK_post_sysinfo_vcsrevision_src) (const char* retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_vcsrevision_scripts) (void); -typedef const char* (*HPMHOOK_post_sysinfo_vcsrevision_scripts) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_vcsrevision_src) (void); +typedef const char * (*HPMHOOK_post_sysinfo_vcsrevision_src) (const char * retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_vcsrevision_scripts) (void); +typedef const char * (*HPMHOOK_post_sysinfo_vcsrevision_scripts) (const char * retVal___); typedef int (*HPMHOOK_pre_sysinfo_build_revision) (void); typedef int (*HPMHOOK_post_sysinfo_build_revision) (int retVal___); typedef uint32 (*HPMHOOK_pre_sysinfo_fflags) (void); @@ -9512,8 +9514,8 @@ typedef void (*HPMHOOK_pre_sysinfo_vcsrevision_reload) (void); typedef void (*HPMHOOK_post_sysinfo_vcsrevision_reload) (void); typedef bool (*HPMHOOK_pre_sysinfo_is_superuser) (void); typedef bool (*HPMHOOK_post_sysinfo_is_superuser) (bool retVal___); -typedef const char* (*HPMHOOK_pre_sysinfo_zlib) (void); -typedef const char* (*HPMHOOK_post_sysinfo_zlib) (const char* retVal___); +typedef const char * (*HPMHOOK_pre_sysinfo_zlib) (void); +typedef const char * (*HPMHOOK_post_sysinfo_zlib) (const char * retVal___); typedef void (*HPMHOOK_pre_sysinfo_init) (void); typedef void (*HPMHOOK_post_sysinfo_init) (void); typedef void (*HPMHOOK_pre_sysinfo_final) (void); @@ -9524,14 +9526,14 @@ typedef void (*HPMHOOK_pre_thread_init) (void); typedef void (*HPMHOOK_post_thread_init) (void); typedef void (*HPMHOOK_pre_thread_final) (void); typedef void (*HPMHOOK_post_thread_final) (void); -typedef struct thread_handle* (*HPMHOOK_pre_thread_create) (threadFunc *entry_point, void **param); -typedef struct thread_handle* (*HPMHOOK_post_thread_create) (struct thread_handle* retVal___, threadFunc entry_point, void *param); -typedef struct thread_handle* (*HPMHOOK_pre_thread_create_opt) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); -typedef struct thread_handle* (*HPMHOOK_post_thread_create_opt) (struct thread_handle* retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); +typedef struct thread_handle * (*HPMHOOK_pre_thread_create) (threadFunc *entry_point, void **param); +typedef struct thread_handle * (*HPMHOOK_post_thread_create) (struct thread_handle * retVal___, threadFunc entry_point, void *param); +typedef struct thread_handle * (*HPMHOOK_pre_thread_create_opt) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); +typedef struct thread_handle * (*HPMHOOK_post_thread_create_opt) (struct thread_handle * retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); typedef void (*HPMHOOK_pre_thread_destroy) (struct thread_handle **handle); typedef void (*HPMHOOK_post_thread_destroy) (struct thread_handle *handle); -typedef struct thread_handle* (*HPMHOOK_pre_thread_self) (void); -typedef struct thread_handle* (*HPMHOOK_post_thread_self) (struct thread_handle* retVal___); +typedef struct thread_handle * (*HPMHOOK_pre_thread_self) (void); +typedef struct thread_handle * (*HPMHOOK_post_thread_self) (struct thread_handle * retVal___); typedef int (*HPMHOOK_pre_thread_get_tid) (void); typedef int (*HPMHOOK_post_thread_get_tid) (int retVal___); typedef bool (*HPMHOOK_pre_thread_wait) (struct thread_handle **handle, void ***out_exit_code); @@ -9552,8 +9554,8 @@ typedef int (*HPMHOOK_pre_timer_add) (int64 *tick, TimerFunc *func, int *id, int typedef int (*HPMHOOK_post_timer_add) (int retVal___, int64 tick, TimerFunc func, int id, intptr_t data); typedef int (*HPMHOOK_pre_timer_add_interval) (int64 *tick, TimerFunc *func, int *id, intptr_t *data, int *interval); typedef int (*HPMHOOK_post_timer_add_interval) (int retVal___, int64 tick, TimerFunc func, int id, intptr_t data, int interval); -typedef const struct TimerData* (*HPMHOOK_pre_timer_get) (int *tid); -typedef const struct TimerData* (*HPMHOOK_post_timer_get) (const struct TimerData* retVal___, int tid); +typedef const struct TimerData * (*HPMHOOK_pre_timer_get) (int *tid); +typedef const struct TimerData * (*HPMHOOK_post_timer_get) (const struct TimerData * retVal___, int tid); typedef int (*HPMHOOK_pre_timer_delete) (int *tid, TimerFunc *func); typedef int (*HPMHOOK_post_timer_delete) (int retVal___, int tid, TimerFunc func); typedef int64 (*HPMHOOK_pre_timer_addtick) (int *tid, int64 *tick); @@ -9602,12 +9604,12 @@ typedef int (*HPMHOOK_pre_unit_init) (bool *minimal); typedef int (*HPMHOOK_post_unit_init) (int retVal___, bool minimal); typedef int (*HPMHOOK_pre_unit_final) (void); typedef int (*HPMHOOK_post_unit_final) (int retVal___); -typedef struct unit_data* (*HPMHOOK_pre_unit_bl2ud) (struct block_list **bl); -typedef struct unit_data* (*HPMHOOK_post_unit_bl2ud) (struct unit_data* retVal___, struct block_list *bl); -typedef const struct unit_data* (*HPMHOOK_pre_unit_cbl2ud) (const struct block_list **bl); -typedef const struct unit_data* (*HPMHOOK_post_unit_cbl2ud) (const struct unit_data* retVal___, const struct block_list *bl); -typedef struct unit_data* (*HPMHOOK_pre_unit_bl2ud2) (struct block_list **bl); -typedef struct unit_data* (*HPMHOOK_post_unit_bl2ud2) (struct unit_data* retVal___, struct block_list *bl); +typedef struct unit_data * (*HPMHOOK_pre_unit_bl2ud) (struct block_list **bl); +typedef struct unit_data * (*HPMHOOK_post_unit_bl2ud) (struct unit_data * retVal___, struct block_list *bl); +typedef const struct unit_data * (*HPMHOOK_pre_unit_cbl2ud) (const struct block_list **bl); +typedef const struct unit_data * (*HPMHOOK_post_unit_cbl2ud) (const struct unit_data * retVal___, const struct block_list *bl); +typedef struct unit_data * (*HPMHOOK_pre_unit_bl2ud2) (struct block_list **bl); +typedef struct unit_data * (*HPMHOOK_post_unit_bl2ud2) (struct unit_data * retVal___, struct block_list *bl); typedef void (*HPMHOOK_pre_unit_init_ud) (struct unit_data **ud); typedef void (*HPMHOOK_post_unit_init_ud) (struct unit_data *ud); typedef int (*HPMHOOK_pre_unit_attack_timer) (int *tid, int64 *tick, int *id, intptr_t *data); diff --git a/src/plugins/HPMHooking/HPMHooking_api.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_api.HPMHooksCore.inc index 9a3b3dc64..7be798e50 100644 --- a/src/plugins/HPMHooking/HPMHooking_api.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_api.HPMHooksCore.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_api.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_api.HookingPoints.inc index f5fc3dfcd..05d278061 100644 --- a/src/plugins/HPMHooking/HPMHooking_api.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_api.HookingPoints.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_api.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_api.Hooks.inc index cb3abb3bf..5995d28d5 100644 --- a/src/plugins/HPMHooking/HPMHooking_api.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_api.Hooks.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -79,11 +79,11 @@ bool HP_HCache_check(const char *file) { } return retVal___; } -FILE* HP_HCache_open(const char *file, const char *opt) { +FILE * HP_HCache_open(const char *file, const char *opt) { int hIndex = 0; - FILE* retVal___ = NULL; + FILE * retVal___ = NULL; if (HPMHooks.count.HP_HCache_open_pre > 0) { - FILE* (*preHookFunc) (const char **file, const char **opt); + FILE * (*preHookFunc) (const char **file, const char **opt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_HCache_open_pre[hIndex].func; @@ -98,7 +98,7 @@ FILE* HP_HCache_open(const char *file, const char *opt) { retVal___ = HPMHooks.source.HCache.open(file, opt); } if (HPMHooks.count.HP_HCache_open_post > 0) { - FILE* (*postHookFunc) (FILE* retVal___, const char *file, const char *opt); + FILE * (*postHookFunc) (FILE * retVal___, const char *file, const char *opt); for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_post; hIndex++) { postHookFunc = HPMHooks.list.HP_HCache_open_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, opt); @@ -1643,11 +1643,11 @@ void HP_aclif_remove_remove_timer(struct online_api_login_data *data) { } return; } -const char* HP_aclif_get_first_world_name(void) { +const char * HP_aclif_get_first_world_name(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_aclif_get_first_world_name_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_aclif_get_first_world_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_aclif_get_first_world_name_pre[hIndex].func; @@ -1662,7 +1662,7 @@ const char* HP_aclif_get_first_world_name(void) { retVal___ = HPMHooks.source.aclif.get_first_world_name(); } if (HPMHooks.count.HP_aclif_get_first_world_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_aclif_get_first_world_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_aclif_get_first_world_name_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -2683,11 +2683,11 @@ bool HP_cmdline_arg_next_value(const char *name, int current_arg, int argc) { } return retVal___; } -const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { +const char * HP_cmdline_arg_source(struct CmdlineArgData *arg) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_cmdline_arg_source_pre > 0) { - const char* (*preHookFunc) (struct CmdlineArgData **arg); + const char * (*preHookFunc) (struct CmdlineArgData **arg); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_cmdline_arg_source_pre[hIndex].func; @@ -2702,7 +2702,7 @@ const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { retVal___ = HPMHooks.source.cmdline.arg_source(arg); } if (HPMHooks.count.HP_cmdline_arg_source_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct CmdlineArgData *arg); + const char * (*postHookFunc) (const char * retVal___, struct CmdlineArgData *arg); for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_post; hIndex++) { postHookFunc = HPMHooks.list.HP_cmdline_arg_source_post[hIndex].func; retVal___ = postHookFunc(retVal___, arg); @@ -2978,11 +2978,11 @@ DBReleaser HP_DB_custom_release(enum DBReleaseOption which) { } return retVal___; } -struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { +struct DBMap * HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { int hIndex = 0; - struct DBMap* retVal___ = NULL; + struct DBMap * retVal___ = NULL; if (HPMHooks.count.HP_DB_alloc_pre > 0) { - struct DBMap* (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); + struct DBMap * (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_alloc_pre[hIndex].func; @@ -2997,7 +2997,7 @@ struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBT retVal___ = HPMHooks.source.DB.alloc(file, func, line, type, options, maxlen); } if (HPMHooks.count.HP_DB_alloc_post > 0) { - struct DBMap* (*postHookFunc) (struct DBMap* retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); + struct DBMap * (*postHookFunc) (struct DBMap * retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_alloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, func, line, type, options, maxlen); @@ -3275,11 +3275,11 @@ unsigned int HP_DB_data2ui(struct DBData *data) { } return retVal___; } -void* HP_DB_data2ptr(struct DBData *data) { +void * HP_DB_data2ptr(struct DBData *data) { int hIndex = 0; - void* retVal___ = NULL; + void * retVal___ = NULL; if (HPMHooks.count.HP_DB_data2ptr_pre > 0) { - void* (*preHookFunc) (struct DBData **data); + void * (*preHookFunc) (struct DBData **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_data2ptr_pre[hIndex].func; @@ -3294,7 +3294,7 @@ void* HP_DB_data2ptr(struct DBData *data) { retVal___ = HPMHooks.source.DB.data2ptr(data); } if (HPMHooks.count.HP_DB_data2ptr_post > 0) { - void* (*postHookFunc) (void* retVal___, struct DBData *data); + void * (*postHookFunc) (void * retVal___, struct DBData *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_data2ptr_post[hIndex].func; retVal___ = postHookFunc(retVal___, data); @@ -3702,11 +3702,11 @@ void HP_handlers_sendHotkeyV2Tab(JsonP *json, struct userconfig_userhotkeys_v2 * } return; } -const char* HP_handlers_hotkeyTabIdToName(int tab_id) { +const char * HP_handlers_hotkeyTabIdToName(int tab_id) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_handlers_hotkeyTabIdToName_pre > 0) { - const char* (*preHookFunc) (int *tab_id); + const char * (*preHookFunc) (int *tab_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_handlers_hotkeyTabIdToName_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_handlers_hotkeyTabIdToName_pre[hIndex].func; @@ -3721,7 +3721,7 @@ const char* HP_handlers_hotkeyTabIdToName(int tab_id) { retVal___ = HPMHooks.source.handlers.hotkeyTabIdToName(tab_id); } if (HPMHooks.count.HP_handlers_hotkeyTabIdToName_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int tab_id); + const char * (*postHookFunc) (const char * retVal___, int tab_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_handlers_hotkeyTabIdToName_post; hIndex++) { postHookFunc = HPMHooks.list.HP_handlers_hotkeyTabIdToName_post[hIndex].func; retVal___ = postHookFunc(retVal___, tab_id); @@ -4682,11 +4682,11 @@ void HP_httpparser_init_multi_settings(void) { } return; } -const char* HP_httpparser_get_method_str(struct api_session_data *sd) { +const char * HP_httpparser_get_method_str(struct api_session_data *sd) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_httpparser_get_method_str_pre > 0) { - const char* (*preHookFunc) (struct api_session_data **sd); + const char * (*preHookFunc) (struct api_session_data **sd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_httpparser_get_method_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_httpparser_get_method_str_pre[hIndex].func; @@ -4701,7 +4701,7 @@ const char* HP_httpparser_get_method_str(struct api_session_data *sd) { retVal___ = HPMHooks.source.httpparser.get_method_str(sd); } if (HPMHooks.count.HP_httpparser_get_method_str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct api_session_data *sd); + const char * (*postHookFunc) (const char * retVal___, struct api_session_data *sd); for (hIndex = 0; hIndex < HPMHooks.count.HP_httpparser_get_method_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_httpparser_get_method_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd); @@ -5276,11 +5276,11 @@ void HP_httpsender_final(void) { } return; } -const char* HP_httpsender_http_status_name(enum http_status status) { +const char * HP_httpsender_http_status_name(enum http_status status) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_httpsender_http_status_name_pre > 0) { - const char* (*preHookFunc) (enum http_status *status); + const char * (*preHookFunc) (enum http_status *status); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_httpsender_http_status_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_httpsender_http_status_name_pre[hIndex].func; @@ -5295,7 +5295,7 @@ const char* HP_httpsender_http_status_name(enum http_status status) { retVal___ = HPMHooks.source.httpsender.http_status_name(status); } if (HPMHooks.count.HP_httpsender_http_status_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, enum http_status status); + const char * (*postHookFunc) (const char * retVal___, enum http_status status); for (hIndex = 0; hIndex < HPMHooks.count.HP_httpsender_http_status_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_httpsender_http_status_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, status); @@ -5653,11 +5653,11 @@ void HP_jsonparser_final(void) { } return; } -JsonP* HP_jsonparser_parse(const char *text) { +JsonP * HP_jsonparser_parse(const char *text) { int hIndex = 0; - JsonP* retVal___ = NULL; + JsonP * retVal___ = NULL; if (HPMHooks.count.HP_jsonparser_parse_pre > 0) { - JsonP* (*preHookFunc) (const char **text); + JsonP * (*preHookFunc) (const char **text); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_parse_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonparser_parse_pre[hIndex].func; @@ -5672,7 +5672,7 @@ JsonP* HP_jsonparser_parse(const char *text) { retVal___ = HPMHooks.source.jsonparser.parse(text); } if (HPMHooks.count.HP_jsonparser_parse_post > 0) { - JsonP* (*postHookFunc) (JsonP* retVal___, const char *text); + JsonP * (*postHookFunc) (JsonP * retVal___, const char *text); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_parse_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonparser_parse_post[hIndex].func; retVal___ = postHookFunc(retVal___, text); @@ -5706,11 +5706,11 @@ void HP_jsonparser_print(const JsonP *parent) { } return; } -char* HP_jsonparser_get_string(const JsonP *parent) { +char * HP_jsonparser_get_string(const JsonP *parent) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_jsonparser_get_string_pre > 0) { - char* (*preHookFunc) (const JsonP **parent); + char * (*preHookFunc) (const JsonP **parent); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonparser_get_string_pre[hIndex].func; @@ -5725,7 +5725,7 @@ char* HP_jsonparser_get_string(const JsonP *parent) { retVal___ = HPMHooks.source.jsonparser.get_string(parent); } if (HPMHooks.count.HP_jsonparser_get_string_post > 0) { - char* (*postHookFunc) (char* retVal___, const JsonP *parent); + char * (*postHookFunc) (char * retVal___, const JsonP *parent); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonparser_get_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent); @@ -5733,11 +5733,11 @@ char* HP_jsonparser_get_string(const JsonP *parent) { } return retVal___; } -char* HP_jsonparser_get_formatted_string(const JsonP *parent) { +char * HP_jsonparser_get_formatted_string(const JsonP *parent) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_jsonparser_get_formatted_string_pre > 0) { - char* (*preHookFunc) (const JsonP **parent); + char * (*preHookFunc) (const JsonP **parent); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_formatted_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonparser_get_formatted_string_pre[hIndex].func; @@ -5752,7 +5752,7 @@ char* HP_jsonparser_get_formatted_string(const JsonP *parent) { retVal___ = HPMHooks.source.jsonparser.get_formatted_string(parent); } if (HPMHooks.count.HP_jsonparser_get_formatted_string_post > 0) { - char* (*postHookFunc) (char* retVal___, const JsonP *parent); + char * (*postHookFunc) (char * retVal___, const JsonP *parent); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_formatted_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonparser_get_formatted_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent); @@ -5814,11 +5814,11 @@ bool HP_jsonparser_is_null_or_missing(const JsonP *parent) { } return retVal___; } -JsonP* HP_jsonparser_get(const JsonP *parent, const char *name) { +JsonP * HP_jsonparser_get(const JsonP *parent, const char *name) { int hIndex = 0; - JsonP* retVal___ = NULL; + JsonP * retVal___ = NULL; if (HPMHooks.count.HP_jsonparser_get_pre > 0) { - JsonP* (*preHookFunc) (const JsonP **parent, const char **name); + JsonP * (*preHookFunc) (const JsonP **parent, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonparser_get_pre[hIndex].func; @@ -5833,7 +5833,7 @@ JsonP* HP_jsonparser_get(const JsonP *parent, const char *name) { retVal___ = HPMHooks.source.jsonparser.get(parent, name); } if (HPMHooks.count.HP_jsonparser_get_post > 0) { - JsonP* (*postHookFunc) (JsonP* retVal___, const JsonP *parent, const char *name); + JsonP * (*postHookFunc) (JsonP * retVal___, const JsonP *parent, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonparser_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name); @@ -5868,11 +5868,11 @@ int HP_jsonparser_get_array_size(const JsonP *parent) { } return retVal___; } -char* HP_jsonparser_get_string_value(const JsonP *parent) { +char * HP_jsonparser_get_string_value(const JsonP *parent) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_jsonparser_get_string_value_pre > 0) { - char* (*preHookFunc) (const JsonP **parent); + char * (*preHookFunc) (const JsonP **parent); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_string_value_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonparser_get_string_value_pre[hIndex].func; @@ -5887,7 +5887,7 @@ char* HP_jsonparser_get_string_value(const JsonP *parent) { retVal___ = HPMHooks.source.jsonparser.get_string_value(parent); } if (HPMHooks.count.HP_jsonparser_get_string_value_post > 0) { - char* (*postHookFunc) (char* retVal___, const JsonP *parent); + char * (*postHookFunc) (char * retVal___, const JsonP *parent); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_string_value_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonparser_get_string_value_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent); @@ -5949,11 +5949,11 @@ int HP_jsonparser_get_int_value(const JsonP *parent) { } return retVal___; } -char* HP_jsonparser_get_child_string_value(const JsonP *parent, const char *name) { +char * HP_jsonparser_get_child_string_value(const JsonP *parent, const char *name) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_jsonparser_get_child_string_value_pre > 0) { - char* (*preHookFunc) (const JsonP **parent, const char **name); + char * (*preHookFunc) (const JsonP **parent, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_child_string_value_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonparser_get_child_string_value_pre[hIndex].func; @@ -5968,7 +5968,7 @@ char* HP_jsonparser_get_child_string_value(const JsonP *parent, const char *name retVal___ = HPMHooks.source.jsonparser.get_child_string_value(parent, name); } if (HPMHooks.count.HP_jsonparser_get_child_string_value_post > 0) { - char* (*postHookFunc) (char* retVal___, const JsonP *parent, const char *name); + char * (*postHookFunc) (char * retVal___, const JsonP *parent, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonparser_get_child_string_value_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonparser_get_child_string_value_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name); @@ -6136,11 +6136,11 @@ void HP_jsonwriter_final(void) { } return; } -JsonW* HP_jsonwriter_create(const char *text) { +JsonW * HP_jsonwriter_create(const char *text) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_create_pre > 0) { - JsonW* (*preHookFunc) (const char **text); + JsonW * (*preHookFunc) (const char **text); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_create_pre[hIndex].func; @@ -6155,7 +6155,7 @@ JsonW* HP_jsonwriter_create(const char *text) { retVal___ = HPMHooks.source.jsonwriter.create(text); } if (HPMHooks.count.HP_jsonwriter_create_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, const char *text); + JsonW * (*postHookFunc) (JsonW * retVal___, const char *text); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, text); @@ -6163,11 +6163,11 @@ JsonW* HP_jsonwriter_create(const char *text) { } return retVal___; } -JsonW* HP_jsonwriter_create_empty(void) { +JsonW * HP_jsonwriter_create_empty(void) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_create_empty_pre > 0) { - JsonW* (*preHookFunc) (void); + JsonW * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_create_empty_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_create_empty_pre[hIndex].func; @@ -6182,7 +6182,7 @@ JsonW* HP_jsonwriter_create_empty(void) { retVal___ = HPMHooks.source.jsonwriter.create_empty(); } if (HPMHooks.count.HP_jsonwriter_create_empty_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___); + JsonW * (*postHookFunc) (JsonW * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_create_empty_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_create_empty_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -6190,11 +6190,11 @@ JsonW* HP_jsonwriter_create_empty(void) { } return retVal___; } -JsonW* HP_jsonwriter_new_array(void) { +JsonW * HP_jsonwriter_new_array(void) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_new_array_pre > 0) { - JsonW* (*preHookFunc) (void); + JsonW * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_array_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_new_array_pre[hIndex].func; @@ -6209,7 +6209,7 @@ JsonW* HP_jsonwriter_new_array(void) { retVal___ = HPMHooks.source.jsonwriter.new_array(); } if (HPMHooks.count.HP_jsonwriter_new_array_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___); + JsonW * (*postHookFunc) (JsonW * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_array_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_new_array_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -6217,11 +6217,11 @@ JsonW* HP_jsonwriter_new_array(void) { } return retVal___; } -JsonW* HP_jsonwriter_new_object(void) { +JsonW * HP_jsonwriter_new_object(void) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_new_object_pre > 0) { - JsonW* (*preHookFunc) (void); + JsonW * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_object_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_new_object_pre[hIndex].func; @@ -6236,7 +6236,7 @@ JsonW* HP_jsonwriter_new_object(void) { retVal___ = HPMHooks.source.jsonwriter.new_object(); } if (HPMHooks.count.HP_jsonwriter_new_object_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___); + JsonW * (*postHookFunc) (JsonW * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_object_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_new_object_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -6244,11 +6244,11 @@ JsonW* HP_jsonwriter_new_object(void) { } return retVal___; } -JsonW* HP_jsonwriter_new_string(const char *str) { +JsonW * HP_jsonwriter_new_string(const char *str) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_new_string_pre > 0) { - JsonW* (*preHookFunc) (const char **str); + JsonW * (*preHookFunc) (const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_new_string_pre[hIndex].func; @@ -6263,7 +6263,7 @@ JsonW* HP_jsonwriter_new_string(const char *str) { retVal___ = HPMHooks.source.jsonwriter.new_string(str); } if (HPMHooks.count.HP_jsonwriter_new_string_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, const char *str); + JsonW * (*postHookFunc) (JsonW * retVal___, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_new_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -6271,11 +6271,11 @@ JsonW* HP_jsonwriter_new_string(const char *str) { } return retVal___; } -JsonW* HP_jsonwriter_new_number(int number) { +JsonW * HP_jsonwriter_new_number(int number) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_new_number_pre > 0) { - JsonW* (*preHookFunc) (int *number); + JsonW * (*preHookFunc) (int *number); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_number_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_new_number_pre[hIndex].func; @@ -6290,7 +6290,7 @@ JsonW* HP_jsonwriter_new_number(int number) { retVal___ = HPMHooks.source.jsonwriter.new_number(number); } if (HPMHooks.count.HP_jsonwriter_new_number_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, int number); + JsonW * (*postHookFunc) (JsonW * retVal___, int number); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_number_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_new_number_post[hIndex].func; retVal___ = postHookFunc(retVal___, number); @@ -6298,11 +6298,11 @@ JsonW* HP_jsonwriter_new_number(int number) { } return retVal___; } -JsonW* HP_jsonwriter_new_null(void) { +JsonW * HP_jsonwriter_new_null(void) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_new_null_pre > 0) { - JsonW* (*preHookFunc) (void); + JsonW * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_null_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_new_null_pre[hIndex].func; @@ -6317,7 +6317,7 @@ JsonW* HP_jsonwriter_new_null(void) { retVal___ = HPMHooks.source.jsonwriter.new_null(); } if (HPMHooks.count.HP_jsonwriter_new_null_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___); + JsonW * (*postHookFunc) (JsonW * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_new_null_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_new_null_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -6379,11 +6379,11 @@ JsonWBool HP_jsonwriter_add_node_to_array(JsonW *parent, JsonW *child) { } return retVal___; } -JsonW* HP_jsonwriter_add_new_array(JsonW *parent, const char *name) { +JsonW * HP_jsonwriter_add_new_array(JsonW *parent, const char *name) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_array_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent, const char **name); + JsonW * (*preHookFunc) (JsonW **parent, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_array_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_array_pre[hIndex].func; @@ -6398,7 +6398,7 @@ JsonW* HP_jsonwriter_add_new_array(JsonW *parent, const char *name) { retVal___ = HPMHooks.source.jsonwriter.add_new_array(parent, name); } if (HPMHooks.count.HP_jsonwriter_add_new_array_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent, const char *name); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_array_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_array_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name); @@ -6406,11 +6406,11 @@ JsonW* HP_jsonwriter_add_new_array(JsonW *parent, const char *name) { } return retVal___; } -JsonW* HP_jsonwriter_add_new_object(JsonW *parent, const char *name) { +JsonW * HP_jsonwriter_add_new_object(JsonW *parent, const char *name) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_object_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent, const char **name); + JsonW * (*preHookFunc) (JsonW **parent, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_object_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_object_pre[hIndex].func; @@ -6425,7 +6425,7 @@ JsonW* HP_jsonwriter_add_new_object(JsonW *parent, const char *name) { retVal___ = HPMHooks.source.jsonwriter.add_new_object(parent, name); } if (HPMHooks.count.HP_jsonwriter_add_new_object_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent, const char *name); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_object_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_object_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name); @@ -6433,11 +6433,11 @@ JsonW* HP_jsonwriter_add_new_object(JsonW *parent, const char *name) { } return retVal___; } -JsonW* HP_jsonwriter_add_new_null(JsonW *parent, const char *name) { +JsonW * HP_jsonwriter_add_new_null(JsonW *parent, const char *name) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_null_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent, const char **name); + JsonW * (*preHookFunc) (JsonW **parent, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_null_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_null_pre[hIndex].func; @@ -6452,7 +6452,7 @@ JsonW* HP_jsonwriter_add_new_null(JsonW *parent, const char *name) { retVal___ = HPMHooks.source.jsonwriter.add_new_null(parent, name); } if (HPMHooks.count.HP_jsonwriter_add_new_null_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent, const char *name); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_null_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_null_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name); @@ -6460,11 +6460,11 @@ JsonW* HP_jsonwriter_add_new_null(JsonW *parent, const char *name) { } return retVal___; } -JsonW* HP_jsonwriter_add_new_number(JsonW *parent, const char *name, int number) { +JsonW * HP_jsonwriter_add_new_number(JsonW *parent, const char *name, int number) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_number_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent, const char **name, int *number); + JsonW * (*preHookFunc) (JsonW **parent, const char **name, int *number); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_number_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_number_pre[hIndex].func; @@ -6479,7 +6479,7 @@ JsonW* HP_jsonwriter_add_new_number(JsonW *parent, const char *name, int number) retVal___ = HPMHooks.source.jsonwriter.add_new_number(parent, name, number); } if (HPMHooks.count.HP_jsonwriter_add_new_number_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent, const char *name, int number); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent, const char *name, int number); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_number_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_number_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name, number); @@ -6487,11 +6487,11 @@ JsonW* HP_jsonwriter_add_new_number(JsonW *parent, const char *name, int number) } return retVal___; } -JsonW* HP_jsonwriter_add_new_string(JsonW *parent, const char *name, const char *str) { +JsonW * HP_jsonwriter_add_new_string(JsonW *parent, const char *name, const char *str) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_string_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent, const char **name, const char **str); + JsonW * (*preHookFunc) (JsonW **parent, const char **name, const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_string_pre[hIndex].func; @@ -6506,7 +6506,7 @@ JsonW* HP_jsonwriter_add_new_string(JsonW *parent, const char *name, const char retVal___ = HPMHooks.source.jsonwriter.add_new_string(parent, name, str); } if (HPMHooks.count.HP_jsonwriter_add_new_string_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent, const char *name, const char *str); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent, const char *name, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name, str); @@ -6514,11 +6514,11 @@ JsonW* HP_jsonwriter_add_new_string(JsonW *parent, const char *name, const char } return retVal___; } -JsonW* HP_jsonwriter_add_new_string_to_array(JsonW *parent, const char *str) { +JsonW * HP_jsonwriter_add_new_string_to_array(JsonW *parent, const char *str) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_string_to_array_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent, const char **str); + JsonW * (*preHookFunc) (JsonW **parent, const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_string_to_array_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_string_to_array_pre[hIndex].func; @@ -6533,7 +6533,7 @@ JsonW* HP_jsonwriter_add_new_string_to_array(JsonW *parent, const char *str) { retVal___ = HPMHooks.source.jsonwriter.add_new_string_to_array(parent, str); } if (HPMHooks.count.HP_jsonwriter_add_new_string_to_array_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent, const char *str); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_string_to_array_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_string_to_array_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, str); @@ -6541,11 +6541,11 @@ JsonW* HP_jsonwriter_add_new_string_to_array(JsonW *parent, const char *str) { } return retVal___; } -JsonW* HP_jsonwriter_add_new_object_to_array(JsonW *parent) { +JsonW * HP_jsonwriter_add_new_object_to_array(JsonW *parent) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_add_new_object_to_array_pre > 0) { - JsonW* (*preHookFunc) (JsonW **parent); + JsonW * (*preHookFunc) (JsonW **parent); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_object_to_array_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_add_new_object_to_array_pre[hIndex].func; @@ -6560,7 +6560,7 @@ JsonW* HP_jsonwriter_add_new_object_to_array(JsonW *parent) { retVal___ = HPMHooks.source.jsonwriter.add_new_object_to_array(parent); } if (HPMHooks.count.HP_jsonwriter_add_new_object_to_array_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, JsonW *parent); + JsonW * (*postHookFunc) (JsonW * retVal___, JsonW *parent); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_add_new_object_to_array_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_add_new_object_to_array_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent); @@ -6594,11 +6594,11 @@ void HP_jsonwriter_print(const JsonW *parent) { } return; } -JsonW* HP_jsonwriter_get(const JsonW *parent, const char *name) { +JsonW * HP_jsonwriter_get(const JsonW *parent, const char *name) { int hIndex = 0; - JsonW* retVal___ = NULL; + JsonW * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_get_pre > 0) { - JsonW* (*preHookFunc) (const JsonW **parent, const char **name); + JsonW * (*preHookFunc) (const JsonW **parent, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_get_pre[hIndex].func; @@ -6613,7 +6613,7 @@ JsonW* HP_jsonwriter_get(const JsonW *parent, const char *name) { retVal___ = HPMHooks.source.jsonwriter.get(parent, name); } if (HPMHooks.count.HP_jsonwriter_get_post > 0) { - JsonW* (*postHookFunc) (JsonW* retVal___, const JsonW *parent, const char *name); + JsonW * (*postHookFunc) (JsonW * retVal___, const JsonW *parent, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name); @@ -6621,11 +6621,11 @@ JsonW* HP_jsonwriter_get(const JsonW *parent, const char *name) { } return retVal___; } -char* HP_jsonwriter_get_string(const JsonW *parent) { +char * HP_jsonwriter_get_string(const JsonW *parent) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_get_string_pre > 0) { - char* (*preHookFunc) (const JsonW **parent); + char * (*preHookFunc) (const JsonW **parent); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_get_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_get_string_pre[hIndex].func; @@ -6640,7 +6640,7 @@ char* HP_jsonwriter_get_string(const JsonW *parent) { retVal___ = HPMHooks.source.jsonwriter.get_string(parent); } if (HPMHooks.count.HP_jsonwriter_get_string_post > 0) { - char* (*postHookFunc) (char* retVal___, const JsonW *parent); + char * (*postHookFunc) (char * retVal___, const JsonW *parent); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_get_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_get_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent); @@ -6648,11 +6648,11 @@ char* HP_jsonwriter_get_string(const JsonW *parent) { } return retVal___; } -char* HP_jsonwriter_get_formatted_string(const JsonW *parent) { +char * HP_jsonwriter_get_formatted_string(const JsonW *parent) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_jsonwriter_get_formatted_string_pre > 0) { - char* (*preHookFunc) (const JsonW **parent); + char * (*preHookFunc) (const JsonW **parent); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_get_formatted_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_jsonwriter_get_formatted_string_pre[hIndex].func; @@ -6667,7 +6667,7 @@ char* HP_jsonwriter_get_formatted_string(const JsonW *parent) { retVal___ = HPMHooks.source.jsonwriter.get_formatted_string(parent); } if (HPMHooks.count.HP_jsonwriter_get_formatted_string_post > 0) { - char* (*postHookFunc) (char* retVal___, const JsonW *parent); + char * (*postHookFunc) (char * retVal___, const JsonW *parent); for (hIndex = 0; hIndex < HPMHooks.count.HP_jsonwriter_get_formatted_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_jsonwriter_get_formatted_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent); @@ -7179,11 +7179,11 @@ int HP_libconfig_setting_get_bool(const struct config_setting_t *setting) { } return retVal___; } -const char* HP_libconfig_setting_get_string(const struct config_setting_t *setting) { +const char * HP_libconfig_setting_get_string(const struct config_setting_t *setting) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting); + const char * (*preHookFunc) (const struct config_setting_t **setting); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_pre[hIndex].func; @@ -7198,7 +7198,7 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti retVal___ = HPMHooks.source.libconfig.setting_get_string(setting); } if (HPMHooks.count.HP_libconfig_setting_get_string_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting); @@ -7206,11 +7206,11 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_pre[hIndex].func; @@ -7225,7 +7225,7 @@ struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *se retVal___ = HPMHooks.source.libconfig.setting_lookup(setting, name); } if (HPMHooks.count.HP_libconfig_setting_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -7665,11 +7665,11 @@ int HP_libconfig_setting_get_bool_elem(const struct config_setting_t *setting, i } return retVal___; } -const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { +const char * HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_elem_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting, int *idx); + const char * (*preHookFunc) (const struct config_setting_t **setting, int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_pre[hIndex].func; @@ -7684,7 +7684,7 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * retVal___ = HPMHooks.source.libconfig.setting_get_string_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_string_elem_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting, int idx); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -7692,11 +7692,11 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_pre[hIndex].func; @@ -7711,7 +7711,7 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting retVal___ = HPMHooks.source.libconfig.setting_set_int_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -7719,11 +7719,11 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { +struct config_setting_t * HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_pre[hIndex].func; @@ -7738,7 +7738,7 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_int64_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int64 value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int64 value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -7746,11 +7746,11 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { +struct config_setting_t * HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_float_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_pre[hIndex].func; @@ -7765,7 +7765,7 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_float_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_float_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, double value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, double value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -7773,11 +7773,11 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_pre[hIndex].func; @@ -7792,7 +7792,7 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin retVal___ = HPMHooks.source.libconfig.setting_set_bool_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -7800,11 +7800,11 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { +struct config_setting_t * HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_string_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_pre[hIndex].func; @@ -7819,7 +7819,7 @@ struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_sett retVal___ = HPMHooks.source.libconfig.setting_set_string_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_string_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, const char *value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, const char *value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -7881,11 +7881,11 @@ int HP_libconfig_setting_length(const struct config_setting_t *setting) { } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { +struct config_setting_t * HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_pre[hIndex].func; @@ -7900,7 +7900,7 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti retVal___ = HPMHooks.source.libconfig.setting_get_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, unsigned int idx); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, unsigned int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -7908,11 +7908,11 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_member_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_pre[hIndex].func; @@ -7927,7 +7927,7 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set retVal___ = HPMHooks.source.libconfig.setting_get_member(setting, name); } if (HPMHooks.count.HP_libconfig_setting_get_member_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -7935,11 +7935,11 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set } return retVal___; } -struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { +struct config_setting_t * HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_add_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_add_pre[hIndex].func; @@ -7954,7 +7954,7 @@ struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *paren retVal___ = HPMHooks.source.libconfig.setting_add(parent, name, type); } if (HPMHooks.count.HP_libconfig_setting_add_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *parent, const char *name, int type); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *parent, const char *name, int type); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_add_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name, type); @@ -8042,11 +8042,11 @@ void HP_libconfig_setting_set_hook(struct config_setting_t *setting, void *hook) } return; } -struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, const char *filepath) { +struct config_setting_t * HP_libconfig_lookup(const struct config_t *config, const char *filepath) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_t **config, const char **filepath); + struct config_setting_t * (*preHookFunc) (const struct config_t **config, const char **filepath); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_lookup_pre[hIndex].func; @@ -8061,7 +8061,7 @@ struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, cons retVal___ = HPMHooks.source.libconfig.lookup(config, filepath); } if (HPMHooks.count.HP_libconfig_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_t *config, const char *filepath); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_t *config, const char *filepath); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, config, filepath); @@ -8686,11 +8686,11 @@ void HP_md5_salt(int len, char *output) { return; } /* mutex_interface */ -struct mutex_data* HP_mutex_create(void) { +struct mutex_data * HP_mutex_create(void) { int hIndex = 0; - struct mutex_data* retVal___ = NULL; + struct mutex_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_create_pre > 0) { - struct mutex_data* (*preHookFunc) (void); + struct mutex_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_create_pre[hIndex].func; @@ -8705,7 +8705,7 @@ struct mutex_data* HP_mutex_create(void) { retVal___ = HPMHooks.source.mutex.create(); } if (HPMHooks.count.HP_mutex_create_post > 0) { - struct mutex_data* (*postHookFunc) (struct mutex_data* retVal___); + struct mutex_data * (*postHookFunc) (struct mutex_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -8818,11 +8818,11 @@ void HP_mutex_unlock(struct mutex_data *m) { } return; } -struct cond_data* HP_mutex_cond_create(void) { +struct cond_data * HP_mutex_cond_create(void) { int hIndex = 0; - struct cond_data* retVal___ = NULL; + struct cond_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_cond_create_pre > 0) { - struct cond_data* (*preHookFunc) (void); + struct cond_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_cond_create_pre[hIndex].func; @@ -8837,7 +8837,7 @@ struct cond_data* HP_mutex_cond_create(void) { retVal___ = HPMHooks.source.mutex.cond_create(); } if (HPMHooks.count.HP_mutex_cond_create_post > 0) { - struct cond_data* (*postHookFunc) (struct cond_data* retVal___); + struct cond_data * (*postHookFunc) (struct cond_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_cond_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -9537,11 +9537,11 @@ int HP_showmsg_showMessageV(const char *string, va_list ap) { } return retVal___; } -const char* HP_showmsg_getLogFileName(void) { +const char * HP_showmsg_getLogFileName(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_showmsg_getLogFileName_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_pre[hIndex].func; @@ -9556,7 +9556,7 @@ const char* HP_showmsg_getLogFileName(void) { retVal___ = HPMHooks.source.showmsg.getLogFileName(); } if (HPMHooks.count.HP_showmsg_getLogFileName_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_post; hIndex++) { postHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -10227,11 +10227,11 @@ uint32 HP_sockt_host2ip(const char *hostname) { } return retVal___; } -const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { +const char * HP_sockt_ip2str(uint32 ip, char *ip_str) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sockt_ip2str_pre > 0) { - const char* (*preHookFunc) (uint32 *ip, char **ip_str); + const char * (*preHookFunc) (uint32 *ip, char **ip_str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_ip2str_pre[hIndex].func; @@ -10246,7 +10246,7 @@ const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { retVal___ = HPMHooks.source.sockt.ip2str(ip, ip_str); } if (HPMHooks.count.HP_sockt_ip2str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint32 ip, char *ip_str); + const char * (*postHookFunc) (const char * retVal___, uint32 ip, char *ip_str); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_ip2str_post[hIndex].func; retVal___ = postHookFunc(retVal___, ip, ip_str); @@ -10985,11 +10985,11 @@ void HP_SQL_Free(struct Sql *self) { } return; } -struct Sql* HP_SQL_Malloc(void) { +struct Sql * HP_SQL_Malloc(void) { int hIndex = 0; - struct Sql* retVal___ = NULL; + struct Sql * retVal___ = NULL; if (HPMHooks.count.HP_SQL_Malloc_pre > 0) { - struct Sql* (*preHookFunc) (void); + struct Sql * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_Malloc_pre[hIndex].func; @@ -11004,7 +11004,7 @@ struct Sql* HP_SQL_Malloc(void) { retVal___ = HPMHooks.source.SQL.Malloc(); } if (HPMHooks.count.HP_SQL_Malloc_post > 0) { - struct Sql* (*postHookFunc) (struct Sql* retVal___); + struct Sql * (*postHookFunc) (struct Sql * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11012,11 +11012,11 @@ struct Sql* HP_SQL_Malloc(void) { } return retVal___; } -struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { +struct SqlStmt * HP_SQL_StmtMalloc(struct Sql *sql) { int hIndex = 0; - struct SqlStmt* retVal___ = NULL; + struct SqlStmt * retVal___ = NULL; if (HPMHooks.count.HP_SQL_StmtMalloc_pre > 0) { - struct SqlStmt* (*preHookFunc) (struct Sql **sql); + struct SqlStmt * (*preHookFunc) (struct Sql **sql); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_pre[hIndex].func; @@ -11031,7 +11031,7 @@ struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { retVal___ = HPMHooks.source.SQL.StmtMalloc(sql); } if (HPMHooks.count.HP_SQL_StmtMalloc_post > 0) { - struct SqlStmt* (*postHookFunc) (struct SqlStmt* retVal___, struct Sql *sql); + struct SqlStmt * (*postHookFunc) (struct SqlStmt * retVal___, struct Sql *sql); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, sql); @@ -11394,11 +11394,11 @@ void HP_SQL_StmtShowDebug_(struct SqlStmt *self, const char *debug_file, const u return; } /* stringbuf_interface */ -StringBuf* HP_StrBuf_Malloc(void) { +StringBuf * HP_StrBuf_Malloc(void) { int hIndex = 0; - StringBuf* retVal___ = NULL; + StringBuf * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Malloc_pre > 0) { - StringBuf* (*preHookFunc) (void); + StringBuf * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Malloc_pre[hIndex].func; @@ -11413,7 +11413,7 @@ StringBuf* HP_StrBuf_Malloc(void) { retVal___ = HPMHooks.source.StrBuf.Malloc(); } if (HPMHooks.count.HP_StrBuf_Malloc_post > 0) { - StringBuf* (*postHookFunc) (StringBuf* retVal___); + StringBuf * (*postHookFunc) (StringBuf * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11561,11 +11561,11 @@ int HP_StrBuf_Length(StringBuf *self) { } return retVal___; } -char* HP_StrBuf_Value(StringBuf *self) { +char * HP_StrBuf_Value(StringBuf *self) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Value_pre > 0) { - char* (*preHookFunc) (StringBuf **self); + char * (*preHookFunc) (StringBuf **self); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Value_pre[hIndex].func; @@ -11580,7 +11580,7 @@ char* HP_StrBuf_Value(StringBuf *self) { retVal___ = HPMHooks.source.StrBuf.Value(self); } if (HPMHooks.count.HP_StrBuf_Value_post > 0) { - char* (*postHookFunc) (char* retVal___, StringBuf *self); + char * (*postHookFunc) (char * retVal___, StringBuf *self); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Value_post[hIndex].func; retVal___ = postHookFunc(retVal___, self); @@ -11667,11 +11667,11 @@ void HP_StrBuf_Free(StringBuf *self) { return; } /* strlib_interface */ -char* HP_strlib_jstrescape(char *pt) { +char * HP_strlib_jstrescape(char *pt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescape_pre > 0) { - char* (*preHookFunc) (char **pt); + char * (*preHookFunc) (char **pt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescape_pre[hIndex].func; @@ -11686,7 +11686,7 @@ char* HP_strlib_jstrescape(char *pt) { retVal___ = HPMHooks.source.strlib.jstrescape(pt); } if (HPMHooks.count.HP_strlib_jstrescape_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt); + char * (*postHookFunc) (char * retVal___, char *pt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescape_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt); @@ -11694,11 +11694,11 @@ char* HP_strlib_jstrescape(char *pt) { } return retVal___; } -char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { +char * HP_strlib_jstrescapecpy(char *pt, const char *spt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescapecpy_pre > 0) { - char* (*preHookFunc) (char **pt, const char **spt); + char * (*preHookFunc) (char **pt, const char **spt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_pre[hIndex].func; @@ -11713,7 +11713,7 @@ char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { retVal___ = HPMHooks.source.strlib.jstrescapecpy(pt, spt); } if (HPMHooks.count.HP_strlib_jstrescapecpy_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt, const char *spt); + char * (*postHookFunc) (char * retVal___, char *pt, const char *spt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt, spt); @@ -11775,11 +11775,11 @@ int HP_strlib_remove_control_chars_(char *str) { } return retVal___; } -char* HP_strlib_trim_(char *str) { +char * HP_strlib_trim_(char *str) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_trim__pre > 0) { - char* (*preHookFunc) (char **str); + char * (*preHookFunc) (char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_trim__pre[hIndex].func; @@ -11794,7 +11794,7 @@ char* HP_strlib_trim_(char *str) { retVal___ = HPMHooks.source.strlib.trim_(str); } if (HPMHooks.count.HP_strlib_trim__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str); + char * (*postHookFunc) (char * retVal___, char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_trim__post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -11802,11 +11802,11 @@ char* HP_strlib_trim_(char *str) { } return retVal___; } -char* HP_strlib_normalize_name_(char *str, const char *delims) { +char * HP_strlib_normalize_name_(char *str, const char *delims) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_normalize_name__pre > 0) { - char* (*preHookFunc) (char **str, const char **delims); + char * (*preHookFunc) (char **str, const char **delims); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_normalize_name__pre[hIndex].func; @@ -11821,7 +11821,7 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { retVal___ = HPMHooks.source.strlib.normalize_name_(str, delims); } if (HPMHooks.count.HP_strlib_normalize_name__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str, const char *delims); + char * (*postHookFunc) (char * retVal___, char *str, const char *delims); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_normalize_name__post[hIndex].func; retVal___ = postHookFunc(retVal___, str, delims); @@ -11829,11 +11829,11 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { } return retVal___; } -const char* HP_strlib_stristr_(const char *haystack, const char *needle) { +const char * HP_strlib_stristr_(const char *haystack, const char *needle) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_stristr__pre > 0) { - const char* (*preHookFunc) (const char **haystack, const char **needle); + const char * (*preHookFunc) (const char **haystack, const char **needle); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_stristr__pre[hIndex].func; @@ -11848,7 +11848,7 @@ const char* HP_strlib_stristr_(const char *haystack, const char *needle) { retVal___ = HPMHooks.source.strlib.stristr_(haystack, needle); } if (HPMHooks.count.HP_strlib_stristr__post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *haystack, const char *needle); + const char * (*postHookFunc) (const char * retVal___, const char *haystack, const char *needle); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_stristr__post[hIndex].func; retVal___ = postHookFunc(retVal___, haystack, needle); @@ -11883,11 +11883,11 @@ size_t HP_strlib_strnlen_(const char *string, size_t maxlen) { } return retVal___; } -char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { +char * HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_strtok_r__pre > 0) { - char* (*preHookFunc) (char **s1, const char **s2, char ***lasts); + char * (*preHookFunc) (char **s1, const char **s2, char ***lasts); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_strtok_r__pre[hIndex].func; @@ -11902,7 +11902,7 @@ char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { retVal___ = HPMHooks.source.strlib.strtok_r_(s1, s2, lasts); } if (HPMHooks.count.HP_strlib_strtok_r__post > 0) { - char* (*postHookFunc) (char* retVal___, char *s1, const char *s2, char **lasts); + char * (*postHookFunc) (char * retVal___, char *s1, const char *s2, char **lasts); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_strtok_r__post[hIndex].func; retVal___ = postHookFunc(retVal___, s1, s2, lasts); @@ -11964,11 +11964,11 @@ int HP_strlib_config_switch_(const char *str) { } return retVal___; } -char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { +char * HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_safestrncpy__pre > 0) { - char* (*preHookFunc) (char **dst, const char **src, size_t *n); + char * (*preHookFunc) (char **dst, const char **src, size_t *n); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_safestrncpy__pre[hIndex].func; @@ -11983,7 +11983,7 @@ char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { retVal___ = HPMHooks.source.strlib.safestrncpy_(dst, src, n); } if (HPMHooks.count.HP_strlib_safestrncpy__post > 0) { - char* (*postHookFunc) (char* retVal___, char *dst, const char *src, size_t n); + char * (*postHookFunc) (char * retVal___, char *dst, const char *src, size_t n); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_safestrncpy__post[hIndex].func; retVal___ = postHookFunc(retVal___, dst, src, n); @@ -12208,11 +12208,11 @@ size_t HP_sv_unescape_c(char *out_dest, const char *src, size_t len) { } return retVal___; } -const char* HP_sv_skip_escaped_c(const char *p) { +const char * HP_sv_skip_escaped_c(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sv_skip_escaped_c_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_pre[hIndex].func; @@ -12227,7 +12227,7 @@ const char* HP_sv_skip_escaped_c(const char *p) { retVal___ = HPMHooks.source.sv.skip_escaped_c(p); } if (HPMHooks.count.HP_sv_skip_escaped_c_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -12290,11 +12290,11 @@ long HP_sysinfo_getpagesize(void) { } return retVal___; } -const char* HP_sysinfo_platform(void) { +const char * HP_sysinfo_platform(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_platform_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_platform_pre[hIndex].func; @@ -12309,7 +12309,7 @@ const char* HP_sysinfo_platform(void) { retVal___ = HPMHooks.source.sysinfo.platform(); } if (HPMHooks.count.HP_sysinfo_platform_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_platform_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12317,11 +12317,11 @@ const char* HP_sysinfo_platform(void) { } return retVal___; } -const char* HP_sysinfo_osversion(void) { +const char * HP_sysinfo_osversion(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_osversion_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_osversion_pre[hIndex].func; @@ -12336,7 +12336,7 @@ const char* HP_sysinfo_osversion(void) { retVal___ = HPMHooks.source.sysinfo.osversion(); } if (HPMHooks.count.HP_sysinfo_osversion_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_osversion_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12344,11 +12344,11 @@ const char* HP_sysinfo_osversion(void) { } return retVal___; } -const char* HP_sysinfo_cpu(void) { +const char * HP_sysinfo_cpu(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cpu_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cpu_pre[hIndex].func; @@ -12363,7 +12363,7 @@ const char* HP_sysinfo_cpu(void) { retVal___ = HPMHooks.source.sysinfo.cpu(); } if (HPMHooks.count.HP_sysinfo_cpu_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cpu_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12398,11 +12398,11 @@ int HP_sysinfo_cpucores(void) { } return retVal___; } -const char* HP_sysinfo_arch(void) { +const char * HP_sysinfo_arch(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_arch_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_arch_pre[hIndex].func; @@ -12417,7 +12417,7 @@ const char* HP_sysinfo_arch(void) { retVal___ = HPMHooks.source.sysinfo.arch(); } if (HPMHooks.count.HP_sysinfo_arch_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_arch_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12452,11 +12452,11 @@ bool HP_sysinfo_is64bit(void) { } return retVal___; } -const char* HP_sysinfo_compiler(void) { +const char * HP_sysinfo_compiler(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_compiler_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_compiler_pre[hIndex].func; @@ -12471,7 +12471,7 @@ const char* HP_sysinfo_compiler(void) { retVal___ = HPMHooks.source.sysinfo.compiler(); } if (HPMHooks.count.HP_sysinfo_compiler_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_compiler_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12479,11 +12479,11 @@ const char* HP_sysinfo_compiler(void) { } return retVal___; } -const char* HP_sysinfo_cflags(void) { +const char * HP_sysinfo_cflags(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cflags_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cflags_pre[hIndex].func; @@ -12498,7 +12498,7 @@ const char* HP_sysinfo_cflags(void) { retVal___ = HPMHooks.source.sysinfo.cflags(); } if (HPMHooks.count.HP_sysinfo_cflags_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cflags_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12506,11 +12506,11 @@ const char* HP_sysinfo_cflags(void) { } return retVal___; } -const char* HP_sysinfo_time(void) { +const char * HP_sysinfo_time(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_time_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_time_pre[hIndex].func; @@ -12525,7 +12525,7 @@ const char* HP_sysinfo_time(void) { retVal___ = HPMHooks.source.sysinfo.time(); } if (HPMHooks.count.HP_sysinfo_time_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_time_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12533,11 +12533,11 @@ const char* HP_sysinfo_time(void) { } return retVal___; } -const char* HP_sysinfo_vcstype(void) { +const char * HP_sysinfo_vcstype(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcstype_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcstype_pre[hIndex].func; @@ -12552,7 +12552,7 @@ const char* HP_sysinfo_vcstype(void) { retVal___ = HPMHooks.source.sysinfo.vcstype(); } if (HPMHooks.count.HP_sysinfo_vcstype_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcstype_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12587,11 +12587,11 @@ int HP_sysinfo_vcstypeid(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_src(void) { +const char * HP_sysinfo_vcsrevision_src(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_src_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_pre[hIndex].func; @@ -12606,7 +12606,7 @@ const char* HP_sysinfo_vcsrevision_src(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_src(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_src_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12614,11 +12614,11 @@ const char* HP_sysinfo_vcsrevision_src(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_scripts(void) { +const char * HP_sysinfo_vcsrevision_scripts(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_pre[hIndex].func; @@ -12633,7 +12633,7 @@ const char* HP_sysinfo_vcsrevision_scripts(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_scripts(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12748,11 +12748,11 @@ bool HP_sysinfo_is_superuser(void) { } return retVal___; } -const char* HP_sysinfo_zlib(void) { +const char * HP_sysinfo_zlib(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_zlib_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_zlib_pre[hIndex].func; @@ -12767,7 +12767,7 @@ const char* HP_sysinfo_zlib(void) { retVal___ = HPMHooks.source.sysinfo.zlib(); } if (HPMHooks.count.HP_sysinfo_zlib_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_zlib_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -12880,11 +12880,11 @@ void HP_thread_final(void) { } return; } -struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { +struct thread_handle * HP_thread_create(threadFunc entry_point, void *param) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_pre[hIndex].func; @@ -12899,7 +12899,7 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { retVal___ = HPMHooks.source.thread.create(entry_point, param); } if (HPMHooks.count.HP_thread_create_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param); @@ -12907,11 +12907,11 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { } return retVal___; } -struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { +struct thread_handle * HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_opt_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_opt_pre[hIndex].func; @@ -12926,7 +12926,7 @@ struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, retVal___ = HPMHooks.source.thread.create_opt(entry_point, param, stack_size, prio); } if (HPMHooks.count.HP_thread_create_opt_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_opt_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param, stack_size, prio); @@ -12960,11 +12960,11 @@ void HP_thread_destroy(struct thread_handle *handle) { } return; } -struct thread_handle* HP_thread_self(void) { +struct thread_handle * HP_thread_self(void) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_self_pre > 0) { - struct thread_handle* (*preHookFunc) (void); + struct thread_handle * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_self_pre[hIndex].func; @@ -12979,7 +12979,7 @@ struct thread_handle* HP_thread_self(void) { retVal___ = HPMHooks.source.thread.self(); } if (HPMHooks.count.HP_thread_self_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_self_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -13229,11 +13229,11 @@ int HP_timer_add_interval(int64 tick, TimerFunc func, int id, intptr_t data, int } return retVal___; } -const struct TimerData* HP_timer_get(int tid) { +const struct TimerData * HP_timer_get(int tid) { int hIndex = 0; - const struct TimerData* retVal___ = NULL; + const struct TimerData * retVal___ = NULL; if (HPMHooks.count.HP_timer_get_pre > 0) { - const struct TimerData* (*preHookFunc) (int *tid); + const struct TimerData * (*preHookFunc) (int *tid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_timer_get_pre[hIndex].func; @@ -13248,7 +13248,7 @@ const struct TimerData* HP_timer_get(int tid) { retVal___ = HPMHooks.source.timer.get(tid); } if (HPMHooks.count.HP_timer_get_post > 0) { - const struct TimerData* (*postHookFunc) (const struct TimerData* retVal___, int tid); + const struct TimerData * (*postHookFunc) (const struct TimerData * retVal___, int tid); for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_timer_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, tid); diff --git a/src/plugins/HPMHooking/HPMHooking_api.sources.inc b/src/plugins/HPMHooking/HPMHooking_api.sources.inc index 6b0d069b3..332681abd 100644 --- a/src/plugins/HPMHooking/HPMHooking_api.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_api.sources.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc index 2280084f0..5ade9a4d4 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.HPMHooksCore.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc index e17ef0505..7a9ef3053 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.HookingPoints.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc index b4b3b3464..c44ce0a35 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.Hooks.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -79,11 +79,11 @@ bool HP_HCache_check(const char *file) { } return retVal___; } -FILE* HP_HCache_open(const char *file, const char *opt) { +FILE * HP_HCache_open(const char *file, const char *opt) { int hIndex = 0; - FILE* retVal___ = NULL; + FILE * retVal___ = NULL; if (HPMHooks.count.HP_HCache_open_pre > 0) { - FILE* (*preHookFunc) (const char **file, const char **opt); + FILE * (*preHookFunc) (const char **file, const char **opt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_HCache_open_pre[hIndex].func; @@ -98,7 +98,7 @@ FILE* HP_HCache_open(const char *file, const char *opt) { retVal___ = HPMHooks.source.HCache.open(file, opt); } if (HPMHooks.count.HP_HCache_open_post > 0) { - FILE* (*postHookFunc) (FILE* retVal___, const char *file, const char *opt); + FILE * (*postHookFunc) (FILE * retVal___, const char *file, const char *opt); for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_post; hIndex++) { postHookFunc = HPMHooks.list.HP_HCache_open_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, opt); @@ -187,11 +187,11 @@ void HP_capiif_final(void) { } return; } -struct online_char_data* HP_capiif_get_online_character(const struct PACKET_API_PROXY *p) { +struct online_char_data * HP_capiif_get_online_character(const struct PACKET_API_PROXY *p) { int hIndex = 0; - struct online_char_data* retVal___ = NULL; + struct online_char_data * retVal___ = NULL; if (HPMHooks.count.HP_capiif_get_online_character_pre > 0) { - struct online_char_data* (*preHookFunc) (const struct PACKET_API_PROXY **p); + struct online_char_data * (*preHookFunc) (const struct PACKET_API_PROXY **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_capiif_get_online_character_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_capiif_get_online_character_pre[hIndex].func; @@ -206,7 +206,7 @@ struct online_char_data* HP_capiif_get_online_character(const struct PACKET_API_ retVal___ = HPMHooks.source.capiif.get_online_character(p); } if (HPMHooks.count.HP_capiif_get_online_character_post > 0) { - struct online_char_data* (*postHookFunc) (struct online_char_data* retVal___, const struct PACKET_API_PROXY *p); + struct online_char_data * (*postHookFunc) (struct online_char_data * retVal___, const struct PACKET_API_PROXY *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_capiif_get_online_character_post; hIndex++) { postHookFunc = HPMHooks.list.HP_capiif_get_online_character_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -5446,11 +5446,11 @@ bool HP_cmdline_arg_next_value(const char *name, int current_arg, int argc) { } return retVal___; } -const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { +const char * HP_cmdline_arg_source(struct CmdlineArgData *arg) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_cmdline_arg_source_pre > 0) { - const char* (*preHookFunc) (struct CmdlineArgData **arg); + const char * (*preHookFunc) (struct CmdlineArgData **arg); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_cmdline_arg_source_pre[hIndex].func; @@ -5465,7 +5465,7 @@ const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { retVal___ = HPMHooks.source.cmdline.arg_source(arg); } if (HPMHooks.count.HP_cmdline_arg_source_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct CmdlineArgData *arg); + const char * (*postHookFunc) (const char * retVal___, struct CmdlineArgData *arg); for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_post; hIndex++) { postHookFunc = HPMHooks.list.HP_cmdline_arg_source_post[hIndex].func; retVal___ = postHookFunc(retVal___, arg); @@ -5741,11 +5741,11 @@ DBReleaser HP_DB_custom_release(enum DBReleaseOption which) { } return retVal___; } -struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { +struct DBMap * HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { int hIndex = 0; - struct DBMap* retVal___ = NULL; + struct DBMap * retVal___ = NULL; if (HPMHooks.count.HP_DB_alloc_pre > 0) { - struct DBMap* (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); + struct DBMap * (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_alloc_pre[hIndex].func; @@ -5760,7 +5760,7 @@ struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBT retVal___ = HPMHooks.source.DB.alloc(file, func, line, type, options, maxlen); } if (HPMHooks.count.HP_DB_alloc_post > 0) { - struct DBMap* (*postHookFunc) (struct DBMap* retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); + struct DBMap * (*postHookFunc) (struct DBMap * retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_alloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, func, line, type, options, maxlen); @@ -6038,11 +6038,11 @@ unsigned int HP_DB_data2ui(struct DBData *data) { } return retVal___; } -void* HP_DB_data2ptr(struct DBData *data) { +void * HP_DB_data2ptr(struct DBData *data) { int hIndex = 0; - void* retVal___ = NULL; + void * retVal___ = NULL; if (HPMHooks.count.HP_DB_data2ptr_pre > 0) { - void* (*preHookFunc) (struct DBData **data); + void * (*preHookFunc) (struct DBData **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_data2ptr_pre[hIndex].func; @@ -6057,7 +6057,7 @@ void* HP_DB_data2ptr(struct DBData *data) { retVal___ = HPMHooks.source.DB.data2ptr(data); } if (HPMHooks.count.HP_DB_data2ptr_post > 0) { - void* (*postHookFunc) (void* retVal___, struct DBData *data); + void * (*postHookFunc) (void * retVal___, struct DBData *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_data2ptr_post[hIndex].func; retVal___ = postHookFunc(retVal___, data); @@ -6386,11 +6386,11 @@ bool HP_extraconf_read_emblems(void) { return retVal___; } /* geoip_interface */ -const char* HP_geoip_getcountry(uint32 ipnum) { +const char * HP_geoip_getcountry(uint32 ipnum) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_geoip_getcountry_pre > 0) { - const char* (*preHookFunc) (uint32 *ipnum); + const char * (*preHookFunc) (uint32 *ipnum); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_geoip_getcountry_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_geoip_getcountry_pre[hIndex].func; @@ -6405,7 +6405,7 @@ const char* HP_geoip_getcountry(uint32 ipnum) { retVal___ = HPMHooks.source.geoip.getcountry(ipnum); } if (HPMHooks.count.HP_geoip_getcountry_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint32 ipnum); + const char * (*postHookFunc) (const char * retVal___, uint32 ipnum); for (hIndex = 0; hIndex < HPMHooks.count.HP_geoip_getcountry_post; hIndex++) { postHookFunc = HPMHooks.list.HP_geoip_getcountry_post[hIndex].func; retVal___ = postHookFunc(retVal___, ipnum); @@ -7553,11 +7553,11 @@ bool HP_inter_guild_tosql(struct guild *g, int flag) { } return retVal___; } -struct guild* HP_inter_guild_fromsql(int guild_id) { +struct guild * HP_inter_guild_fromsql(int guild_id) { int hIndex = 0; - struct guild* retVal___ = NULL; + struct guild * retVal___ = NULL; if (HPMHooks.count.HP_inter_guild_fromsql_pre > 0) { - struct guild* (*preHookFunc) (int *guild_id); + struct guild * (*preHookFunc) (int *guild_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_guild_fromsql_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_guild_fromsql_pre[hIndex].func; @@ -7572,7 +7572,7 @@ struct guild* HP_inter_guild_fromsql(int guild_id) { retVal___ = HPMHooks.source.inter_guild.fromsql(guild_id); } if (HPMHooks.count.HP_inter_guild_fromsql_post > 0) { - struct guild* (*postHookFunc) (struct guild* retVal___, int guild_id); + struct guild * (*postHookFunc) (struct guild * retVal___, int guild_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_guild_fromsql_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_guild_fromsql_post[hIndex].func; retVal___ = postHookFunc(retVal___, guild_id); @@ -7607,11 +7607,11 @@ int HP_inter_guild_castle_tosql(struct guild_castle *gc) { } return retVal___; } -struct guild_castle* HP_inter_guild_castle_fromsql(int castle_id) { +struct guild_castle * HP_inter_guild_castle_fromsql(int castle_id) { int hIndex = 0; - struct guild_castle* retVal___ = NULL; + struct guild_castle * retVal___ = NULL; if (HPMHooks.count.HP_inter_guild_castle_fromsql_pre > 0) { - struct guild_castle* (*preHookFunc) (int *castle_id); + struct guild_castle * (*preHookFunc) (int *castle_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_guild_castle_fromsql_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_guild_castle_fromsql_pre[hIndex].func; @@ -7626,7 +7626,7 @@ struct guild_castle* HP_inter_guild_castle_fromsql(int castle_id) { retVal___ = HPMHooks.source.inter_guild.castle_fromsql(castle_id); } if (HPMHooks.count.HP_inter_guild_castle_fromsql_post > 0) { - struct guild_castle* (*postHookFunc) (struct guild_castle* retVal___, int castle_id); + struct guild_castle * (*postHookFunc) (struct guild_castle * retVal___, int castle_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_guild_castle_fromsql_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_guild_castle_fromsql_post[hIndex].func; retVal___ = postHookFunc(retVal___, castle_id); @@ -8044,11 +8044,11 @@ int HP_inter_guild_broken(int guild_id) { } return retVal___; } -struct guild* HP_inter_guild_create(const char *name, const struct guild_member *master) { +struct guild * HP_inter_guild_create(const char *name, const struct guild_member *master) { int hIndex = 0; - struct guild* retVal___ = NULL; + struct guild * retVal___ = NULL; if (HPMHooks.count.HP_inter_guild_create_pre > 0) { - struct guild* (*preHookFunc) (const char **name, const struct guild_member **master); + struct guild * (*preHookFunc) (const char **name, const struct guild_member **master); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_guild_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_guild_create_pre[hIndex].func; @@ -8063,7 +8063,7 @@ struct guild* HP_inter_guild_create(const char *name, const struct guild_member retVal___ = HPMHooks.source.inter_guild.create(name, master); } if (HPMHooks.count.HP_inter_guild_create_post > 0) { - struct guild* (*postHookFunc) (struct guild* retVal___, const char *name, const struct guild_member *master); + struct guild * (*postHookFunc) (struct guild * retVal___, const char *name, const struct guild_member *master); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_guild_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_guild_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, name, master); @@ -8693,11 +8693,11 @@ bool HP_inter_homunculus_rename(const char *name) { return retVal___; } /* inter_interface */ -const char* HP_inter_msg_txt(int msg_number) { +const char * HP_inter_msg_txt(int msg_number) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_inter_msg_txt_pre > 0) { - const char* (*preHookFunc) (int *msg_number); + const char * (*preHookFunc) (int *msg_number); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_msg_txt_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_msg_txt_pre[hIndex].func; @@ -8712,7 +8712,7 @@ const char* HP_inter_msg_txt(int msg_number) { retVal___ = HPMHooks.source.inter.msg_txt(msg_number); } if (HPMHooks.count.HP_inter_msg_txt_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int msg_number); + const char * (*postHookFunc) (const char * retVal___, int msg_number); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_msg_txt_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_msg_txt_post[hIndex].func; retVal___ = postHookFunc(retVal___, msg_number); @@ -8773,11 +8773,11 @@ void HP_inter_do_final_msg(void) { } return; } -const char* HP_inter_job_name(int class) { +const char * HP_inter_job_name(int class) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_inter_job_name_pre > 0) { - const char* (*preHookFunc) (int *class); + const char * (*preHookFunc) (int *class); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_job_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_job_name_pre[hIndex].func; @@ -8792,7 +8792,7 @@ const char* HP_inter_job_name(int class) { retVal___ = HPMHooks.source.inter.job_name(class); } if (HPMHooks.count.HP_inter_job_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int class); + const char * (*postHookFunc) (const char * retVal___, int class); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_job_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_job_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, class); @@ -9940,11 +9940,11 @@ int HP_inter_party_del_nonexistent_party(int party_id) { } return retVal___; } -struct party_data* HP_inter_party_fromsql(int party_id) { +struct party_data * HP_inter_party_fromsql(int party_id) { int hIndex = 0; - struct party_data* retVal___ = NULL; + struct party_data * retVal___ = NULL; if (HPMHooks.count.HP_inter_party_fromsql_pre > 0) { - struct party_data* (*preHookFunc) (int *party_id); + struct party_data * (*preHookFunc) (int *party_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_party_fromsql_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_party_fromsql_pre[hIndex].func; @@ -9959,7 +9959,7 @@ struct party_data* HP_inter_party_fromsql(int party_id) { retVal___ = HPMHooks.source.inter_party.fromsql(party_id); } if (HPMHooks.count.HP_inter_party_fromsql_post > 0) { - struct party_data* (*postHookFunc) (struct party_data* retVal___, int party_id); + struct party_data * (*postHookFunc) (struct party_data * retVal___, int party_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_party_fromsql_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_party_fromsql_post[hIndex].func; retVal___ = postHookFunc(retVal___, party_id); @@ -10020,11 +10020,11 @@ void HP_inter_party_sql_final(void) { } return; } -struct party_data* HP_inter_party_search_partyname(const char *str) { +struct party_data * HP_inter_party_search_partyname(const char *str) { int hIndex = 0; - struct party_data* retVal___ = NULL; + struct party_data * retVal___ = NULL; if (HPMHooks.count.HP_inter_party_search_partyname_pre > 0) { - struct party_data* (*preHookFunc) (const char **str); + struct party_data * (*preHookFunc) (const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_party_search_partyname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_party_search_partyname_pre[hIndex].func; @@ -10039,7 +10039,7 @@ struct party_data* HP_inter_party_search_partyname(const char *str) { retVal___ = HPMHooks.source.inter_party.search_partyname(str); } if (HPMHooks.count.HP_inter_party_search_partyname_post > 0) { - struct party_data* (*postHookFunc) (struct party_data* retVal___, const char *str); + struct party_data * (*postHookFunc) (struct party_data * retVal___, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_party_search_partyname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_party_search_partyname_post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -10209,11 +10209,11 @@ int HP_inter_party_CharOffline(int char_id, int party_id) { } return retVal___; } -struct party_data* HP_inter_party_create(const char *name, int item, int item2, const struct party_member *leader) { +struct party_data * HP_inter_party_create(const char *name, int item, int item2, const struct party_member *leader) { int hIndex = 0; - struct party_data* retVal___ = NULL; + struct party_data * retVal___ = NULL; if (HPMHooks.count.HP_inter_party_create_pre > 0) { - struct party_data* (*preHookFunc) (const char **name, int *item, int *item2, const struct party_member **leader); + struct party_data * (*preHookFunc) (const char **name, int *item, int *item2, const struct party_member **leader); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_party_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_party_create_pre[hIndex].func; @@ -10228,7 +10228,7 @@ struct party_data* HP_inter_party_create(const char *name, int item, int item2, retVal___ = HPMHooks.source.inter_party.create(name, item, item2, leader); } if (HPMHooks.count.HP_inter_party_create_post > 0) { - struct party_data* (*postHookFunc) (struct party_data* retVal___, const char *name, int item, int item2, const struct party_member *leader); + struct party_data * (*postHookFunc) (struct party_data * retVal___, const char *name, int item, int item2, const struct party_member *leader); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_party_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_party_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, name, item, item2, leader); @@ -10560,11 +10560,11 @@ int HP_inter_pet_parse_frommap(int fd) { } return retVal___; } -struct s_pet* HP_inter_pet_create(int account_id, int char_id, int pet_class, int pet_lv, int pet_egg_id, int pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name) { +struct s_pet * HP_inter_pet_create(int account_id, int char_id, int pet_class, int pet_lv, int pet_egg_id, int pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name) { int hIndex = 0; - struct s_pet* retVal___ = NULL; + struct s_pet * retVal___ = NULL; if (HPMHooks.count.HP_inter_pet_create_pre > 0) { - struct s_pet* (*preHookFunc) (int *account_id, int *char_id, int *pet_class, int *pet_lv, int *pet_egg_id, int *pet_equip, short *intimate, short *hungry, char *rename_flag, char *incubate, const char **pet_name); + struct s_pet * (*preHookFunc) (int *account_id, int *char_id, int *pet_class, int *pet_lv, int *pet_egg_id, int *pet_equip, short *intimate, short *hungry, char *rename_flag, char *incubate, const char **pet_name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_pet_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_pet_create_pre[hIndex].func; @@ -10579,7 +10579,7 @@ struct s_pet* HP_inter_pet_create(int account_id, int char_id, int pet_class, in retVal___ = HPMHooks.source.inter_pet.create(account_id, char_id, pet_class, pet_lv, pet_egg_id, pet_equip, intimate, hungry, rename_flag, incubate, pet_name); } if (HPMHooks.count.HP_inter_pet_create_post > 0) { - struct s_pet* (*postHookFunc) (struct s_pet* retVal___, int account_id, int char_id, int pet_class, int pet_lv, int pet_egg_id, int pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name); + struct s_pet * (*postHookFunc) (struct s_pet * retVal___, int account_id, int char_id, int pet_class, int pet_lv, int pet_egg_id, int pet_equip, short intimate, short hungry, char rename_flag, char incubate, const char *pet_name); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_pet_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_pet_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, account_id, char_id, pet_class, pet_lv, pet_egg_id, pet_equip, intimate, hungry, rename_flag, incubate, pet_name); @@ -10587,11 +10587,11 @@ struct s_pet* HP_inter_pet_create(int account_id, int char_id, int pet_class, in } return retVal___; } -struct s_pet* HP_inter_pet_load(int account_id, int char_id, int pet_id) { +struct s_pet * HP_inter_pet_load(int account_id, int char_id, int pet_id) { int hIndex = 0; - struct s_pet* retVal___ = NULL; + struct s_pet * retVal___ = NULL; if (HPMHooks.count.HP_inter_pet_load_pre > 0) { - struct s_pet* (*preHookFunc) (int *account_id, int *char_id, int *pet_id); + struct s_pet * (*preHookFunc) (int *account_id, int *char_id, int *pet_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_pet_load_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_pet_load_pre[hIndex].func; @@ -10606,7 +10606,7 @@ struct s_pet* HP_inter_pet_load(int account_id, int char_id, int pet_id) { retVal___ = HPMHooks.source.inter_pet.load(account_id, char_id, pet_id); } if (HPMHooks.count.HP_inter_pet_load_post > 0) { - struct s_pet* (*postHookFunc) (struct s_pet* retVal___, int account_id, int char_id, int pet_id); + struct s_pet * (*postHookFunc) (struct s_pet * retVal___, int account_id, int char_id, int pet_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_pet_load_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_pet_load_post[hIndex].func; retVal___ = postHookFunc(retVal___, account_id, char_id, pet_id); @@ -10642,11 +10642,11 @@ int HP_inter_quest_parse_frommap(int fd) { } return retVal___; } -struct quest* HP_inter_quest_fromsql(int char_id, int *count) { +struct quest * HP_inter_quest_fromsql(int char_id, int *count) { int hIndex = 0; - struct quest* retVal___ = NULL; + struct quest * retVal___ = NULL; if (HPMHooks.count.HP_inter_quest_fromsql_pre > 0) { - struct quest* (*preHookFunc) (int *char_id, int **count); + struct quest * (*preHookFunc) (int *char_id, int **count); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_quest_fromsql_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_inter_quest_fromsql_pre[hIndex].func; @@ -10661,7 +10661,7 @@ struct quest* HP_inter_quest_fromsql(int char_id, int *count) { retVal___ = HPMHooks.source.inter_quest.fromsql(char_id, count); } if (HPMHooks.count.HP_inter_quest_fromsql_post > 0) { - struct quest* (*postHookFunc) (struct quest* retVal___, int char_id, int *count); + struct quest * (*postHookFunc) (struct quest * retVal___, int char_id, int *count); for (hIndex = 0; hIndex < HPMHooks.count.HP_inter_quest_fromsql_post; hIndex++) { postHookFunc = HPMHooks.list.HP_inter_quest_fromsql_post[hIndex].func; retVal___ = postHookFunc(retVal___, char_id, count); @@ -12037,11 +12037,11 @@ int HP_libconfig_setting_get_bool(const struct config_setting_t *setting) { } return retVal___; } -const char* HP_libconfig_setting_get_string(const struct config_setting_t *setting) { +const char * HP_libconfig_setting_get_string(const struct config_setting_t *setting) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting); + const char * (*preHookFunc) (const struct config_setting_t **setting); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_pre[hIndex].func; @@ -12056,7 +12056,7 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti retVal___ = HPMHooks.source.libconfig.setting_get_string(setting); } if (HPMHooks.count.HP_libconfig_setting_get_string_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting); @@ -12064,11 +12064,11 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_pre[hIndex].func; @@ -12083,7 +12083,7 @@ struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *se retVal___ = HPMHooks.source.libconfig.setting_lookup(setting, name); } if (HPMHooks.count.HP_libconfig_setting_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -12523,11 +12523,11 @@ int HP_libconfig_setting_get_bool_elem(const struct config_setting_t *setting, i } return retVal___; } -const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { +const char * HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_elem_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting, int *idx); + const char * (*preHookFunc) (const struct config_setting_t **setting, int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_pre[hIndex].func; @@ -12542,7 +12542,7 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * retVal___ = HPMHooks.source.libconfig.setting_get_string_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_string_elem_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting, int idx); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -12550,11 +12550,11 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_pre[hIndex].func; @@ -12569,7 +12569,7 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting retVal___ = HPMHooks.source.libconfig.setting_set_int_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -12577,11 +12577,11 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { +struct config_setting_t * HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_pre[hIndex].func; @@ -12596,7 +12596,7 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_int64_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int64 value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int64 value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -12604,11 +12604,11 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { +struct config_setting_t * HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_float_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_pre[hIndex].func; @@ -12623,7 +12623,7 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_float_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_float_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, double value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, double value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -12631,11 +12631,11 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_pre[hIndex].func; @@ -12650,7 +12650,7 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin retVal___ = HPMHooks.source.libconfig.setting_set_bool_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -12658,11 +12658,11 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { +struct config_setting_t * HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_string_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_pre[hIndex].func; @@ -12677,7 +12677,7 @@ struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_sett retVal___ = HPMHooks.source.libconfig.setting_set_string_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_string_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, const char *value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, const char *value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -12739,11 +12739,11 @@ int HP_libconfig_setting_length(const struct config_setting_t *setting) { } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { +struct config_setting_t * HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_pre[hIndex].func; @@ -12758,7 +12758,7 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti retVal___ = HPMHooks.source.libconfig.setting_get_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, unsigned int idx); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, unsigned int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -12766,11 +12766,11 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_member_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_pre[hIndex].func; @@ -12785,7 +12785,7 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set retVal___ = HPMHooks.source.libconfig.setting_get_member(setting, name); } if (HPMHooks.count.HP_libconfig_setting_get_member_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -12793,11 +12793,11 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set } return retVal___; } -struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { +struct config_setting_t * HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_add_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_add_pre[hIndex].func; @@ -12812,7 +12812,7 @@ struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *paren retVal___ = HPMHooks.source.libconfig.setting_add(parent, name, type); } if (HPMHooks.count.HP_libconfig_setting_add_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *parent, const char *name, int type); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *parent, const char *name, int type); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_add_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name, type); @@ -12900,11 +12900,11 @@ void HP_libconfig_setting_set_hook(struct config_setting_t *setting, void *hook) } return; } -struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, const char *filepath) { +struct config_setting_t * HP_libconfig_lookup(const struct config_t *config, const char *filepath) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_t **config, const char **filepath); + struct config_setting_t * (*preHookFunc) (const struct config_t **config, const char **filepath); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_lookup_pre[hIndex].func; @@ -12919,7 +12919,7 @@ struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, cons retVal___ = HPMHooks.source.libconfig.lookup(config, filepath); } if (HPMHooks.count.HP_libconfig_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_t *config, const char *filepath); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_t *config, const char *filepath); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, config, filepath); @@ -18175,11 +18175,11 @@ void HP_mapindex_removemap(int index) { } return; } -const char* HP_mapindex_getmapname(const char *string, char *output) { +const char * HP_mapindex_getmapname(const char *string, char *output) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_mapindex_getmapname_pre > 0) { - const char* (*preHookFunc) (const char **string, char **output); + const char * (*preHookFunc) (const char **string, char **output); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapindex_getmapname_pre[hIndex].func; @@ -18194,7 +18194,7 @@ const char* HP_mapindex_getmapname(const char *string, char *output) { retVal___ = HPMHooks.source.mapindex.getmapname(string, output); } if (HPMHooks.count.HP_mapindex_getmapname_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *string, char *output); + const char * (*postHookFunc) (const char * retVal___, const char *string, char *output); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapindex_getmapname_post[hIndex].func; retVal___ = postHookFunc(retVal___, string, output); @@ -18202,11 +18202,11 @@ const char* HP_mapindex_getmapname(const char *string, char *output) { } return retVal___; } -const char* HP_mapindex_getmapname_ext(const char *string, char *output) { +const char * HP_mapindex_getmapname_ext(const char *string, char *output) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_mapindex_getmapname_ext_pre > 0) { - const char* (*preHookFunc) (const char **string, char **output); + const char * (*preHookFunc) (const char **string, char **output); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_ext_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapindex_getmapname_ext_pre[hIndex].func; @@ -18221,7 +18221,7 @@ const char* HP_mapindex_getmapname_ext(const char *string, char *output) { retVal___ = HPMHooks.source.mapindex.getmapname_ext(string, output); } if (HPMHooks.count.HP_mapindex_getmapname_ext_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *string, char *output); + const char * (*postHookFunc) (const char * retVal___, const char *string, char *output); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_ext_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapindex_getmapname_ext_post[hIndex].func; retVal___ = postHookFunc(retVal___, string, output); @@ -18256,11 +18256,11 @@ unsigned short HP_mapindex_name2id(const char *p1) { } return retVal___; } -const char* HP_mapindex_id2name(uint16 id, const char *file, int line, const char *func) { +const char * HP_mapindex_id2name(uint16 id, const char *file, int line, const char *func) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_mapindex_id2name_pre > 0) { - const char* (*preHookFunc) (uint16 *id, const char **file, int *line, const char **func); + const char * (*preHookFunc) (uint16 *id, const char **file, int *line, const char **func); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_id2name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapindex_id2name_pre[hIndex].func; @@ -18275,7 +18275,7 @@ const char* HP_mapindex_id2name(uint16 id, const char *file, int line, const cha retVal___ = HPMHooks.source.mapindex.id2name(id, file, line, func); } if (HPMHooks.count.HP_mapindex_id2name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint16 id, const char *file, int line, const char *func); + const char * (*postHookFunc) (const char * retVal___, uint16 id, const char *file, int line, const char *func); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_id2name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapindex_id2name_post[hIndex].func; retVal___ = postHookFunc(retVal___, id, file, line, func); @@ -18390,11 +18390,11 @@ void HP_md5_salt(int len, char *output) { return; } /* mutex_interface */ -struct mutex_data* HP_mutex_create(void) { +struct mutex_data * HP_mutex_create(void) { int hIndex = 0; - struct mutex_data* retVal___ = NULL; + struct mutex_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_create_pre > 0) { - struct mutex_data* (*preHookFunc) (void); + struct mutex_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_create_pre[hIndex].func; @@ -18409,7 +18409,7 @@ struct mutex_data* HP_mutex_create(void) { retVal___ = HPMHooks.source.mutex.create(); } if (HPMHooks.count.HP_mutex_create_post > 0) { - struct mutex_data* (*postHookFunc) (struct mutex_data* retVal___); + struct mutex_data * (*postHookFunc) (struct mutex_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -18522,11 +18522,11 @@ void HP_mutex_unlock(struct mutex_data *m) { } return; } -struct cond_data* HP_mutex_cond_create(void) { +struct cond_data * HP_mutex_cond_create(void) { int hIndex = 0; - struct cond_data* retVal___ = NULL; + struct cond_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_cond_create_pre > 0) { - struct cond_data* (*preHookFunc) (void); + struct cond_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_cond_create_pre[hIndex].func; @@ -18541,7 +18541,7 @@ struct cond_data* HP_mutex_cond_create(void) { retVal___ = HPMHooks.source.mutex.cond_create(); } if (HPMHooks.count.HP_mutex_cond_create_post > 0) { - struct cond_data* (*postHookFunc) (struct cond_data* retVal___); + struct cond_data * (*postHookFunc) (struct cond_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_cond_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -19661,11 +19661,11 @@ int HP_showmsg_showMessageV(const char *string, va_list ap) { } return retVal___; } -const char* HP_showmsg_getLogFileName(void) { +const char * HP_showmsg_getLogFileName(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_showmsg_getLogFileName_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_pre[hIndex].func; @@ -19680,7 +19680,7 @@ const char* HP_showmsg_getLogFileName(void) { retVal___ = HPMHooks.source.showmsg.getLogFileName(); } if (HPMHooks.count.HP_showmsg_getLogFileName_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_post; hIndex++) { postHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -20351,11 +20351,11 @@ uint32 HP_sockt_host2ip(const char *hostname) { } return retVal___; } -const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { +const char * HP_sockt_ip2str(uint32 ip, char *ip_str) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sockt_ip2str_pre > 0) { - const char* (*preHookFunc) (uint32 *ip, char **ip_str); + const char * (*preHookFunc) (uint32 *ip, char **ip_str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_ip2str_pre[hIndex].func; @@ -20370,7 +20370,7 @@ const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { retVal___ = HPMHooks.source.sockt.ip2str(ip, ip_str); } if (HPMHooks.count.HP_sockt_ip2str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint32 ip, char *ip_str); + const char * (*postHookFunc) (const char * retVal___, uint32 ip, char *ip_str); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_ip2str_post[hIndex].func; retVal___ = postHookFunc(retVal___, ip, ip_str); @@ -21109,11 +21109,11 @@ void HP_SQL_Free(struct Sql *self) { } return; } -struct Sql* HP_SQL_Malloc(void) { +struct Sql * HP_SQL_Malloc(void) { int hIndex = 0; - struct Sql* retVal___ = NULL; + struct Sql * retVal___ = NULL; if (HPMHooks.count.HP_SQL_Malloc_pre > 0) { - struct Sql* (*preHookFunc) (void); + struct Sql * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_Malloc_pre[hIndex].func; @@ -21128,7 +21128,7 @@ struct Sql* HP_SQL_Malloc(void) { retVal___ = HPMHooks.source.SQL.Malloc(); } if (HPMHooks.count.HP_SQL_Malloc_post > 0) { - struct Sql* (*postHookFunc) (struct Sql* retVal___); + struct Sql * (*postHookFunc) (struct Sql * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -21136,11 +21136,11 @@ struct Sql* HP_SQL_Malloc(void) { } return retVal___; } -struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { +struct SqlStmt * HP_SQL_StmtMalloc(struct Sql *sql) { int hIndex = 0; - struct SqlStmt* retVal___ = NULL; + struct SqlStmt * retVal___ = NULL; if (HPMHooks.count.HP_SQL_StmtMalloc_pre > 0) { - struct SqlStmt* (*preHookFunc) (struct Sql **sql); + struct SqlStmt * (*preHookFunc) (struct Sql **sql); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_pre[hIndex].func; @@ -21155,7 +21155,7 @@ struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { retVal___ = HPMHooks.source.SQL.StmtMalloc(sql); } if (HPMHooks.count.HP_SQL_StmtMalloc_post > 0) { - struct SqlStmt* (*postHookFunc) (struct SqlStmt* retVal___, struct Sql *sql); + struct SqlStmt * (*postHookFunc) (struct SqlStmt * retVal___, struct Sql *sql); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, sql); @@ -21518,11 +21518,11 @@ void HP_SQL_StmtShowDebug_(struct SqlStmt *self, const char *debug_file, const u return; } /* stringbuf_interface */ -StringBuf* HP_StrBuf_Malloc(void) { +StringBuf * HP_StrBuf_Malloc(void) { int hIndex = 0; - StringBuf* retVal___ = NULL; + StringBuf * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Malloc_pre > 0) { - StringBuf* (*preHookFunc) (void); + StringBuf * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Malloc_pre[hIndex].func; @@ -21537,7 +21537,7 @@ StringBuf* HP_StrBuf_Malloc(void) { retVal___ = HPMHooks.source.StrBuf.Malloc(); } if (HPMHooks.count.HP_StrBuf_Malloc_post > 0) { - StringBuf* (*postHookFunc) (StringBuf* retVal___); + StringBuf * (*postHookFunc) (StringBuf * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -21685,11 +21685,11 @@ int HP_StrBuf_Length(StringBuf *self) { } return retVal___; } -char* HP_StrBuf_Value(StringBuf *self) { +char * HP_StrBuf_Value(StringBuf *self) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Value_pre > 0) { - char* (*preHookFunc) (StringBuf **self); + char * (*preHookFunc) (StringBuf **self); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Value_pre[hIndex].func; @@ -21704,7 +21704,7 @@ char* HP_StrBuf_Value(StringBuf *self) { retVal___ = HPMHooks.source.StrBuf.Value(self); } if (HPMHooks.count.HP_StrBuf_Value_post > 0) { - char* (*postHookFunc) (char* retVal___, StringBuf *self); + char * (*postHookFunc) (char * retVal___, StringBuf *self); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Value_post[hIndex].func; retVal___ = postHookFunc(retVal___, self); @@ -21791,11 +21791,11 @@ void HP_StrBuf_Free(StringBuf *self) { return; } /* strlib_interface */ -char* HP_strlib_jstrescape(char *pt) { +char * HP_strlib_jstrescape(char *pt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescape_pre > 0) { - char* (*preHookFunc) (char **pt); + char * (*preHookFunc) (char **pt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescape_pre[hIndex].func; @@ -21810,7 +21810,7 @@ char* HP_strlib_jstrescape(char *pt) { retVal___ = HPMHooks.source.strlib.jstrescape(pt); } if (HPMHooks.count.HP_strlib_jstrescape_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt); + char * (*postHookFunc) (char * retVal___, char *pt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescape_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt); @@ -21818,11 +21818,11 @@ char* HP_strlib_jstrescape(char *pt) { } return retVal___; } -char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { +char * HP_strlib_jstrescapecpy(char *pt, const char *spt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescapecpy_pre > 0) { - char* (*preHookFunc) (char **pt, const char **spt); + char * (*preHookFunc) (char **pt, const char **spt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_pre[hIndex].func; @@ -21837,7 +21837,7 @@ char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { retVal___ = HPMHooks.source.strlib.jstrescapecpy(pt, spt); } if (HPMHooks.count.HP_strlib_jstrescapecpy_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt, const char *spt); + char * (*postHookFunc) (char * retVal___, char *pt, const char *spt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt, spt); @@ -21899,11 +21899,11 @@ int HP_strlib_remove_control_chars_(char *str) { } return retVal___; } -char* HP_strlib_trim_(char *str) { +char * HP_strlib_trim_(char *str) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_trim__pre > 0) { - char* (*preHookFunc) (char **str); + char * (*preHookFunc) (char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_trim__pre[hIndex].func; @@ -21918,7 +21918,7 @@ char* HP_strlib_trim_(char *str) { retVal___ = HPMHooks.source.strlib.trim_(str); } if (HPMHooks.count.HP_strlib_trim__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str); + char * (*postHookFunc) (char * retVal___, char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_trim__post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -21926,11 +21926,11 @@ char* HP_strlib_trim_(char *str) { } return retVal___; } -char* HP_strlib_normalize_name_(char *str, const char *delims) { +char * HP_strlib_normalize_name_(char *str, const char *delims) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_normalize_name__pre > 0) { - char* (*preHookFunc) (char **str, const char **delims); + char * (*preHookFunc) (char **str, const char **delims); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_normalize_name__pre[hIndex].func; @@ -21945,7 +21945,7 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { retVal___ = HPMHooks.source.strlib.normalize_name_(str, delims); } if (HPMHooks.count.HP_strlib_normalize_name__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str, const char *delims); + char * (*postHookFunc) (char * retVal___, char *str, const char *delims); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_normalize_name__post[hIndex].func; retVal___ = postHookFunc(retVal___, str, delims); @@ -21953,11 +21953,11 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { } return retVal___; } -const char* HP_strlib_stristr_(const char *haystack, const char *needle) { +const char * HP_strlib_stristr_(const char *haystack, const char *needle) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_stristr__pre > 0) { - const char* (*preHookFunc) (const char **haystack, const char **needle); + const char * (*preHookFunc) (const char **haystack, const char **needle); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_stristr__pre[hIndex].func; @@ -21972,7 +21972,7 @@ const char* HP_strlib_stristr_(const char *haystack, const char *needle) { retVal___ = HPMHooks.source.strlib.stristr_(haystack, needle); } if (HPMHooks.count.HP_strlib_stristr__post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *haystack, const char *needle); + const char * (*postHookFunc) (const char * retVal___, const char *haystack, const char *needle); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_stristr__post[hIndex].func; retVal___ = postHookFunc(retVal___, haystack, needle); @@ -22007,11 +22007,11 @@ size_t HP_strlib_strnlen_(const char *string, size_t maxlen) { } return retVal___; } -char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { +char * HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_strtok_r__pre > 0) { - char* (*preHookFunc) (char **s1, const char **s2, char ***lasts); + char * (*preHookFunc) (char **s1, const char **s2, char ***lasts); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_strtok_r__pre[hIndex].func; @@ -22026,7 +22026,7 @@ char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { retVal___ = HPMHooks.source.strlib.strtok_r_(s1, s2, lasts); } if (HPMHooks.count.HP_strlib_strtok_r__post > 0) { - char* (*postHookFunc) (char* retVal___, char *s1, const char *s2, char **lasts); + char * (*postHookFunc) (char * retVal___, char *s1, const char *s2, char **lasts); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_strtok_r__post[hIndex].func; retVal___ = postHookFunc(retVal___, s1, s2, lasts); @@ -22088,11 +22088,11 @@ int HP_strlib_config_switch_(const char *str) { } return retVal___; } -char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { +char * HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_safestrncpy__pre > 0) { - char* (*preHookFunc) (char **dst, const char **src, size_t *n); + char * (*preHookFunc) (char **dst, const char **src, size_t *n); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_safestrncpy__pre[hIndex].func; @@ -22107,7 +22107,7 @@ char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { retVal___ = HPMHooks.source.strlib.safestrncpy_(dst, src, n); } if (HPMHooks.count.HP_strlib_safestrncpy__post > 0) { - char* (*postHookFunc) (char* retVal___, char *dst, const char *src, size_t n); + char * (*postHookFunc) (char * retVal___, char *dst, const char *src, size_t n); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_safestrncpy__post[hIndex].func; retVal___ = postHookFunc(retVal___, dst, src, n); @@ -22332,11 +22332,11 @@ size_t HP_sv_unescape_c(char *out_dest, const char *src, size_t len) { } return retVal___; } -const char* HP_sv_skip_escaped_c(const char *p) { +const char * HP_sv_skip_escaped_c(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sv_skip_escaped_c_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_pre[hIndex].func; @@ -22351,7 +22351,7 @@ const char* HP_sv_skip_escaped_c(const char *p) { retVal___ = HPMHooks.source.sv.skip_escaped_c(p); } if (HPMHooks.count.HP_sv_skip_escaped_c_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -22414,11 +22414,11 @@ long HP_sysinfo_getpagesize(void) { } return retVal___; } -const char* HP_sysinfo_platform(void) { +const char * HP_sysinfo_platform(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_platform_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_platform_pre[hIndex].func; @@ -22433,7 +22433,7 @@ const char* HP_sysinfo_platform(void) { retVal___ = HPMHooks.source.sysinfo.platform(); } if (HPMHooks.count.HP_sysinfo_platform_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_platform_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22441,11 +22441,11 @@ const char* HP_sysinfo_platform(void) { } return retVal___; } -const char* HP_sysinfo_osversion(void) { +const char * HP_sysinfo_osversion(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_osversion_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_osversion_pre[hIndex].func; @@ -22460,7 +22460,7 @@ const char* HP_sysinfo_osversion(void) { retVal___ = HPMHooks.source.sysinfo.osversion(); } if (HPMHooks.count.HP_sysinfo_osversion_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_osversion_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22468,11 +22468,11 @@ const char* HP_sysinfo_osversion(void) { } return retVal___; } -const char* HP_sysinfo_cpu(void) { +const char * HP_sysinfo_cpu(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cpu_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cpu_pre[hIndex].func; @@ -22487,7 +22487,7 @@ const char* HP_sysinfo_cpu(void) { retVal___ = HPMHooks.source.sysinfo.cpu(); } if (HPMHooks.count.HP_sysinfo_cpu_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cpu_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22522,11 +22522,11 @@ int HP_sysinfo_cpucores(void) { } return retVal___; } -const char* HP_sysinfo_arch(void) { +const char * HP_sysinfo_arch(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_arch_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_arch_pre[hIndex].func; @@ -22541,7 +22541,7 @@ const char* HP_sysinfo_arch(void) { retVal___ = HPMHooks.source.sysinfo.arch(); } if (HPMHooks.count.HP_sysinfo_arch_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_arch_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22576,11 +22576,11 @@ bool HP_sysinfo_is64bit(void) { } return retVal___; } -const char* HP_sysinfo_compiler(void) { +const char * HP_sysinfo_compiler(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_compiler_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_compiler_pre[hIndex].func; @@ -22595,7 +22595,7 @@ const char* HP_sysinfo_compiler(void) { retVal___ = HPMHooks.source.sysinfo.compiler(); } if (HPMHooks.count.HP_sysinfo_compiler_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_compiler_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22603,11 +22603,11 @@ const char* HP_sysinfo_compiler(void) { } return retVal___; } -const char* HP_sysinfo_cflags(void) { +const char * HP_sysinfo_cflags(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cflags_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cflags_pre[hIndex].func; @@ -22622,7 +22622,7 @@ const char* HP_sysinfo_cflags(void) { retVal___ = HPMHooks.source.sysinfo.cflags(); } if (HPMHooks.count.HP_sysinfo_cflags_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cflags_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22630,11 +22630,11 @@ const char* HP_sysinfo_cflags(void) { } return retVal___; } -const char* HP_sysinfo_time(void) { +const char * HP_sysinfo_time(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_time_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_time_pre[hIndex].func; @@ -22649,7 +22649,7 @@ const char* HP_sysinfo_time(void) { retVal___ = HPMHooks.source.sysinfo.time(); } if (HPMHooks.count.HP_sysinfo_time_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_time_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22657,11 +22657,11 @@ const char* HP_sysinfo_time(void) { } return retVal___; } -const char* HP_sysinfo_vcstype(void) { +const char * HP_sysinfo_vcstype(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcstype_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcstype_pre[hIndex].func; @@ -22676,7 +22676,7 @@ const char* HP_sysinfo_vcstype(void) { retVal___ = HPMHooks.source.sysinfo.vcstype(); } if (HPMHooks.count.HP_sysinfo_vcstype_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcstype_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22711,11 +22711,11 @@ int HP_sysinfo_vcstypeid(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_src(void) { +const char * HP_sysinfo_vcsrevision_src(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_src_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_pre[hIndex].func; @@ -22730,7 +22730,7 @@ const char* HP_sysinfo_vcsrevision_src(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_src(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_src_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22738,11 +22738,11 @@ const char* HP_sysinfo_vcsrevision_src(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_scripts(void) { +const char * HP_sysinfo_vcsrevision_scripts(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_pre[hIndex].func; @@ -22757,7 +22757,7 @@ const char* HP_sysinfo_vcsrevision_scripts(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_scripts(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -22872,11 +22872,11 @@ bool HP_sysinfo_is_superuser(void) { } return retVal___; } -const char* HP_sysinfo_zlib(void) { +const char * HP_sysinfo_zlib(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_zlib_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_zlib_pre[hIndex].func; @@ -22891,7 +22891,7 @@ const char* HP_sysinfo_zlib(void) { retVal___ = HPMHooks.source.sysinfo.zlib(); } if (HPMHooks.count.HP_sysinfo_zlib_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_zlib_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -23004,11 +23004,11 @@ void HP_thread_final(void) { } return; } -struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { +struct thread_handle * HP_thread_create(threadFunc entry_point, void *param) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_pre[hIndex].func; @@ -23023,7 +23023,7 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { retVal___ = HPMHooks.source.thread.create(entry_point, param); } if (HPMHooks.count.HP_thread_create_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param); @@ -23031,11 +23031,11 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { } return retVal___; } -struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { +struct thread_handle * HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_opt_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_opt_pre[hIndex].func; @@ -23050,7 +23050,7 @@ struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, retVal___ = HPMHooks.source.thread.create_opt(entry_point, param, stack_size, prio); } if (HPMHooks.count.HP_thread_create_opt_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_opt_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param, stack_size, prio); @@ -23084,11 +23084,11 @@ void HP_thread_destroy(struct thread_handle *handle) { } return; } -struct thread_handle* HP_thread_self(void) { +struct thread_handle * HP_thread_self(void) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_self_pre > 0) { - struct thread_handle* (*preHookFunc) (void); + struct thread_handle * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_self_pre[hIndex].func; @@ -23103,7 +23103,7 @@ struct thread_handle* HP_thread_self(void) { retVal___ = HPMHooks.source.thread.self(); } if (HPMHooks.count.HP_thread_self_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_self_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -23353,11 +23353,11 @@ int HP_timer_add_interval(int64 tick, TimerFunc func, int id, intptr_t data, int } return retVal___; } -const struct TimerData* HP_timer_get(int tid) { +const struct TimerData * HP_timer_get(int tid) { int hIndex = 0; - const struct TimerData* retVal___ = NULL; + const struct TimerData * retVal___ = NULL; if (HPMHooks.count.HP_timer_get_pre > 0) { - const struct TimerData* (*preHookFunc) (int *tid); + const struct TimerData * (*preHookFunc) (int *tid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_timer_get_pre[hIndex].func; @@ -23372,7 +23372,7 @@ const struct TimerData* HP_timer_get(int tid) { retVal___ = HPMHooks.source.timer.get(tid); } if (HPMHooks.count.HP_timer_get_post > 0) { - const struct TimerData* (*postHookFunc) (const struct TimerData* retVal___, int tid); + const struct TimerData * (*postHookFunc) (const struct TimerData * retVal___, int tid); for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_timer_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, tid); diff --git a/src/plugins/HPMHooking/HPMHooking_char.sources.inc b/src/plugins/HPMHooking/HPMHooking_char.sources.inc index 226a19bc5..c94a413e0 100644 --- a/src/plugins/HPMHooking/HPMHooking_char.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_char.sources.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc index aaad09f59..e59db2476 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.HPMHooksCore.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc index 7ef47904a..2df812126 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.HookingPoints.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc index eb9b7d9e8..3c76eea92 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.Hooks.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -79,11 +79,11 @@ bool HP_HCache_check(const char *file) { } return retVal___; } -FILE* HP_HCache_open(const char *file, const char *opt) { +FILE * HP_HCache_open(const char *file, const char *opt) { int hIndex = 0; - FILE* retVal___ = NULL; + FILE * retVal___ = NULL; if (HPMHooks.count.HP_HCache_open_pre > 0) { - FILE* (*preHookFunc) (const char **file, const char **opt); + FILE * (*preHookFunc) (const char **file, const char **opt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_HCache_open_pre[hIndex].func; @@ -98,7 +98,7 @@ FILE* HP_HCache_open(const char *file, const char *opt) { retVal___ = HPMHooks.source.HCache.open(file, opt); } if (HPMHooks.count.HP_HCache_open_post > 0) { - FILE* (*postHookFunc) (FILE* retVal___, const char *file, const char *opt); + FILE * (*postHookFunc) (FILE * retVal___, const char *file, const char *opt); for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_post; hIndex++) { postHookFunc = HPMHooks.list.HP_HCache_open_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, opt); @@ -107,11 +107,11 @@ FILE* HP_HCache_open(const char *file, const char *opt) { return retVal___; } /* account_interface */ -struct Sql* HP_account_db_sql_up(AccountDB *self) { +struct Sql * HP_account_db_sql_up(AccountDB *self) { int hIndex = 0; - struct Sql* retVal___ = NULL; + struct Sql * retVal___ = NULL; if (HPMHooks.count.HP_account_db_sql_up_pre > 0) { - struct Sql* (*preHookFunc) (AccountDB **self); + struct Sql * (*preHookFunc) (AccountDB **self); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_account_db_sql_up_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_account_db_sql_up_pre[hIndex].func; @@ -126,7 +126,7 @@ struct Sql* HP_account_db_sql_up(AccountDB *self) { retVal___ = HPMHooks.source.account.db_sql_up(self); } if (HPMHooks.count.HP_account_db_sql_up_post > 0) { - struct Sql* (*postHookFunc) (struct Sql* retVal___, AccountDB *self); + struct Sql * (*postHookFunc) (struct Sql * retVal___, AccountDB *self); for (hIndex = 0; hIndex < HPMHooks.count.HP_account_db_sql_up_post; hIndex++) { postHookFunc = HPMHooks.list.HP_account_db_sql_up_post[hIndex].func; retVal___ = postHookFunc(retVal___, self); @@ -240,11 +240,11 @@ bool HP_account_mmo_auth_tosql(AccountDB_SQL *db, const struct mmo_account *acc, } return retVal___; } -AccountDB* HP_account_db_sql(void) { +AccountDB * HP_account_db_sql(void) { int hIndex = 0; - AccountDB* retVal___ = NULL; + AccountDB * retVal___ = NULL; if (HPMHooks.count.HP_account_db_sql_pre > 0) { - AccountDB* (*preHookFunc) (void); + AccountDB * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_account_db_sql_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_account_db_sql_pre[hIndex].func; @@ -259,7 +259,7 @@ AccountDB* HP_account_db_sql(void) { retVal___ = HPMHooks.source.account.db_sql(); } if (HPMHooks.count.HP_account_db_sql_post > 0) { - AccountDB* (*postHookFunc) (AccountDB* retVal___); + AccountDB * (*postHookFunc) (AccountDB * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_account_db_sql_post; hIndex++) { postHookFunc = HPMHooks.list.HP_account_db_sql_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -509,11 +509,11 @@ bool HP_account_db_sql_load_str(AccountDB *self, struct mmo_account *acc, const } return retVal___; } -AccountDBIterator* HP_account_db_sql_iterator(AccountDB *self) { +AccountDBIterator * HP_account_db_sql_iterator(AccountDB *self) { int hIndex = 0; - AccountDBIterator* retVal___ = NULL; + AccountDBIterator * retVal___ = NULL; if (HPMHooks.count.HP_account_db_sql_iterator_pre > 0) { - AccountDBIterator* (*preHookFunc) (AccountDB **self); + AccountDBIterator * (*preHookFunc) (AccountDB **self); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_account_db_sql_iterator_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_account_db_sql_iterator_pre[hIndex].func; @@ -528,7 +528,7 @@ AccountDBIterator* HP_account_db_sql_iterator(AccountDB *self) { retVal___ = HPMHooks.source.account.db_sql_iterator(self); } if (HPMHooks.count.HP_account_db_sql_iterator_post > 0) { - AccountDBIterator* (*postHookFunc) (AccountDBIterator* retVal___, AccountDB *self); + AccountDBIterator * (*postHookFunc) (AccountDBIterator * retVal___, AccountDB *self); for (hIndex = 0; hIndex < HPMHooks.count.HP_account_db_sql_iterator_post; hIndex++) { postHookFunc = HPMHooks.list.HP_account_db_sql_iterator_post[hIndex].func; retVal___ = postHookFunc(retVal___, self); @@ -778,11 +778,11 @@ bool HP_cmdline_arg_next_value(const char *name, int current_arg, int argc) { } return retVal___; } -const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { +const char * HP_cmdline_arg_source(struct CmdlineArgData *arg) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_cmdline_arg_source_pre > 0) { - const char* (*preHookFunc) (struct CmdlineArgData **arg); + const char * (*preHookFunc) (struct CmdlineArgData **arg); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_cmdline_arg_source_pre[hIndex].func; @@ -797,7 +797,7 @@ const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { retVal___ = HPMHooks.source.cmdline.arg_source(arg); } if (HPMHooks.count.HP_cmdline_arg_source_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct CmdlineArgData *arg); + const char * (*postHookFunc) (const char * retVal___, struct CmdlineArgData *arg); for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_post; hIndex++) { postHookFunc = HPMHooks.list.HP_cmdline_arg_source_post[hIndex].func; retVal___ = postHookFunc(retVal___, arg); @@ -1073,11 +1073,11 @@ DBReleaser HP_DB_custom_release(enum DBReleaseOption which) { } return retVal___; } -struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { +struct DBMap * HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { int hIndex = 0; - struct DBMap* retVal___ = NULL; + struct DBMap * retVal___ = NULL; if (HPMHooks.count.HP_DB_alloc_pre > 0) { - struct DBMap* (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); + struct DBMap * (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_alloc_pre[hIndex].func; @@ -1092,7 +1092,7 @@ struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBT retVal___ = HPMHooks.source.DB.alloc(file, func, line, type, options, maxlen); } if (HPMHooks.count.HP_DB_alloc_post > 0) { - struct DBMap* (*postHookFunc) (struct DBMap* retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); + struct DBMap * (*postHookFunc) (struct DBMap * retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_alloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, func, line, type, options, maxlen); @@ -1370,11 +1370,11 @@ unsigned int HP_DB_data2ui(struct DBData *data) { } return retVal___; } -void* HP_DB_data2ptr(struct DBData *data) { +void * HP_DB_data2ptr(struct DBData *data) { int hIndex = 0; - void* retVal___ = NULL; + void * retVal___ = NULL; if (HPMHooks.count.HP_DB_data2ptr_pre > 0) { - void* (*preHookFunc) (struct DBData **data); + void * (*preHookFunc) (struct DBData **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_data2ptr_pre[hIndex].func; @@ -1389,7 +1389,7 @@ void* HP_DB_data2ptr(struct DBData *data) { retVal___ = HPMHooks.source.DB.data2ptr(data); } if (HPMHooks.count.HP_DB_data2ptr_post > 0) { - void* (*postHookFunc) (void* retVal___, struct DBData *data); + void * (*postHookFunc) (void * retVal___, struct DBData *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_data2ptr_post[hIndex].func; retVal___ = postHookFunc(retVal___, data); @@ -2822,11 +2822,11 @@ void HP_lclif_coding_key(int fd, struct login_session_data *sd) { } return; } -const struct login_packet_db* HP_lclif_packet(int16 packet_id) { +const struct login_packet_db * HP_lclif_packet(int16 packet_id) { int hIndex = 0; - const struct login_packet_db* retVal___ = NULL; + const struct login_packet_db * retVal___ = NULL; if (HPMHooks.count.HP_lclif_packet_pre > 0) { - const struct login_packet_db* (*preHookFunc) (int16 *packet_id); + const struct login_packet_db * (*preHookFunc) (int16 *packet_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_lclif_packet_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_lclif_packet_pre[hIndex].func; @@ -2841,7 +2841,7 @@ const struct login_packet_db* HP_lclif_packet(int16 packet_id) { retVal___ = HPMHooks.source.lclif.packet(packet_id); } if (HPMHooks.count.HP_lclif_packet_post > 0) { - const struct login_packet_db* (*postHookFunc) (const struct login_packet_db* retVal___, int16 packet_id); + const struct login_packet_db * (*postHookFunc) (const struct login_packet_db * retVal___, int16 packet_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_lclif_packet_post; hIndex++) { postHookFunc = HPMHooks.list.HP_lclif_packet_post[hIndex].func; retVal___ = postHookFunc(retVal___, packet_id); @@ -3814,11 +3814,11 @@ int HP_libconfig_setting_get_bool(const struct config_setting_t *setting) { } return retVal___; } -const char* HP_libconfig_setting_get_string(const struct config_setting_t *setting) { +const char * HP_libconfig_setting_get_string(const struct config_setting_t *setting) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting); + const char * (*preHookFunc) (const struct config_setting_t **setting); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_pre[hIndex].func; @@ -3833,7 +3833,7 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti retVal___ = HPMHooks.source.libconfig.setting_get_string(setting); } if (HPMHooks.count.HP_libconfig_setting_get_string_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting); @@ -3841,11 +3841,11 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_pre[hIndex].func; @@ -3860,7 +3860,7 @@ struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *se retVal___ = HPMHooks.source.libconfig.setting_lookup(setting, name); } if (HPMHooks.count.HP_libconfig_setting_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -4300,11 +4300,11 @@ int HP_libconfig_setting_get_bool_elem(const struct config_setting_t *setting, i } return retVal___; } -const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { +const char * HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_elem_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting, int *idx); + const char * (*preHookFunc) (const struct config_setting_t **setting, int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_pre[hIndex].func; @@ -4319,7 +4319,7 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * retVal___ = HPMHooks.source.libconfig.setting_get_string_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_string_elem_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting, int idx); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -4327,11 +4327,11 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_pre[hIndex].func; @@ -4346,7 +4346,7 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting retVal___ = HPMHooks.source.libconfig.setting_set_int_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -4354,11 +4354,11 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { +struct config_setting_t * HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_pre[hIndex].func; @@ -4373,7 +4373,7 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_int64_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int64 value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int64 value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -4381,11 +4381,11 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { +struct config_setting_t * HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_float_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_pre[hIndex].func; @@ -4400,7 +4400,7 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_float_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_float_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, double value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, double value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -4408,11 +4408,11 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_pre[hIndex].func; @@ -4427,7 +4427,7 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin retVal___ = HPMHooks.source.libconfig.setting_set_bool_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -4435,11 +4435,11 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { +struct config_setting_t * HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_string_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_pre[hIndex].func; @@ -4454,7 +4454,7 @@ struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_sett retVal___ = HPMHooks.source.libconfig.setting_set_string_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_string_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, const char *value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, const char *value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -4516,11 +4516,11 @@ int HP_libconfig_setting_length(const struct config_setting_t *setting) { } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { +struct config_setting_t * HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_pre[hIndex].func; @@ -4535,7 +4535,7 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti retVal___ = HPMHooks.source.libconfig.setting_get_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, unsigned int idx); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, unsigned int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -4543,11 +4543,11 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_member_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_pre[hIndex].func; @@ -4562,7 +4562,7 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set retVal___ = HPMHooks.source.libconfig.setting_get_member(setting, name); } if (HPMHooks.count.HP_libconfig_setting_get_member_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -4570,11 +4570,11 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set } return retVal___; } -struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { +struct config_setting_t * HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_add_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_add_pre[hIndex].func; @@ -4589,7 +4589,7 @@ struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *paren retVal___ = HPMHooks.source.libconfig.setting_add(parent, name, type); } if (HPMHooks.count.HP_libconfig_setting_add_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *parent, const char *name, int type); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *parent, const char *name, int type); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_add_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name, type); @@ -4677,11 +4677,11 @@ void HP_libconfig_setting_set_hook(struct config_setting_t *setting, void *hook) } return; } -struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, const char *filepath) { +struct config_setting_t * HP_libconfig_lookup(const struct config_t *config, const char *filepath) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_t **config, const char **filepath); + struct config_setting_t * (*preHookFunc) (const struct config_t **config, const char **filepath); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_lookup_pre[hIndex].func; @@ -4696,7 +4696,7 @@ struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, cons retVal___ = HPMHooks.source.libconfig.lookup(config, filepath); } if (HPMHooks.count.HP_libconfig_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_t *config, const char *filepath); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_t *config, const char *filepath); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, config, filepath); @@ -5356,11 +5356,11 @@ struct DBData HP_login_create_online_user(union DBKey key, va_list args) { } return retVal___; } -struct online_login_data* HP_login_add_online_user(int char_server, int account_id) { +struct online_login_data * HP_login_add_online_user(int char_server, int account_id) { int hIndex = 0; - struct online_login_data* retVal___ = NULL; + struct online_login_data * retVal___ = NULL; if (HPMHooks.count.HP_login_add_online_user_pre > 0) { - struct online_login_data* (*preHookFunc) (int *char_server, int *account_id); + struct online_login_data * (*preHookFunc) (int *char_server, int *account_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_login_add_online_user_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_login_add_online_user_pre[hIndex].func; @@ -5375,7 +5375,7 @@ struct online_login_data* HP_login_add_online_user(int char_server, int account_ retVal___ = HPMHooks.source.login.add_online_user(char_server, account_id); } if (HPMHooks.count.HP_login_add_online_user_post > 0) { - struct online_login_data* (*postHookFunc) (struct online_login_data* retVal___, int char_server, int account_id); + struct online_login_data * (*postHookFunc) (struct online_login_data * retVal___, int char_server, int account_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_login_add_online_user_post; hIndex++) { postHookFunc = HPMHooks.list.HP_login_add_online_user_post[hIndex].func; retVal___ = postHookFunc(retVal___, char_server, account_id); @@ -7350,11 +7350,11 @@ void HP_md5_salt(int len, char *output) { return; } /* mutex_interface */ -struct mutex_data* HP_mutex_create(void) { +struct mutex_data * HP_mutex_create(void) { int hIndex = 0; - struct mutex_data* retVal___ = NULL; + struct mutex_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_create_pre > 0) { - struct mutex_data* (*preHookFunc) (void); + struct mutex_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_create_pre[hIndex].func; @@ -7369,7 +7369,7 @@ struct mutex_data* HP_mutex_create(void) { retVal___ = HPMHooks.source.mutex.create(); } if (HPMHooks.count.HP_mutex_create_post > 0) { - struct mutex_data* (*postHookFunc) (struct mutex_data* retVal___); + struct mutex_data * (*postHookFunc) (struct mutex_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -7482,11 +7482,11 @@ void HP_mutex_unlock(struct mutex_data *m) { } return; } -struct cond_data* HP_mutex_cond_create(void) { +struct cond_data * HP_mutex_cond_create(void) { int hIndex = 0; - struct cond_data* retVal___ = NULL; + struct cond_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_cond_create_pre > 0) { - struct cond_data* (*preHookFunc) (void); + struct cond_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_cond_create_pre[hIndex].func; @@ -7501,7 +7501,7 @@ struct cond_data* HP_mutex_cond_create(void) { retVal___ = HPMHooks.source.mutex.cond_create(); } if (HPMHooks.count.HP_mutex_cond_create_post > 0) { - struct cond_data* (*postHookFunc) (struct cond_data* retVal___); + struct cond_data * (*postHookFunc) (struct cond_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_cond_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -8201,11 +8201,11 @@ int HP_showmsg_showMessageV(const char *string, va_list ap) { } return retVal___; } -const char* HP_showmsg_getLogFileName(void) { +const char * HP_showmsg_getLogFileName(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_showmsg_getLogFileName_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_pre[hIndex].func; @@ -8220,7 +8220,7 @@ const char* HP_showmsg_getLogFileName(void) { retVal___ = HPMHooks.source.showmsg.getLogFileName(); } if (HPMHooks.count.HP_showmsg_getLogFileName_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_post; hIndex++) { postHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -8891,11 +8891,11 @@ uint32 HP_sockt_host2ip(const char *hostname) { } return retVal___; } -const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { +const char * HP_sockt_ip2str(uint32 ip, char *ip_str) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sockt_ip2str_pre > 0) { - const char* (*preHookFunc) (uint32 *ip, char **ip_str); + const char * (*preHookFunc) (uint32 *ip, char **ip_str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_ip2str_pre[hIndex].func; @@ -8910,7 +8910,7 @@ const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { retVal___ = HPMHooks.source.sockt.ip2str(ip, ip_str); } if (HPMHooks.count.HP_sockt_ip2str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint32 ip, char *ip_str); + const char * (*postHookFunc) (const char * retVal___, uint32 ip, char *ip_str); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_ip2str_post[hIndex].func; retVal___ = postHookFunc(retVal___, ip, ip_str); @@ -9649,11 +9649,11 @@ void HP_SQL_Free(struct Sql *self) { } return; } -struct Sql* HP_SQL_Malloc(void) { +struct Sql * HP_SQL_Malloc(void) { int hIndex = 0; - struct Sql* retVal___ = NULL; + struct Sql * retVal___ = NULL; if (HPMHooks.count.HP_SQL_Malloc_pre > 0) { - struct Sql* (*preHookFunc) (void); + struct Sql * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_Malloc_pre[hIndex].func; @@ -9668,7 +9668,7 @@ struct Sql* HP_SQL_Malloc(void) { retVal___ = HPMHooks.source.SQL.Malloc(); } if (HPMHooks.count.HP_SQL_Malloc_post > 0) { - struct Sql* (*postHookFunc) (struct Sql* retVal___); + struct Sql * (*postHookFunc) (struct Sql * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -9676,11 +9676,11 @@ struct Sql* HP_SQL_Malloc(void) { } return retVal___; } -struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { +struct SqlStmt * HP_SQL_StmtMalloc(struct Sql *sql) { int hIndex = 0; - struct SqlStmt* retVal___ = NULL; + struct SqlStmt * retVal___ = NULL; if (HPMHooks.count.HP_SQL_StmtMalloc_pre > 0) { - struct SqlStmt* (*preHookFunc) (struct Sql **sql); + struct SqlStmt * (*preHookFunc) (struct Sql **sql); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_pre[hIndex].func; @@ -9695,7 +9695,7 @@ struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { retVal___ = HPMHooks.source.SQL.StmtMalloc(sql); } if (HPMHooks.count.HP_SQL_StmtMalloc_post > 0) { - struct SqlStmt* (*postHookFunc) (struct SqlStmt* retVal___, struct Sql *sql); + struct SqlStmt * (*postHookFunc) (struct SqlStmt * retVal___, struct Sql *sql); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, sql); @@ -10058,11 +10058,11 @@ void HP_SQL_StmtShowDebug_(struct SqlStmt *self, const char *debug_file, const u return; } /* stringbuf_interface */ -StringBuf* HP_StrBuf_Malloc(void) { +StringBuf * HP_StrBuf_Malloc(void) { int hIndex = 0; - StringBuf* retVal___ = NULL; + StringBuf * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Malloc_pre > 0) { - StringBuf* (*preHookFunc) (void); + StringBuf * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Malloc_pre[hIndex].func; @@ -10077,7 +10077,7 @@ StringBuf* HP_StrBuf_Malloc(void) { retVal___ = HPMHooks.source.StrBuf.Malloc(); } if (HPMHooks.count.HP_StrBuf_Malloc_post > 0) { - StringBuf* (*postHookFunc) (StringBuf* retVal___); + StringBuf * (*postHookFunc) (StringBuf * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -10225,11 +10225,11 @@ int HP_StrBuf_Length(StringBuf *self) { } return retVal___; } -char* HP_StrBuf_Value(StringBuf *self) { +char * HP_StrBuf_Value(StringBuf *self) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Value_pre > 0) { - char* (*preHookFunc) (StringBuf **self); + char * (*preHookFunc) (StringBuf **self); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Value_pre[hIndex].func; @@ -10244,7 +10244,7 @@ char* HP_StrBuf_Value(StringBuf *self) { retVal___ = HPMHooks.source.StrBuf.Value(self); } if (HPMHooks.count.HP_StrBuf_Value_post > 0) { - char* (*postHookFunc) (char* retVal___, StringBuf *self); + char * (*postHookFunc) (char * retVal___, StringBuf *self); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Value_post[hIndex].func; retVal___ = postHookFunc(retVal___, self); @@ -10331,11 +10331,11 @@ void HP_StrBuf_Free(StringBuf *self) { return; } /* strlib_interface */ -char* HP_strlib_jstrescape(char *pt) { +char * HP_strlib_jstrescape(char *pt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescape_pre > 0) { - char* (*preHookFunc) (char **pt); + char * (*preHookFunc) (char **pt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescape_pre[hIndex].func; @@ -10350,7 +10350,7 @@ char* HP_strlib_jstrescape(char *pt) { retVal___ = HPMHooks.source.strlib.jstrescape(pt); } if (HPMHooks.count.HP_strlib_jstrescape_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt); + char * (*postHookFunc) (char * retVal___, char *pt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescape_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt); @@ -10358,11 +10358,11 @@ char* HP_strlib_jstrescape(char *pt) { } return retVal___; } -char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { +char * HP_strlib_jstrescapecpy(char *pt, const char *spt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescapecpy_pre > 0) { - char* (*preHookFunc) (char **pt, const char **spt); + char * (*preHookFunc) (char **pt, const char **spt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_pre[hIndex].func; @@ -10377,7 +10377,7 @@ char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { retVal___ = HPMHooks.source.strlib.jstrescapecpy(pt, spt); } if (HPMHooks.count.HP_strlib_jstrescapecpy_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt, const char *spt); + char * (*postHookFunc) (char * retVal___, char *pt, const char *spt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt, spt); @@ -10439,11 +10439,11 @@ int HP_strlib_remove_control_chars_(char *str) { } return retVal___; } -char* HP_strlib_trim_(char *str) { +char * HP_strlib_trim_(char *str) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_trim__pre > 0) { - char* (*preHookFunc) (char **str); + char * (*preHookFunc) (char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_trim__pre[hIndex].func; @@ -10458,7 +10458,7 @@ char* HP_strlib_trim_(char *str) { retVal___ = HPMHooks.source.strlib.trim_(str); } if (HPMHooks.count.HP_strlib_trim__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str); + char * (*postHookFunc) (char * retVal___, char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_trim__post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -10466,11 +10466,11 @@ char* HP_strlib_trim_(char *str) { } return retVal___; } -char* HP_strlib_normalize_name_(char *str, const char *delims) { +char * HP_strlib_normalize_name_(char *str, const char *delims) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_normalize_name__pre > 0) { - char* (*preHookFunc) (char **str, const char **delims); + char * (*preHookFunc) (char **str, const char **delims); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_normalize_name__pre[hIndex].func; @@ -10485,7 +10485,7 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { retVal___ = HPMHooks.source.strlib.normalize_name_(str, delims); } if (HPMHooks.count.HP_strlib_normalize_name__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str, const char *delims); + char * (*postHookFunc) (char * retVal___, char *str, const char *delims); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_normalize_name__post[hIndex].func; retVal___ = postHookFunc(retVal___, str, delims); @@ -10493,11 +10493,11 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { } return retVal___; } -const char* HP_strlib_stristr_(const char *haystack, const char *needle) { +const char * HP_strlib_stristr_(const char *haystack, const char *needle) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_stristr__pre > 0) { - const char* (*preHookFunc) (const char **haystack, const char **needle); + const char * (*preHookFunc) (const char **haystack, const char **needle); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_stristr__pre[hIndex].func; @@ -10512,7 +10512,7 @@ const char* HP_strlib_stristr_(const char *haystack, const char *needle) { retVal___ = HPMHooks.source.strlib.stristr_(haystack, needle); } if (HPMHooks.count.HP_strlib_stristr__post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *haystack, const char *needle); + const char * (*postHookFunc) (const char * retVal___, const char *haystack, const char *needle); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_stristr__post[hIndex].func; retVal___ = postHookFunc(retVal___, haystack, needle); @@ -10547,11 +10547,11 @@ size_t HP_strlib_strnlen_(const char *string, size_t maxlen) { } return retVal___; } -char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { +char * HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_strtok_r__pre > 0) { - char* (*preHookFunc) (char **s1, const char **s2, char ***lasts); + char * (*preHookFunc) (char **s1, const char **s2, char ***lasts); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_strtok_r__pre[hIndex].func; @@ -10566,7 +10566,7 @@ char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { retVal___ = HPMHooks.source.strlib.strtok_r_(s1, s2, lasts); } if (HPMHooks.count.HP_strlib_strtok_r__post > 0) { - char* (*postHookFunc) (char* retVal___, char *s1, const char *s2, char **lasts); + char * (*postHookFunc) (char * retVal___, char *s1, const char *s2, char **lasts); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_strtok_r__post[hIndex].func; retVal___ = postHookFunc(retVal___, s1, s2, lasts); @@ -10628,11 +10628,11 @@ int HP_strlib_config_switch_(const char *str) { } return retVal___; } -char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { +char * HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_safestrncpy__pre > 0) { - char* (*preHookFunc) (char **dst, const char **src, size_t *n); + char * (*preHookFunc) (char **dst, const char **src, size_t *n); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_safestrncpy__pre[hIndex].func; @@ -10647,7 +10647,7 @@ char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { retVal___ = HPMHooks.source.strlib.safestrncpy_(dst, src, n); } if (HPMHooks.count.HP_strlib_safestrncpy__post > 0) { - char* (*postHookFunc) (char* retVal___, char *dst, const char *src, size_t n); + char * (*postHookFunc) (char * retVal___, char *dst, const char *src, size_t n); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_safestrncpy__post[hIndex].func; retVal___ = postHookFunc(retVal___, dst, src, n); @@ -10872,11 +10872,11 @@ size_t HP_sv_unescape_c(char *out_dest, const char *src, size_t len) { } return retVal___; } -const char* HP_sv_skip_escaped_c(const char *p) { +const char * HP_sv_skip_escaped_c(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sv_skip_escaped_c_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_pre[hIndex].func; @@ -10891,7 +10891,7 @@ const char* HP_sv_skip_escaped_c(const char *p) { retVal___ = HPMHooks.source.sv.skip_escaped_c(p); } if (HPMHooks.count.HP_sv_skip_escaped_c_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -10954,11 +10954,11 @@ long HP_sysinfo_getpagesize(void) { } return retVal___; } -const char* HP_sysinfo_platform(void) { +const char * HP_sysinfo_platform(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_platform_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_platform_pre[hIndex].func; @@ -10973,7 +10973,7 @@ const char* HP_sysinfo_platform(void) { retVal___ = HPMHooks.source.sysinfo.platform(); } if (HPMHooks.count.HP_sysinfo_platform_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_platform_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -10981,11 +10981,11 @@ const char* HP_sysinfo_platform(void) { } return retVal___; } -const char* HP_sysinfo_osversion(void) { +const char * HP_sysinfo_osversion(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_osversion_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_osversion_pre[hIndex].func; @@ -11000,7 +11000,7 @@ const char* HP_sysinfo_osversion(void) { retVal___ = HPMHooks.source.sysinfo.osversion(); } if (HPMHooks.count.HP_sysinfo_osversion_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_osversion_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11008,11 +11008,11 @@ const char* HP_sysinfo_osversion(void) { } return retVal___; } -const char* HP_sysinfo_cpu(void) { +const char * HP_sysinfo_cpu(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cpu_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cpu_pre[hIndex].func; @@ -11027,7 +11027,7 @@ const char* HP_sysinfo_cpu(void) { retVal___ = HPMHooks.source.sysinfo.cpu(); } if (HPMHooks.count.HP_sysinfo_cpu_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cpu_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11062,11 +11062,11 @@ int HP_sysinfo_cpucores(void) { } return retVal___; } -const char* HP_sysinfo_arch(void) { +const char * HP_sysinfo_arch(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_arch_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_arch_pre[hIndex].func; @@ -11081,7 +11081,7 @@ const char* HP_sysinfo_arch(void) { retVal___ = HPMHooks.source.sysinfo.arch(); } if (HPMHooks.count.HP_sysinfo_arch_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_arch_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11116,11 +11116,11 @@ bool HP_sysinfo_is64bit(void) { } return retVal___; } -const char* HP_sysinfo_compiler(void) { +const char * HP_sysinfo_compiler(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_compiler_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_compiler_pre[hIndex].func; @@ -11135,7 +11135,7 @@ const char* HP_sysinfo_compiler(void) { retVal___ = HPMHooks.source.sysinfo.compiler(); } if (HPMHooks.count.HP_sysinfo_compiler_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_compiler_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11143,11 +11143,11 @@ const char* HP_sysinfo_compiler(void) { } return retVal___; } -const char* HP_sysinfo_cflags(void) { +const char * HP_sysinfo_cflags(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cflags_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cflags_pre[hIndex].func; @@ -11162,7 +11162,7 @@ const char* HP_sysinfo_cflags(void) { retVal___ = HPMHooks.source.sysinfo.cflags(); } if (HPMHooks.count.HP_sysinfo_cflags_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cflags_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11170,11 +11170,11 @@ const char* HP_sysinfo_cflags(void) { } return retVal___; } -const char* HP_sysinfo_time(void) { +const char * HP_sysinfo_time(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_time_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_time_pre[hIndex].func; @@ -11189,7 +11189,7 @@ const char* HP_sysinfo_time(void) { retVal___ = HPMHooks.source.sysinfo.time(); } if (HPMHooks.count.HP_sysinfo_time_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_time_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11197,11 +11197,11 @@ const char* HP_sysinfo_time(void) { } return retVal___; } -const char* HP_sysinfo_vcstype(void) { +const char * HP_sysinfo_vcstype(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcstype_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcstype_pre[hIndex].func; @@ -11216,7 +11216,7 @@ const char* HP_sysinfo_vcstype(void) { retVal___ = HPMHooks.source.sysinfo.vcstype(); } if (HPMHooks.count.HP_sysinfo_vcstype_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcstype_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11251,11 +11251,11 @@ int HP_sysinfo_vcstypeid(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_src(void) { +const char * HP_sysinfo_vcsrevision_src(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_src_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_pre[hIndex].func; @@ -11270,7 +11270,7 @@ const char* HP_sysinfo_vcsrevision_src(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_src(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_src_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11278,11 +11278,11 @@ const char* HP_sysinfo_vcsrevision_src(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_scripts(void) { +const char * HP_sysinfo_vcsrevision_scripts(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_pre[hIndex].func; @@ -11297,7 +11297,7 @@ const char* HP_sysinfo_vcsrevision_scripts(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_scripts(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11412,11 +11412,11 @@ bool HP_sysinfo_is_superuser(void) { } return retVal___; } -const char* HP_sysinfo_zlib(void) { +const char * HP_sysinfo_zlib(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_zlib_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_zlib_pre[hIndex].func; @@ -11431,7 +11431,7 @@ const char* HP_sysinfo_zlib(void) { retVal___ = HPMHooks.source.sysinfo.zlib(); } if (HPMHooks.count.HP_sysinfo_zlib_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_zlib_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11544,11 +11544,11 @@ void HP_thread_final(void) { } return; } -struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { +struct thread_handle * HP_thread_create(threadFunc entry_point, void *param) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_pre[hIndex].func; @@ -11563,7 +11563,7 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { retVal___ = HPMHooks.source.thread.create(entry_point, param); } if (HPMHooks.count.HP_thread_create_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param); @@ -11571,11 +11571,11 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { } return retVal___; } -struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { +struct thread_handle * HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_opt_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_opt_pre[hIndex].func; @@ -11590,7 +11590,7 @@ struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, retVal___ = HPMHooks.source.thread.create_opt(entry_point, param, stack_size, prio); } if (HPMHooks.count.HP_thread_create_opt_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_opt_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param, stack_size, prio); @@ -11624,11 +11624,11 @@ void HP_thread_destroy(struct thread_handle *handle) { } return; } -struct thread_handle* HP_thread_self(void) { +struct thread_handle * HP_thread_self(void) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_self_pre > 0) { - struct thread_handle* (*preHookFunc) (void); + struct thread_handle * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_self_pre[hIndex].func; @@ -11643,7 +11643,7 @@ struct thread_handle* HP_thread_self(void) { retVal___ = HPMHooks.source.thread.self(); } if (HPMHooks.count.HP_thread_self_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_self_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -11893,11 +11893,11 @@ int HP_timer_add_interval(int64 tick, TimerFunc func, int id, intptr_t data, int } return retVal___; } -const struct TimerData* HP_timer_get(int tid) { +const struct TimerData * HP_timer_get(int tid) { int hIndex = 0; - const struct TimerData* retVal___ = NULL; + const struct TimerData * retVal___ = NULL; if (HPMHooks.count.HP_timer_get_pre > 0) { - const struct TimerData* (*preHookFunc) (int *tid); + const struct TimerData * (*preHookFunc) (int *tid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_timer_get_pre[hIndex].func; @@ -11912,7 +11912,7 @@ const struct TimerData* HP_timer_get(int tid) { retVal___ = HPMHooks.source.timer.get(tid); } if (HPMHooks.count.HP_timer_get_post > 0) { - const struct TimerData* (*postHookFunc) (const struct TimerData* retVal___, int tid); + const struct TimerData * (*postHookFunc) (const struct TimerData * retVal___, int tid); for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_timer_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, tid); diff --git a/src/plugins/HPMHooking/HPMHooking_login.sources.inc b/src/plugins/HPMHooking/HPMHooking_login.sources.inc index f398dd580..ca946a924 100644 --- a/src/plugins/HPMHooking/HPMHooking_login.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_login.sources.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc b/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc index 847429930..548849509 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HPMHooksCore.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -1272,6 +1272,8 @@ struct { struct HPMHookPoint *HP_clif_process_chat_message_post; struct HPMHookPoint *HP_clif_process_whisper_message_pre; struct HPMHookPoint *HP_clif_process_whisper_message_post; + struct HPMHookPoint *HP_clif_validate_message_pre; + struct HPMHookPoint *HP_clif_validate_message_post; struct HPMHookPoint *HP_clif_wisexin_pre; struct HPMHookPoint *HP_clif_wisexin_post; struct HPMHookPoint *HP_clif_wisall_pre; @@ -8863,6 +8865,8 @@ struct { int HP_clif_process_chat_message_post; int HP_clif_process_whisper_message_pre; int HP_clif_process_whisper_message_post; + int HP_clif_validate_message_pre; + int HP_clif_validate_message_post; int HP_clif_wisexin_pre; int HP_clif_wisexin_post; int HP_clif_wisall_pre; diff --git a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc index a710ed6e6..66201dd53 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.HookingPoints.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -661,6 +661,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(clif->messageln, HP_clif_messageln) }, { HP_POP(clif->process_chat_message, HP_clif_process_chat_message) }, { HP_POP(clif->process_whisper_message, HP_clif_process_whisper_message) }, + { HP_POP(clif->validate_message, HP_clif_validate_message) }, { HP_POP(clif->wisexin, HP_clif_wisexin) }, { HP_POP(clif->wisall, HP_clif_wisall) }, { HP_POP(clif->PMIgnoreList, HP_clif_PMIgnoreList) }, diff --git a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc index 7dc4d79b5..6603c6761 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 @@ -79,11 +79,11 @@ bool HP_HCache_check(const char *file) { } return retVal___; } -FILE* HP_HCache_open(const char *file, const char *opt) { +FILE * HP_HCache_open(const char *file, const char *opt) { int hIndex = 0; - FILE* retVal___ = NULL; + FILE * retVal___ = NULL; if (HPMHooks.count.HP_HCache_open_pre > 0) { - FILE* (*preHookFunc) (const char **file, const char **opt); + FILE * (*preHookFunc) (const char **file, const char **opt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_HCache_open_pre[hIndex].func; @@ -98,7 +98,7 @@ FILE* HP_HCache_open(const char *file, const char *opt) { retVal___ = HPMHooks.source.HCache.open(file, opt); } if (HPMHooks.count.HP_HCache_open_post > 0) { - FILE* (*postHookFunc) (FILE* retVal___, const char *file, const char *opt); + FILE * (*postHookFunc) (FILE * retVal___, const char *file, const char *opt); for (hIndex = 0; hIndex < HPMHooks.count.HP_HCache_open_post; hIndex++) { postHookFunc = HPMHooks.list.HP_HCache_open_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, opt); @@ -645,11 +645,11 @@ void HP_achievement_readdb_ranks(void) { } return; } -const struct achievement_data* HP_achievement_get(int aid) { +const struct achievement_data * HP_achievement_get(int aid) { int hIndex = 0; - const struct achievement_data* retVal___ = NULL; + const struct achievement_data * retVal___ = NULL; if (HPMHooks.count.HP_achievement_get_pre > 0) { - const struct achievement_data* (*preHookFunc) (int *aid); + const struct achievement_data * (*preHookFunc) (int *aid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_achievement_get_pre[hIndex].func; @@ -664,7 +664,7 @@ const struct achievement_data* HP_achievement_get(int aid) { retVal___ = HPMHooks.source.achievement.get(aid); } if (HPMHooks.count.HP_achievement_get_post > 0) { - const struct achievement_data* (*postHookFunc) (const struct achievement_data* retVal___, int aid); + const struct achievement_data * (*postHookFunc) (const struct achievement_data * retVal___, int aid); for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_achievement_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, aid); @@ -672,11 +672,11 @@ const struct achievement_data* HP_achievement_get(int aid) { } return retVal___; } -struct achievement* HP_achievement_ensure(struct map_session_data *sd, const struct achievement_data *ad) { +struct achievement * HP_achievement_ensure(struct map_session_data *sd, const struct achievement_data *ad) { int hIndex = 0; - struct achievement* retVal___ = NULL; + struct achievement * retVal___ = NULL; if (HPMHooks.count.HP_achievement_ensure_pre > 0) { - struct achievement* (*preHookFunc) (struct map_session_data **sd, const struct achievement_data **ad); + struct achievement * (*preHookFunc) (struct map_session_data **sd, const struct achievement_data **ad); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_ensure_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_achievement_ensure_pre[hIndex].func; @@ -691,7 +691,7 @@ struct achievement* HP_achievement_ensure(struct map_session_data *sd, const str retVal___ = HPMHooks.source.achievement.ensure(sd, ad); } if (HPMHooks.count.HP_achievement_ensure_post > 0) { - struct achievement* (*postHookFunc) (struct achievement* retVal___, struct map_session_data *sd, const struct achievement_data *ad); + struct achievement * (*postHookFunc) (struct achievement * retVal___, struct map_session_data *sd, const struct achievement_data *ad); for (hIndex = 0; hIndex < HPMHooks.count.HP_achievement_ensure_post; hIndex++) { postHookFunc = HPMHooks.list.HP_achievement_ensure_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, ad); @@ -1725,11 +1725,11 @@ void HP_atcommand_load_groups(GroupSettings **groups, struct config_setting_t ** } return; } -AtCommandInfo* HP_atcommand_exists(const char *name) { +AtCommandInfo * HP_atcommand_exists(const char *name) { int hIndex = 0; - AtCommandInfo* retVal___ = NULL; + AtCommandInfo * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_exists_pre > 0) { - AtCommandInfo* (*preHookFunc) (const char **name); + AtCommandInfo * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_exists_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_exists_pre[hIndex].func; @@ -1744,7 +1744,7 @@ AtCommandInfo* HP_atcommand_exists(const char *name) { retVal___ = HPMHooks.source.atcommand.exists(name); } if (HPMHooks.count.HP_atcommand_exists_post > 0) { - AtCommandInfo* (*postHookFunc) (AtCommandInfo* retVal___, const char *name); + AtCommandInfo * (*postHookFunc) (AtCommandInfo * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_exists_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_exists_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -1805,11 +1805,11 @@ void HP_atcommand_final_msg(void) { } return; } -struct atcmd_binding_data* HP_atcommand_get_bind_byname(const char *name) { +struct atcmd_binding_data * HP_atcommand_get_bind_byname(const char *name) { int hIndex = 0; - struct atcmd_binding_data* retVal___ = NULL; + struct atcmd_binding_data * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_get_bind_byname_pre > 0) { - struct atcmd_binding_data* (*preHookFunc) (const char **name); + struct atcmd_binding_data * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_get_bind_byname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_get_bind_byname_pre[hIndex].func; @@ -1824,7 +1824,7 @@ struct atcmd_binding_data* HP_atcommand_get_bind_byname(const char *name) { retVal___ = HPMHooks.source.atcommand.get_bind_byname(name); } if (HPMHooks.count.HP_atcommand_get_bind_byname_post > 0) { - struct atcmd_binding_data* (*postHookFunc) (struct atcmd_binding_data* retVal___, const char *name); + struct atcmd_binding_data * (*postHookFunc) (struct atcmd_binding_data * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_get_bind_byname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_get_bind_byname_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -1832,11 +1832,11 @@ struct atcmd_binding_data* HP_atcommand_get_bind_byname(const char *name) { } return retVal___; } -AtCommandInfo* HP_atcommand_get_info_byname(const char *name) { +AtCommandInfo * HP_atcommand_get_info_byname(const char *name) { int hIndex = 0; - AtCommandInfo* retVal___ = NULL; + AtCommandInfo * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_get_info_byname_pre > 0) { - AtCommandInfo* (*preHookFunc) (const char **name); + AtCommandInfo * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_get_info_byname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_get_info_byname_pre[hIndex].func; @@ -1851,7 +1851,7 @@ AtCommandInfo* HP_atcommand_get_info_byname(const char *name) { retVal___ = HPMHooks.source.atcommand.get_info_byname(name); } if (HPMHooks.count.HP_atcommand_get_info_byname_post > 0) { - AtCommandInfo* (*postHookFunc) (AtCommandInfo* retVal___, const char *name); + AtCommandInfo * (*postHookFunc) (AtCommandInfo * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_get_info_byname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_get_info_byname_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -1859,11 +1859,11 @@ AtCommandInfo* HP_atcommand_get_info_byname(const char *name) { } return retVal___; } -const char* HP_atcommand_check_alias(const char *aliasname) { +const char * HP_atcommand_check_alias(const char *aliasname) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_check_alias_pre > 0) { - const char* (*preHookFunc) (const char **aliasname); + const char * (*preHookFunc) (const char **aliasname); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_check_alias_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_check_alias_pre[hIndex].func; @@ -1878,7 +1878,7 @@ const char* HP_atcommand_check_alias(const char *aliasname) { retVal___ = HPMHooks.source.atcommand.check_alias(aliasname); } if (HPMHooks.count.HP_atcommand_check_alias_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *aliasname); + const char * (*postHookFunc) (const char * retVal___, const char *aliasname); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_check_alias_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_check_alias_post[hIndex].func; retVal___ = postHookFunc(retVal___, aliasname); @@ -2430,11 +2430,11 @@ bool HP_atcommand_add(char *name, AtCommandFunc func, bool replace) { } return retVal___; } -const char* HP_atcommand_msg(int msg_number) { +const char * HP_atcommand_msg(int msg_number) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_msg_pre > 0) { - const char* (*preHookFunc) (int *msg_number); + const char * (*preHookFunc) (int *msg_number); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_msg_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_msg_pre[hIndex].func; @@ -2449,7 +2449,7 @@ const char* HP_atcommand_msg(int msg_number) { retVal___ = HPMHooks.source.atcommand.msg(msg_number); } if (HPMHooks.count.HP_atcommand_msg_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int msg_number); + const char * (*postHookFunc) (const char * retVal___, int msg_number); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_msg_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_msg_post[hIndex].func; retVal___ = postHookFunc(retVal___, msg_number); @@ -2483,11 +2483,11 @@ void HP_atcommand_expand_message_table(void) { } return; } -const char* HP_atcommand_msgfd(int fd, int msg_number) { +const char * HP_atcommand_msgfd(int fd, int msg_number) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_msgfd_pre > 0) { - const char* (*preHookFunc) (int *fd, int *msg_number); + const char * (*preHookFunc) (int *fd, int *msg_number); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_msgfd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_msgfd_pre[hIndex].func; @@ -2502,7 +2502,7 @@ const char* HP_atcommand_msgfd(int fd, int msg_number) { retVal___ = HPMHooks.source.atcommand.msgfd(fd, msg_number); } if (HPMHooks.count.HP_atcommand_msgfd_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int fd, int msg_number); + const char * (*postHookFunc) (const char * retVal___, int fd, int msg_number); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_msgfd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_msgfd_post[hIndex].func; retVal___ = postHookFunc(retVal___, fd, msg_number); @@ -2510,11 +2510,11 @@ const char* HP_atcommand_msgfd(int fd, int msg_number) { } return retVal___; } -const char* HP_atcommand_msgsd(struct map_session_data *sd, int msg_number) { +const char * HP_atcommand_msgsd(struct map_session_data *sd, int msg_number) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_atcommand_msgsd_pre > 0) { - const char* (*preHookFunc) (struct map_session_data **sd, int *msg_number); + const char * (*preHookFunc) (struct map_session_data **sd, int *msg_number); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_msgsd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_atcommand_msgsd_pre[hIndex].func; @@ -2529,7 +2529,7 @@ const char* HP_atcommand_msgsd(struct map_session_data *sd, int msg_number) { retVal___ = HPMHooks.source.atcommand.msgsd(sd, msg_number); } if (HPMHooks.count.HP_atcommand_msgsd_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct map_session_data *sd, int msg_number); + const char * (*postHookFunc) (const char * retVal___, struct map_session_data *sd, int msg_number); for (hIndex = 0; hIndex < HPMHooks.count.HP_atcommand_msgsd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_atcommand_msgsd_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, msg_number); @@ -3263,11 +3263,11 @@ int64 HP_battle_calc_defense(int attack_type, struct block_list *src, struct blo } return retVal___; } -struct block_list* HP_battle_get_master(struct block_list *src) { +struct block_list * HP_battle_get_master(struct block_list *src) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_battle_get_master_pre > 0) { - struct block_list* (*preHookFunc) (struct block_list **src); + struct block_list * (*preHookFunc) (struct block_list **src); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_master_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_battle_get_master_pre[hIndex].func; @@ -3282,7 +3282,7 @@ struct block_list* HP_battle_get_master(struct block_list *src) { retVal___ = HPMHooks.source.battle.get_master(src); } if (HPMHooks.count.HP_battle_get_master_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct block_list *src); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct block_list *src); for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_master_post; hIndex++) { postHookFunc = HPMHooks.list.HP_battle_get_master_post[hIndex].func; retVal___ = postHookFunc(retVal___, src); @@ -3290,11 +3290,11 @@ struct block_list* HP_battle_get_master(struct block_list *src) { } return retVal___; } -struct block_list* HP_battle_get_targeted(struct block_list *target) { +struct block_list * HP_battle_get_targeted(struct block_list *target) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_battle_get_targeted_pre > 0) { - struct block_list* (*preHookFunc) (struct block_list **target); + struct block_list * (*preHookFunc) (struct block_list **target); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_targeted_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_battle_get_targeted_pre[hIndex].func; @@ -3309,7 +3309,7 @@ struct block_list* HP_battle_get_targeted(struct block_list *target) { retVal___ = HPMHooks.source.battle.get_targeted(target); } if (HPMHooks.count.HP_battle_get_targeted_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct block_list *target); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct block_list *target); for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_targeted_post; hIndex++) { postHookFunc = HPMHooks.list.HP_battle_get_targeted_post[hIndex].func; retVal___ = postHookFunc(retVal___, target); @@ -3317,11 +3317,11 @@ struct block_list* HP_battle_get_targeted(struct block_list *target) { } return retVal___; } -struct block_list* HP_battle_get_enemy(struct block_list *target, int type, int range) { +struct block_list * HP_battle_get_enemy(struct block_list *target, int type, int range) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_battle_get_enemy_pre > 0) { - struct block_list* (*preHookFunc) (struct block_list **target, int *type, int *range); + struct block_list * (*preHookFunc) (struct block_list **target, int *type, int *range); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_enemy_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_battle_get_enemy_pre[hIndex].func; @@ -3336,7 +3336,7 @@ struct block_list* HP_battle_get_enemy(struct block_list *target, int type, int retVal___ = HPMHooks.source.battle.get_enemy(target, type, range); } if (HPMHooks.count.HP_battle_get_enemy_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct block_list *target, int type, int range); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct block_list *target, int type, int range); for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_enemy_post; hIndex++) { postHookFunc = HPMHooks.list.HP_battle_get_enemy_post[hIndex].func; retVal___ = postHookFunc(retVal___, target, type, range); @@ -4060,11 +4060,11 @@ void HP_battle_config_adjust(void) { } return; } -struct block_list* HP_battle_get_enemy_area(struct block_list *src, int x, int y, int range, int type, int ignore_id) { +struct block_list * HP_battle_get_enemy_area(struct block_list *src, int x, int y, int range, int type, int ignore_id) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_battle_get_enemy_area_pre > 0) { - struct block_list* (*preHookFunc) (struct block_list **src, int *x, int *y, int *range, int *type, int *ignore_id); + struct block_list * (*preHookFunc) (struct block_list **src, int *x, int *y, int *range, int *type, int *ignore_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_enemy_area_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_battle_get_enemy_area_pre[hIndex].func; @@ -4079,7 +4079,7 @@ struct block_list* HP_battle_get_enemy_area(struct block_list *src, int x, int y retVal___ = HPMHooks.source.battle.get_enemy_area(src, x, y, range, type, ignore_id); } if (HPMHooks.count.HP_battle_get_enemy_area_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct block_list *src, int x, int y, int range, int type, int ignore_id); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct block_list *src, int x, int y, int range, int type, int ignore_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_battle_get_enemy_area_post; hIndex++) { postHookFunc = HPMHooks.list.HP_battle_get_enemy_area_post[hIndex].func; retVal___ = postHookFunc(retVal___, src, x, y, range, type, ignore_id); @@ -4277,11 +4277,11 @@ void HP_bg_final(void) { } return; } -struct bg_arena* HP_bg_name2arena(const char *name) { +struct bg_arena * HP_bg_name2arena(const char *name) { int hIndex = 0; - struct bg_arena* retVal___ = NULL; + struct bg_arena * retVal___ = NULL; if (HPMHooks.count.HP_bg_name2arena_pre > 0) { - struct bg_arena* (*preHookFunc) (const char **name); + struct bg_arena * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_bg_name2arena_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_bg_name2arena_pre[hIndex].func; @@ -4296,7 +4296,7 @@ struct bg_arena* HP_bg_name2arena(const char *name) { retVal___ = HPMHooks.source.bg.name2arena(name); } if (HPMHooks.count.HP_bg_name2arena_post > 0) { - struct bg_arena* (*postHookFunc) (struct bg_arena* retVal___, const char *name); + struct bg_arena * (*postHookFunc) (struct bg_arena * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_bg_name2arena_post; hIndex++) { postHookFunc = HPMHooks.list.HP_bg_name2arena_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -4594,11 +4594,11 @@ void HP_bg_queue_check(struct bg_arena *arena) { } return; } -struct battleground_data* HP_bg_team_search(int bg_id) { +struct battleground_data * HP_bg_team_search(int bg_id) { int hIndex = 0; - struct battleground_data* retVal___ = NULL; + struct battleground_data * retVal___ = NULL; if (HPMHooks.count.HP_bg_team_search_pre > 0) { - struct battleground_data* (*preHookFunc) (int *bg_id); + struct battleground_data * (*preHookFunc) (int *bg_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_bg_team_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_bg_team_search_pre[hIndex].func; @@ -4613,7 +4613,7 @@ struct battleground_data* HP_bg_team_search(int bg_id) { retVal___ = HPMHooks.source.bg.team_search(bg_id); } if (HPMHooks.count.HP_bg_team_search_post > 0) { - struct battleground_data* (*postHookFunc) (struct battleground_data* retVal___, int bg_id); + struct battleground_data * (*postHookFunc) (struct battleground_data * retVal___, int bg_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_bg_team_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_bg_team_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, bg_id); @@ -4621,11 +4621,11 @@ struct battleground_data* HP_bg_team_search(int bg_id) { } return retVal___; } -struct map_session_data* HP_bg_getavailablesd(struct battleground_data *bgd) { +struct map_session_data * HP_bg_getavailablesd(struct battleground_data *bgd) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_bg_getavailablesd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct battleground_data **bgd); + struct map_session_data * (*preHookFunc) (struct battleground_data **bgd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_bg_getavailablesd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_bg_getavailablesd_pre[hIndex].func; @@ -4640,7 +4640,7 @@ struct map_session_data* HP_bg_getavailablesd(struct battleground_data *bgd) { retVal___ = HPMHooks.source.bg.getavailablesd(bgd); } if (HPMHooks.count.HP_bg_getavailablesd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct battleground_data *bgd); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct battleground_data *bgd); for (hIndex = 0; hIndex < HPMHooks.count.HP_bg_getavailablesd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_bg_getavailablesd_post[hIndex].func; retVal___ = postHookFunc(retVal___, bgd); @@ -5330,11 +5330,11 @@ void HP_channel_final(void) { } return; } -struct channel_data* HP_channel_search(const char *name, struct map_session_data *sd) { +struct channel_data * HP_channel_search(const char *name, struct map_session_data *sd) { int hIndex = 0; - struct channel_data* retVal___ = NULL; + struct channel_data * retVal___ = NULL; if (HPMHooks.count.HP_channel_search_pre > 0) { - struct channel_data* (*preHookFunc) (const char **name, struct map_session_data **sd); + struct channel_data * (*preHookFunc) (const char **name, struct map_session_data **sd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_channel_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_channel_search_pre[hIndex].func; @@ -5349,7 +5349,7 @@ struct channel_data* HP_channel_search(const char *name, struct map_session_data retVal___ = HPMHooks.source.channel.search(name, sd); } if (HPMHooks.count.HP_channel_search_post > 0) { - struct channel_data* (*postHookFunc) (struct channel_data* retVal___, const char *name, struct map_session_data *sd); + struct channel_data * (*postHookFunc) (struct channel_data * retVal___, const char *name, struct map_session_data *sd); for (hIndex = 0; hIndex < HPMHooks.count.HP_channel_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_channel_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, name, sd); @@ -5357,11 +5357,11 @@ struct channel_data* HP_channel_search(const char *name, struct map_session_data } return retVal___; } -struct channel_data* HP_channel_create(enum channel_types type, const char *name, unsigned char color) { +struct channel_data * HP_channel_create(enum channel_types type, const char *name, unsigned char color) { int hIndex = 0; - struct channel_data* retVal___ = NULL; + struct channel_data * retVal___ = NULL; if (HPMHooks.count.HP_channel_create_pre > 0) { - struct channel_data* (*preHookFunc) (enum channel_types *type, const char **name, unsigned char *color); + struct channel_data * (*preHookFunc) (enum channel_types *type, const char **name, unsigned char *color); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_channel_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_channel_create_pre[hIndex].func; @@ -5376,7 +5376,7 @@ struct channel_data* HP_channel_create(enum channel_types type, const char *name retVal___ = HPMHooks.source.channel.create(type, name, color); } if (HPMHooks.count.HP_channel_create_post > 0) { - struct channel_data* (*postHookFunc) (struct channel_data* retVal___, enum channel_types type, const char *name, unsigned char color); + struct channel_data * (*postHookFunc) (struct channel_data * retVal___, enum channel_types type, const char *name, unsigned char color); for (hIndex = 0; hIndex < HPMHooks.count.HP_channel_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_channel_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, type, name, color); @@ -6154,11 +6154,11 @@ bool HP_chat_trigger_event(struct chat_data *cd) { } return retVal___; } -struct chat_data* HP_chat_create(struct block_list *bl, const char *title, const char *pass, int limit, bool pub, int trigger, const char *ev, int zeny, int min_level, int max_level) { +struct chat_data * HP_chat_create(struct block_list *bl, const char *title, const char *pass, int limit, bool pub, int trigger, const char *ev, int zeny, int min_level, int max_level) { int hIndex = 0; - struct chat_data* retVal___ = NULL; + struct chat_data * retVal___ = NULL; if (HPMHooks.count.HP_chat_create_pre > 0) { - struct chat_data* (*preHookFunc) (struct block_list **bl, const char **title, const char **pass, int *limit, bool *pub, int *trigger, const char **ev, int *zeny, int *min_level, int *max_level); + struct chat_data * (*preHookFunc) (struct block_list **bl, const char **title, const char **pass, int *limit, bool *pub, int *trigger, const char **ev, int *zeny, int *min_level, int *max_level); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_chat_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_chat_create_pre[hIndex].func; @@ -6173,7 +6173,7 @@ struct chat_data* HP_chat_create(struct block_list *bl, const char *title, const retVal___ = HPMHooks.source.chat.create(bl, title, pass, limit, pub, trigger, ev, zeny, min_level, max_level); } if (HPMHooks.count.HP_chat_create_post > 0) { - struct chat_data* (*postHookFunc) (struct chat_data* retVal___, struct block_list *bl, const char *title, const char *pass, int limit, bool pub, int trigger, const char *ev, int zeny, int min_level, int max_level); + struct chat_data * (*postHookFunc) (struct chat_data * retVal___, struct block_list *bl, const char *title, const char *pass, int limit, bool pub, int trigger, const char *ev, int zeny, int min_level, int max_level); for (hIndex = 0; hIndex < HPMHooks.count.HP_chat_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_chat_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, title, pass, limit, pub, trigger, ev, zeny, min_level, max_level); @@ -6418,11 +6418,11 @@ void HP_chrif_check_shutdown(void) { } return; } -struct auth_node* HP_chrif_search(int account_id) { +struct auth_node * HP_chrif_search(int account_id) { int hIndex = 0; - struct auth_node* retVal___ = NULL; + struct auth_node * retVal___ = NULL; if (HPMHooks.count.HP_chrif_search_pre > 0) { - struct auth_node* (*preHookFunc) (int *account_id); + struct auth_node * (*preHookFunc) (int *account_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_chrif_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_chrif_search_pre[hIndex].func; @@ -6437,7 +6437,7 @@ struct auth_node* HP_chrif_search(int account_id) { retVal___ = HPMHooks.source.chrif.search(account_id); } if (HPMHooks.count.HP_chrif_search_post > 0) { - struct auth_node* (*postHookFunc) (struct auth_node* retVal___, int account_id); + struct auth_node * (*postHookFunc) (struct auth_node * retVal___, int account_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_chrif_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_chrif_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, account_id); @@ -6445,11 +6445,11 @@ struct auth_node* HP_chrif_search(int account_id) { } return retVal___; } -struct auth_node* HP_chrif_auth_check(int account_id, int char_id, enum sd_state state) { +struct auth_node * HP_chrif_auth_check(int account_id, int char_id, enum sd_state state) { int hIndex = 0; - struct auth_node* retVal___ = NULL; + struct auth_node * retVal___ = NULL; if (HPMHooks.count.HP_chrif_auth_check_pre > 0) { - struct auth_node* (*preHookFunc) (int *account_id, int *char_id, enum sd_state *state); + struct auth_node * (*preHookFunc) (int *account_id, int *char_id, enum sd_state *state); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_chrif_auth_check_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_chrif_auth_check_pre[hIndex].func; @@ -6464,7 +6464,7 @@ struct auth_node* HP_chrif_auth_check(int account_id, int char_id, enum sd_state retVal___ = HPMHooks.source.chrif.auth_check(account_id, char_id, state); } if (HPMHooks.count.HP_chrif_auth_check_post > 0) { - struct auth_node* (*postHookFunc) (struct auth_node* retVal___, int account_id, int char_id, enum sd_state state); + struct auth_node * (*postHookFunc) (struct auth_node * retVal___, int account_id, int char_id, enum sd_state state); for (hIndex = 0; hIndex < HPMHooks.count.HP_chrif_auth_check_post; hIndex++) { postHookFunc = HPMHooks.list.HP_chrif_auth_check_post[hIndex].func; retVal___ = postHookFunc(retVal___, account_id, char_id, state); @@ -8139,11 +8139,11 @@ void HP_clan_read_buffs(struct clan *c, struct config_setting_t *buff, const cha } return; } -struct clan* HP_clan_search(int clan_id) { +struct clan * HP_clan_search(int clan_id) { int hIndex = 0; - struct clan* retVal___ = NULL; + struct clan * retVal___ = NULL; if (HPMHooks.count.HP_clan_search_pre > 0) { - struct clan* (*preHookFunc) (int *clan_id); + struct clan * (*preHookFunc) (int *clan_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clan_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clan_search_pre[hIndex].func; @@ -8158,7 +8158,7 @@ struct clan* HP_clan_search(int clan_id) { retVal___ = HPMHooks.source.clan.search(clan_id); } if (HPMHooks.count.HP_clan_search_post > 0) { - struct clan* (*postHookFunc) (struct clan* retVal___, int clan_id); + struct clan * (*postHookFunc) (struct clan * retVal___, int clan_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_clan_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clan_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, clan_id); @@ -8166,11 +8166,11 @@ struct clan* HP_clan_search(int clan_id) { } return retVal___; } -struct clan* HP_clan_searchname(const char *name) { +struct clan * HP_clan_searchname(const char *name) { int hIndex = 0; - struct clan* retVal___ = NULL; + struct clan * retVal___ = NULL; if (HPMHooks.count.HP_clan_searchname_pre > 0) { - struct clan* (*preHookFunc) (const char **name); + struct clan * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clan_searchname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clan_searchname_pre[hIndex].func; @@ -8185,7 +8185,7 @@ struct clan* HP_clan_searchname(const char *name) { retVal___ = HPMHooks.source.clan.searchname(name); } if (HPMHooks.count.HP_clan_searchname_post > 0) { - struct clan* (*postHookFunc) (struct clan* retVal___, const char *name); + struct clan * (*postHookFunc) (struct clan * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_clan_searchname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clan_searchname_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -8193,11 +8193,11 @@ struct clan* HP_clan_searchname(const char *name) { } return retVal___; } -struct map_session_data* HP_clan_getonlinesd(struct clan *c) { +struct map_session_data * HP_clan_getonlinesd(struct clan *c) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_clan_getonlinesd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct clan **c); + struct map_session_data * (*preHookFunc) (struct clan **c); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clan_getonlinesd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clan_getonlinesd_pre[hIndex].func; @@ -8212,7 +8212,7 @@ struct map_session_data* HP_clan_getonlinesd(struct clan *c) { retVal___ = HPMHooks.source.clan.getonlinesd(c); } if (HPMHooks.count.HP_clan_getonlinesd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct clan *c); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct clan *c); for (hIndex = 0; hIndex < HPMHooks.count.HP_clan_getonlinesd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clan_getonlinesd_post[hIndex].func; retVal___ = postHookFunc(retVal___, c); @@ -8926,11 +8926,11 @@ int HP_clif_parse(int fd) { } return retVal___; } -const struct s_packet_db* HP_clif_packet(int packet_id) { +const struct s_packet_db * HP_clif_packet(int packet_id) { int hIndex = 0; - const struct s_packet_db* retVal___ = NULL; + const struct s_packet_db * retVal___ = NULL; if (HPMHooks.count.HP_clif_packet_pre > 0) { - const struct s_packet_db* (*preHookFunc) (int *packet_id); + const struct s_packet_db * (*preHookFunc) (int *packet_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_packet_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_packet_pre[hIndex].func; @@ -8945,7 +8945,7 @@ const struct s_packet_db* HP_clif_packet(int packet_id) { retVal___ = HPMHooks.source.clif.packet(packet_id); } if (HPMHooks.count.HP_clif_packet_post > 0) { - const struct s_packet_db* (*postHookFunc) (const struct s_packet_db* retVal___, int packet_id); + const struct s_packet_db * (*postHookFunc) (const struct s_packet_db * retVal___, int packet_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_packet_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_packet_post[hIndex].func; retVal___ = postHookFunc(retVal___, packet_id); @@ -16538,11 +16538,11 @@ void HP_clif_messageln(const int fd, const char *mes) { } return; } -const char* HP_clif_process_chat_message(struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen) { +const char * HP_clif_process_chat_message(struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_clif_process_chat_message_pre > 0) { - const char* (*preHookFunc) (struct map_session_data **sd, const struct packet_chat_message **packet, char **out_buf, int *out_buflen); + const char * (*preHookFunc) (struct map_session_data **sd, const struct packet_chat_message **packet, char **out_buf, int *out_buflen); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_process_chat_message_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_process_chat_message_pre[hIndex].func; @@ -16557,7 +16557,7 @@ const char* HP_clif_process_chat_message(struct map_session_data *sd, const stru retVal___ = HPMHooks.source.clif.process_chat_message(sd, packet, out_buf, out_buflen); } if (HPMHooks.count.HP_clif_process_chat_message_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen); + const char * (*postHookFunc) (const char * retVal___, struct map_session_data *sd, const struct packet_chat_message *packet, char *out_buf, int out_buflen); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_process_chat_message_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_process_chat_message_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, packet, out_buf, out_buflen); @@ -16592,6 +16592,33 @@ bool HP_clif_process_whisper_message(struct map_session_data *sd, const struct p } return retVal___; } +bool HP_clif_validate_message(struct map_session_data *sd, char *message) { + int hIndex = 0; + bool retVal___ = false; + if (HPMHooks.count.HP_clif_validate_message_pre > 0) { + bool (*preHookFunc) (struct map_session_data **sd, char **message); + *HPMforce_return = false; + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_validate_message_pre; hIndex++) { + preHookFunc = HPMHooks.list.HP_clif_validate_message_pre[hIndex].func; + retVal___ = preHookFunc(&sd, &message); + } + if (*HPMforce_return) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.clif.validate_message(sd, message); + } + if (HPMHooks.count.HP_clif_validate_message_post > 0) { + bool (*postHookFunc) (bool retVal___, struct map_session_data *sd, char *message); + for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_validate_message_post; hIndex++) { + postHookFunc = HPMHooks.list.HP_clif_validate_message_post[hIndex].func; + retVal___ = postHookFunc(retVal___, sd, message); + } + } + return retVal___; +} void HP_clif_wisexin(struct map_session_data *sd, int type, int flag) { int hIndex = 0; if (HPMHooks.count.HP_clif_wisexin_pre > 0) { @@ -29038,11 +29065,11 @@ void HP_clif_pSelectCart(int fd, struct map_session_data *sd) { } return; } -const char* HP_clif_get_bl_name(const struct block_list *bl) { +const char * HP_clif_get_bl_name(const struct block_list *bl) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_clif_get_bl_name_pre > 0) { - const char* (*preHookFunc) (const struct block_list **bl); + const char * (*preHookFunc) (const struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_get_bl_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_clif_get_bl_name_pre[hIndex].func; @@ -29057,7 +29084,7 @@ const char* HP_clif_get_bl_name(const struct block_list *bl) { retVal___ = HPMHooks.source.clif.get_bl_name(bl); } if (HPMHooks.count.HP_clif_get_bl_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct block_list *bl); + const char * (*postHookFunc) (const char * retVal___, const struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_clif_get_bl_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_clif_get_bl_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -33174,11 +33201,11 @@ bool HP_cmdline_arg_next_value(const char *name, int current_arg, int argc) { } return retVal___; } -const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { +const char * HP_cmdline_arg_source(struct CmdlineArgData *arg) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_cmdline_arg_source_pre > 0) { - const char* (*preHookFunc) (struct CmdlineArgData **arg); + const char * (*preHookFunc) (struct CmdlineArgData **arg); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_cmdline_arg_source_pre[hIndex].func; @@ -33193,7 +33220,7 @@ const char* HP_cmdline_arg_source(struct CmdlineArgData *arg) { retVal___ = HPMHooks.source.cmdline.arg_source(arg); } if (HPMHooks.count.HP_cmdline_arg_source_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct CmdlineArgData *arg); + const char * (*postHookFunc) (const char * retVal___, struct CmdlineArgData *arg); for (hIndex = 0; hIndex < HPMHooks.count.HP_cmdline_arg_source_post; hIndex++) { postHookFunc = HPMHooks.list.HP_cmdline_arg_source_post[hIndex].func; retVal___ = postHookFunc(retVal___, arg); @@ -33469,11 +33496,11 @@ DBReleaser HP_DB_custom_release(enum DBReleaseOption which) { } return retVal___; } -struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { +struct DBMap * HP_DB_alloc(const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen) { int hIndex = 0; - struct DBMap* retVal___ = NULL; + struct DBMap * retVal___ = NULL; if (HPMHooks.count.HP_DB_alloc_pre > 0) { - struct DBMap* (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); + struct DBMap * (*preHookFunc) (const char **file, const char **func, int *line, enum DBType *type, enum DBOptions *options, unsigned short *maxlen); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_alloc_pre[hIndex].func; @@ -33488,7 +33515,7 @@ struct DBMap* HP_DB_alloc(const char *file, const char *func, int line, enum DBT retVal___ = HPMHooks.source.DB.alloc(file, func, line, type, options, maxlen); } if (HPMHooks.count.HP_DB_alloc_post > 0) { - struct DBMap* (*postHookFunc) (struct DBMap* retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); + struct DBMap * (*postHookFunc) (struct DBMap * retVal___, const char *file, const char *func, int line, enum DBType type, enum DBOptions options, unsigned short maxlen); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_alloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_alloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, file, func, line, type, options, maxlen); @@ -33766,11 +33793,11 @@ unsigned int HP_DB_data2ui(struct DBData *data) { } return retVal___; } -void* HP_DB_data2ptr(struct DBData *data) { +void * HP_DB_data2ptr(struct DBData *data) { int hIndex = 0; - void* retVal___ = NULL; + void * retVal___ = NULL; if (HPMHooks.count.HP_DB_data2ptr_pre > 0) { - void* (*preHookFunc) (struct DBData **data); + void * (*preHookFunc) (struct DBData **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_DB_data2ptr_pre[hIndex].func; @@ -33785,7 +33812,7 @@ void* HP_DB_data2ptr(struct DBData *data) { retVal___ = HPMHooks.source.DB.data2ptr(data); } if (HPMHooks.count.HP_DB_data2ptr_post > 0) { - void* (*postHookFunc) (void* retVal___, struct DBData *data); + void * (*postHookFunc) (void * retVal___, struct DBData *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_DB_data2ptr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_DB_data2ptr_post[hIndex].func; retVal___ = postHookFunc(retVal___, data); @@ -34216,11 +34243,11 @@ bool HP_elemental_class(int class_) { } return retVal___; } -struct view_data* HP_elemental_get_viewdata(int class_) { +struct view_data * HP_elemental_get_viewdata(int class_) { int hIndex = 0; - struct view_data* retVal___ = NULL; + struct view_data * retVal___ = NULL; if (HPMHooks.count.HP_elemental_get_viewdata_pre > 0) { - struct view_data* (*preHookFunc) (int *class_); + struct view_data * (*preHookFunc) (int *class_); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_elemental_get_viewdata_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_elemental_get_viewdata_pre[hIndex].func; @@ -34235,7 +34262,7 @@ struct view_data* HP_elemental_get_viewdata(int class_) { retVal___ = HPMHooks.source.elemental.get_viewdata(class_); } if (HPMHooks.count.HP_elemental_get_viewdata_post > 0) { - struct view_data* (*postHookFunc) (struct view_data* retVal___, int class_); + struct view_data * (*postHookFunc) (struct view_data * retVal___, int class_); for (hIndex = 0; hIndex < HPMHooks.count.HP_elemental_get_viewdata_post; hIndex++) { postHookFunc = HPMHooks.list.HP_elemental_get_viewdata_post[hIndex].func; retVal___ = postHookFunc(retVal___, class_); @@ -35093,11 +35120,11 @@ int HP_enchantui_db_final_sub(union DBKey key, struct DBData *data, va_list ap) } return retVal___; } -struct enchant_info* HP_enchantui_exists(int64 id) { +struct enchant_info * HP_enchantui_exists(int64 id) { int hIndex = 0; - struct enchant_info* retVal___ = NULL; + struct enchant_info * retVal___ = NULL; if (HPMHooks.count.HP_enchantui_exists_pre > 0) { - struct enchant_info* (*preHookFunc) (int64 *id); + struct enchant_info * (*preHookFunc) (int64 *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_enchantui_exists_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_enchantui_exists_pre[hIndex].func; @@ -35112,7 +35139,7 @@ struct enchant_info* HP_enchantui_exists(int64 id) { retVal___ = HPMHooks.source.enchantui.exists(id); } if (HPMHooks.count.HP_enchantui_exists_post > 0) { - struct enchant_info* (*postHookFunc) (struct enchant_info* retVal___, int64 id); + struct enchant_info * (*postHookFunc) (struct enchant_info * retVal___, int64 id); for (hIndex = 0; hIndex < HPMHooks.count.HP_enchantui_exists_post; hIndex++) { postHookFunc = HPMHooks.list.HP_enchantui_exists_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -35470,11 +35497,11 @@ bool HP_enchantui_read_db_libconfig_itemrate_list(const struct config_setting_t } return retVal___; } -const struct enchant_info* HP_enchantui_validate_targetitem(struct map_session_data *sd, int64 enchant_group, int index) { +const struct enchant_info * HP_enchantui_validate_targetitem(struct map_session_data *sd, int64 enchant_group, int index) { int hIndex = 0; - const struct enchant_info* retVal___ = NULL; + const struct enchant_info * retVal___ = NULL; if (HPMHooks.count.HP_enchantui_validate_targetitem_pre > 0) { - const struct enchant_info* (*preHookFunc) (struct map_session_data **sd, int64 *enchant_group, int *index); + const struct enchant_info * (*preHookFunc) (struct map_session_data **sd, int64 *enchant_group, int *index); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_enchantui_validate_targetitem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_enchantui_validate_targetitem_pre[hIndex].func; @@ -35489,7 +35516,7 @@ const struct enchant_info* HP_enchantui_validate_targetitem(struct map_session_d retVal___ = HPMHooks.source.enchantui.validate_targetitem(sd, enchant_group, index); } if (HPMHooks.count.HP_enchantui_validate_targetitem_post > 0) { - const struct enchant_info* (*postHookFunc) (const struct enchant_info* retVal___, struct map_session_data *sd, int64 enchant_group, int index); + const struct enchant_info * (*postHookFunc) (const struct enchant_info * retVal___, struct map_session_data *sd, int64 enchant_group, int index); for (hIndex = 0; hIndex < HPMHooks.count.HP_enchantui_validate_targetitem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_enchantui_validate_targetitem_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, enchant_group, index); @@ -35978,11 +36005,11 @@ void HP_goldpc_final(void) { } return; } -struct goldpc_mode* HP_goldpc_exists(int id) { +struct goldpc_mode * HP_goldpc_exists(int id) { int hIndex = 0; - struct goldpc_mode* retVal___ = NULL; + struct goldpc_mode * retVal___ = NULL; if (HPMHooks.count.HP_goldpc_exists_pre > 0) { - struct goldpc_mode* (*preHookFunc) (int *id); + struct goldpc_mode * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_goldpc_exists_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_goldpc_exists_pre[hIndex].func; @@ -35997,7 +36024,7 @@ struct goldpc_mode* HP_goldpc_exists(int id) { retVal___ = HPMHooks.source.goldpc.exists(id); } if (HPMHooks.count.HP_goldpc_exists_post > 0) { - struct goldpc_mode* (*postHookFunc) (struct goldpc_mode* retVal___, int id); + struct goldpc_mode * (*postHookFunc) (struct goldpc_mode * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_goldpc_exists_post; hIndex++) { postHookFunc = HPMHooks.list.HP_goldpc_exists_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -36485,11 +36512,11 @@ bool HP_grader_announce_behavior_string2enum(const char *str, enum grade_announc } return retVal___; } -const struct s_grade_info* HP_grader_get_grade_info(int grade) { +const struct s_grade_info * HP_grader_get_grade_info(int grade) { int hIndex = 0; - const struct s_grade_info* retVal___ = NULL; + const struct s_grade_info * retVal___ = NULL; if (HPMHooks.count.HP_grader_get_grade_info_pre > 0) { - const struct s_grade_info* (*preHookFunc) (int *grade); + const struct s_grade_info * (*preHookFunc) (int *grade); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_grader_get_grade_info_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_grader_get_grade_info_pre[hIndex].func; @@ -36504,7 +36531,7 @@ const struct s_grade_info* HP_grader_get_grade_info(int grade) { retVal___ = HPMHooks.source.grader.get_grade_info(grade); } if (HPMHooks.count.HP_grader_get_grade_info_post > 0) { - const struct s_grade_info* (*postHookFunc) (const struct s_grade_info* retVal___, int grade); + const struct s_grade_info * (*postHookFunc) (const struct s_grade_info * retVal___, int grade); for (hIndex = 0; hIndex < HPMHooks.count.HP_grader_get_grade_info_post; hIndex++) { postHookFunc = HPMHooks.list.HP_grader_get_grade_info_post[hIndex].func; retVal___ = postHookFunc(retVal___, grade); @@ -36617,11 +36644,11 @@ void HP_grfio_final(void) { } return; } -void* HP_grfio_reads(const char *fname, int *size) { +void * HP_grfio_reads(const char *fname, int *size) { int hIndex = 0; - void* retVal___ = NULL; + void * retVal___ = NULL; if (HPMHooks.count.HP_grfio_reads_pre > 0) { - void* (*preHookFunc) (const char **fname, int **size); + void * (*preHookFunc) (const char **fname, int **size); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_grfio_reads_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_grfio_reads_pre[hIndex].func; @@ -36636,7 +36663,7 @@ void* HP_grfio_reads(const char *fname, int *size) { retVal___ = HPMHooks.source.grfio.reads(fname, size); } if (HPMHooks.count.HP_grfio_reads_post > 0) { - void* (*postHookFunc) (void* retVal___, const char *fname, int *size); + void * (*postHookFunc) (void * retVal___, const char *fname, int *size); for (hIndex = 0; hIndex < HPMHooks.count.HP_grfio_reads_post; hIndex++) { postHookFunc = HPMHooks.list.HP_grfio_reads_post[hIndex].func; retVal___ = postHookFunc(retVal___, fname, size); @@ -36644,11 +36671,11 @@ void* HP_grfio_reads(const char *fname, int *size) { } return retVal___; } -const char* HP_grfio_find_file(const char *fname) { +const char * HP_grfio_find_file(const char *fname) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_grfio_find_file_pre > 0) { - const char* (*preHookFunc) (const char **fname); + const char * (*preHookFunc) (const char **fname); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_grfio_find_file_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_grfio_find_file_pre[hIndex].func; @@ -36663,7 +36690,7 @@ const char* HP_grfio_find_file(const char *fname) { retVal___ = HPMHooks.source.grfio.find_file(fname); } if (HPMHooks.count.HP_grfio_find_file_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *fname); + const char * (*postHookFunc) (const char * retVal___, const char *fname); for (hIndex = 0; hIndex < HPMHooks.count.HP_grfio_find_file_post; hIndex++) { postHookFunc = HPMHooks.list.HP_grfio_find_file_post[hIndex].func; retVal___ = postHookFunc(retVal___, fname); @@ -36778,11 +36805,11 @@ void HP_grfio_report_error(int err) { } return; } -char* HP_grfio_decode_filename(unsigned char *buf, int len) { +char * HP_grfio_decode_filename(unsigned char *buf, int len) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_grfio_decode_filename_pre > 0) { - char* (*preHookFunc) (unsigned char **buf, int *len); + char * (*preHookFunc) (unsigned char **buf, int *len); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_grfio_decode_filename_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_grfio_decode_filename_pre[hIndex].func; @@ -36797,7 +36824,7 @@ char* HP_grfio_decode_filename(unsigned char *buf, int len) { retVal___ = HPMHooks.source.grfio.decode_filename(buf, len); } if (HPMHooks.count.HP_grfio_decode_filename_post > 0) { - char* (*postHookFunc) (char* retVal___, unsigned char *buf, int len); + char * (*postHookFunc) (char * retVal___, unsigned char *buf, int len); for (hIndex = 0; hIndex < HPMHooks.count.HP_grfio_decode_filename_post; hIndex++) { postHookFunc = HPMHooks.list.HP_grfio_decode_filename_post[hIndex].func; retVal___ = postHookFunc(retVal___, buf, len); @@ -36993,11 +37020,11 @@ bool HP_guild_isallied(int guild_id, int guild_id2) { } return retVal___; } -struct guild* HP_guild_search(int guild_id) { +struct guild * HP_guild_search(int guild_id) { int hIndex = 0; - struct guild* retVal___ = NULL; + struct guild * retVal___ = NULL; if (HPMHooks.count.HP_guild_search_pre > 0) { - struct guild* (*preHookFunc) (int *guild_id); + struct guild * (*preHookFunc) (int *guild_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_search_pre[hIndex].func; @@ -37012,7 +37039,7 @@ struct guild* HP_guild_search(int guild_id) { retVal___ = HPMHooks.source.guild.search(guild_id); } if (HPMHooks.count.HP_guild_search_post > 0) { - struct guild* (*postHookFunc) (struct guild* retVal___, int guild_id); + struct guild * (*postHookFunc) (struct guild * retVal___, int guild_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, guild_id); @@ -37020,11 +37047,11 @@ struct guild* HP_guild_search(int guild_id) { } return retVal___; } -struct guild* HP_guild_searchname(const char *str) { +struct guild * HP_guild_searchname(const char *str) { int hIndex = 0; - struct guild* retVal___ = NULL; + struct guild * retVal___ = NULL; if (HPMHooks.count.HP_guild_searchname_pre > 0) { - struct guild* (*preHookFunc) (const char **str); + struct guild * (*preHookFunc) (const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_searchname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_searchname_pre[hIndex].func; @@ -37039,7 +37066,7 @@ struct guild* HP_guild_searchname(const char *str) { retVal___ = HPMHooks.source.guild.searchname(str); } if (HPMHooks.count.HP_guild_searchname_post > 0) { - struct guild* (*postHookFunc) (struct guild* retVal___, const char *str); + struct guild * (*postHookFunc) (struct guild * retVal___, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_searchname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_searchname_post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -37047,11 +37074,11 @@ struct guild* HP_guild_searchname(const char *str) { } return retVal___; } -struct guild_castle* HP_guild_castle_search(int gcid) { +struct guild_castle * HP_guild_castle_search(int gcid) { int hIndex = 0; - struct guild_castle* retVal___ = NULL; + struct guild_castle * retVal___ = NULL; if (HPMHooks.count.HP_guild_castle_search_pre > 0) { - struct guild_castle* (*preHookFunc) (int *gcid); + struct guild_castle * (*preHookFunc) (int *gcid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_castle_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_castle_search_pre[hIndex].func; @@ -37066,7 +37093,7 @@ struct guild_castle* HP_guild_castle_search(int gcid) { retVal___ = HPMHooks.source.guild.castle_search(gcid); } if (HPMHooks.count.HP_guild_castle_search_post > 0) { - struct guild_castle* (*postHookFunc) (struct guild_castle* retVal___, int gcid); + struct guild_castle * (*postHookFunc) (struct guild_castle * retVal___, int gcid); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_castle_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_castle_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, gcid); @@ -37074,11 +37101,11 @@ struct guild_castle* HP_guild_castle_search(int gcid) { } return retVal___; } -struct guild_castle* HP_guild_mapname2gc(const char *mapname) { +struct guild_castle * HP_guild_mapname2gc(const char *mapname) { int hIndex = 0; - struct guild_castle* retVal___ = NULL; + struct guild_castle * retVal___ = NULL; if (HPMHooks.count.HP_guild_mapname2gc_pre > 0) { - struct guild_castle* (*preHookFunc) (const char **mapname); + struct guild_castle * (*preHookFunc) (const char **mapname); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_mapname2gc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_mapname2gc_pre[hIndex].func; @@ -37093,7 +37120,7 @@ struct guild_castle* HP_guild_mapname2gc(const char *mapname) { retVal___ = HPMHooks.source.guild.mapname2gc(mapname); } if (HPMHooks.count.HP_guild_mapname2gc_post > 0) { - struct guild_castle* (*postHookFunc) (struct guild_castle* retVal___, const char *mapname); + struct guild_castle * (*postHookFunc) (struct guild_castle * retVal___, const char *mapname); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_mapname2gc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_mapname2gc_post[hIndex].func; retVal___ = postHookFunc(retVal___, mapname); @@ -37101,11 +37128,11 @@ struct guild_castle* HP_guild_mapname2gc(const char *mapname) { } return retVal___; } -struct guild_castle* HP_guild_mapindex2gc(short map_index) { +struct guild_castle * HP_guild_mapindex2gc(short map_index) { int hIndex = 0; - struct guild_castle* retVal___ = NULL; + struct guild_castle * retVal___ = NULL; if (HPMHooks.count.HP_guild_mapindex2gc_pre > 0) { - struct guild_castle* (*preHookFunc) (short *map_index); + struct guild_castle * (*preHookFunc) (short *map_index); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_mapindex2gc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_mapindex2gc_pre[hIndex].func; @@ -37120,7 +37147,7 @@ struct guild_castle* HP_guild_mapindex2gc(short map_index) { retVal___ = HPMHooks.source.guild.mapindex2gc(map_index); } if (HPMHooks.count.HP_guild_mapindex2gc_post > 0) { - struct guild_castle* (*postHookFunc) (struct guild_castle* retVal___, short map_index); + struct guild_castle * (*postHookFunc) (struct guild_castle * retVal___, short map_index); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_mapindex2gc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_mapindex2gc_post[hIndex].func; retVal___ = postHookFunc(retVal___, map_index); @@ -37128,11 +37155,11 @@ struct guild_castle* HP_guild_mapindex2gc(short map_index) { } return retVal___; } -struct map_session_data* HP_guild_getavailablesd(struct guild *g) { +struct map_session_data * HP_guild_getavailablesd(struct guild *g) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_guild_getavailablesd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct guild **g); + struct map_session_data * (*preHookFunc) (struct guild **g); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_getavailablesd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_getavailablesd_pre[hIndex].func; @@ -37147,7 +37174,7 @@ struct map_session_data* HP_guild_getavailablesd(struct guild *g) { retVal___ = HPMHooks.source.guild.getavailablesd(g); } if (HPMHooks.count.HP_guild_getavailablesd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct guild *g); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct guild *g); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_getavailablesd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_getavailablesd_post[hIndex].func; retVal___ = postHookFunc(retVal___, g); @@ -38654,11 +38681,11 @@ int HP_guild_payexp_timer(int tid, int64 tick, int id, intptr_t data) { } return retVal___; } -struct map_session_data* HP_guild_sd_check(int guild_id, int account_id, int char_id) { +struct map_session_data * HP_guild_sd_check(int guild_id, int account_id, int char_id) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_guild_sd_check_pre > 0) { - struct map_session_data* (*preHookFunc) (int *guild_id, int *account_id, int *char_id); + struct map_session_data * (*preHookFunc) (int *guild_id, int *account_id, int *char_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_sd_check_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_guild_sd_check_pre[hIndex].func; @@ -38673,7 +38700,7 @@ struct map_session_data* HP_guild_sd_check(int guild_id, int account_id, int cha retVal___ = HPMHooks.source.guild.sd_check(guild_id, account_id, char_id); } if (HPMHooks.count.HP_guild_sd_check_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, int guild_id, int account_id, int char_id); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, int guild_id, int account_id, int char_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_guild_sd_check_post; hIndex++) { postHookFunc = HPMHooks.list.HP_guild_sd_check_post[hIndex].func; retVal___ = postHookFunc(retVal___, guild_id, account_id, char_id); @@ -39259,11 +39286,11 @@ int HP_guild_castle_owner_change_foreach(struct map_session_data *sd, va_list ap return retVal___; } /* guild_storage_interface */ -struct guild_storage* HP_gstorage_ensure(int guild_id) { +struct guild_storage * HP_gstorage_ensure(int guild_id) { int hIndex = 0; - struct guild_storage* retVal___ = NULL; + struct guild_storage * retVal___ = NULL; if (HPMHooks.count.HP_gstorage_ensure_pre > 0) { - struct guild_storage* (*preHookFunc) (int *guild_id); + struct guild_storage * (*preHookFunc) (int *guild_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_gstorage_ensure_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_gstorage_ensure_pre[hIndex].func; @@ -39278,7 +39305,7 @@ struct guild_storage* HP_gstorage_ensure(int guild_id) { retVal___ = HPMHooks.source.gstorage.ensure(guild_id); } if (HPMHooks.count.HP_gstorage_ensure_post > 0) { - struct guild_storage* (*postHookFunc) (struct guild_storage* retVal___, int guild_id); + struct guild_storage * (*postHookFunc) (struct guild_storage * retVal___, int guild_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_gstorage_ensure_post; hIndex++) { postHookFunc = HPMHooks.list.HP_gstorage_ensure_post[hIndex].func; retVal___ = postHookFunc(retVal___, guild_id); @@ -39832,11 +39859,11 @@ void HP_homun_reload_skill(void) { } return; } -struct view_data* HP_homun_get_viewdata(int class_) { +struct view_data * HP_homun_get_viewdata(int class_) { int hIndex = 0; - struct view_data* retVal___ = NULL; + struct view_data * retVal___ = NULL; if (HPMHooks.count.HP_homun_get_viewdata_pre > 0) { - struct view_data* (*preHookFunc) (int *class_); + struct view_data * (*preHookFunc) (int *class_); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_homun_get_viewdata_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_homun_get_viewdata_pre[hIndex].func; @@ -39851,7 +39878,7 @@ struct view_data* HP_homun_get_viewdata(int class_) { retVal___ = HPMHooks.source.homun.get_viewdata(class_); } if (HPMHooks.count.HP_homun_get_viewdata_post > 0) { - struct view_data* (*postHookFunc) (struct view_data* retVal___, int class_); + struct view_data * (*postHookFunc) (struct view_data * retVal___, int class_); for (hIndex = 0; hIndex < HPMHooks.count.HP_homun_get_viewdata_post; hIndex++) { postHookFunc = HPMHooks.list.HP_homun_get_viewdata_post[hIndex].func; retVal___ = postHookFunc(retVal___, class_); @@ -45602,11 +45629,11 @@ void HP_ircbot_parse_source(char *source, char *nick, char *ident, char *host) { } return; } -struct irc_func* HP_ircbot_func_search(char *function_name) { +struct irc_func * HP_ircbot_func_search(char *function_name) { int hIndex = 0; - struct irc_func* retVal___ = NULL; + struct irc_func * retVal___ = NULL; if (HPMHooks.count.HP_ircbot_func_search_pre > 0) { - struct irc_func* (*preHookFunc) (char **function_name); + struct irc_func * (*preHookFunc) (char **function_name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_ircbot_func_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_ircbot_func_search_pre[hIndex].func; @@ -45621,7 +45648,7 @@ struct irc_func* HP_ircbot_func_search(char *function_name) { retVal___ = HPMHooks.source.ircbot.func_search(function_name); } if (HPMHooks.count.HP_ircbot_func_search_post > 0) { - struct irc_func* (*postHookFunc) (struct irc_func* retVal___, char *function_name); + struct irc_func * (*postHookFunc) (struct irc_func * retVal___, char *function_name); for (hIndex = 0; hIndex < HPMHooks.count.HP_ircbot_func_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_ircbot_func_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, function_name); @@ -46233,11 +46260,11 @@ bool HP_itemdb_read_cached_packages(const char *config_filename) { } return retVal___; } -struct item_data* HP_itemdb_name2id(const char *str) { +struct item_data * HP_itemdb_name2id(const char *str) { int hIndex = 0; - struct item_data* retVal___ = NULL; + struct item_data * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_name2id_pre > 0) { - struct item_data* (*preHookFunc) (const char **str); + struct item_data * (*preHookFunc) (const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_name2id_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_name2id_pre[hIndex].func; @@ -46252,7 +46279,7 @@ struct item_data* HP_itemdb_name2id(const char *str) { retVal___ = HPMHooks.source.itemdb.name2id(str); } if (HPMHooks.count.HP_itemdb_name2id_post > 0) { - struct item_data* (*postHookFunc) (struct item_data* retVal___, const char *str); + struct item_data * (*postHookFunc) (struct item_data * retVal___, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_name2id_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_name2id_post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -46260,11 +46287,11 @@ struct item_data* HP_itemdb_name2id(const char *str) { } return retVal___; } -struct item_data* HP_itemdb_search_name(const char *name) { +struct item_data * HP_itemdb_search_name(const char *name) { int hIndex = 0; - struct item_data* retVal___ = NULL; + struct item_data * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_search_name_pre > 0) { - struct item_data* (*preHookFunc) (const char **name); + struct item_data * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_search_name_pre[hIndex].func; @@ -46279,7 +46306,7 @@ struct item_data* HP_itemdb_search_name(const char *name) { retVal___ = HPMHooks.source.itemdb.search_name(name); } if (HPMHooks.count.HP_itemdb_search_name_post > 0) { - struct item_data* (*postHookFunc) (struct item_data* retVal___, const char *name); + struct item_data * (*postHookFunc) (struct item_data * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_search_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -46314,11 +46341,11 @@ int HP_itemdb_search_name_array(struct item_data **data, const int size, const c } return retVal___; } -struct item_data* HP_itemdb_load(int nameid) { +struct item_data * HP_itemdb_load(int nameid) { int hIndex = 0; - struct item_data* retVal___ = NULL; + struct item_data * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_load_pre > 0) { - struct item_data* (*preHookFunc) (int *nameid); + struct item_data * (*preHookFunc) (int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_load_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_load_pre[hIndex].func; @@ -46333,7 +46360,7 @@ struct item_data* HP_itemdb_load(int nameid) { retVal___ = HPMHooks.source.itemdb.load(nameid); } if (HPMHooks.count.HP_itemdb_load_post > 0) { - struct item_data* (*postHookFunc) (struct item_data* retVal___, int nameid); + struct item_data * (*postHookFunc) (struct item_data * retVal___, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_load_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_load_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid); @@ -46341,11 +46368,11 @@ struct item_data* HP_itemdb_load(int nameid) { } return retVal___; } -struct item_data* HP_itemdb_search(int nameid) { +struct item_data * HP_itemdb_search(int nameid) { int hIndex = 0; - struct item_data* retVal___ = NULL; + struct item_data * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_search_pre > 0) { - struct item_data* (*preHookFunc) (int *nameid); + struct item_data * (*preHookFunc) (int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_search_pre[hIndex].func; @@ -46360,7 +46387,7 @@ struct item_data* HP_itemdb_search(int nameid) { retVal___ = HPMHooks.source.itemdb.search(nameid); } if (HPMHooks.count.HP_itemdb_search_post > 0) { - struct item_data* (*postHookFunc) (struct item_data* retVal___, int nameid); + struct item_data * (*postHookFunc) (struct item_data * retVal___, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid); @@ -46368,11 +46395,11 @@ struct item_data* HP_itemdb_search(int nameid) { } return retVal___; } -struct item_data* HP_itemdb_exists(int nameid) { +struct item_data * HP_itemdb_exists(int nameid) { int hIndex = 0; - struct item_data* retVal___ = NULL; + struct item_data * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_exists_pre > 0) { - struct item_data* (*preHookFunc) (int *nameid); + struct item_data * (*preHookFunc) (int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_exists_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_exists_pre[hIndex].func; @@ -46387,7 +46414,7 @@ struct item_data* HP_itemdb_exists(int nameid) { retVal___ = HPMHooks.source.itemdb.exists(nameid); } if (HPMHooks.count.HP_itemdb_exists_post > 0) { - struct item_data* (*postHookFunc) (struct item_data* retVal___, int nameid); + struct item_data * (*postHookFunc) (struct item_data * retVal___, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_exists_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_exists_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid); @@ -46395,11 +46422,11 @@ struct item_data* HP_itemdb_exists(int nameid) { } return retVal___; } -struct itemdb_option* HP_itemdb_option_exists(int idx) { +struct itemdb_option * HP_itemdb_option_exists(int idx) { int hIndex = 0; - struct itemdb_option* retVal___ = NULL; + struct itemdb_option * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_option_exists_pre > 0) { - struct itemdb_option* (*preHookFunc) (int *idx); + struct itemdb_option * (*preHookFunc) (int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_option_exists_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_option_exists_pre[hIndex].func; @@ -46414,7 +46441,7 @@ struct itemdb_option* HP_itemdb_option_exists(int idx) { retVal___ = HPMHooks.source.itemdb.option_exists(idx); } if (HPMHooks.count.HP_itemdb_option_exists_post > 0) { - struct itemdb_option* (*postHookFunc) (struct itemdb_option* retVal___, int idx); + struct itemdb_option * (*postHookFunc) (struct itemdb_option * retVal___, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_option_exists_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_option_exists_post[hIndex].func; retVal___ = postHookFunc(retVal___, idx); @@ -46422,11 +46449,11 @@ struct itemdb_option* HP_itemdb_option_exists(int idx) { } return retVal___; } -struct item_reform* HP_itemdb_reform_exists(int idx) { +struct item_reform * HP_itemdb_reform_exists(int idx) { int hIndex = 0; - struct item_reform* retVal___ = NULL; + struct item_reform * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_reform_exists_pre > 0) { - struct item_reform* (*preHookFunc) (int *idx); + struct item_reform * (*preHookFunc) (int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_reform_exists_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_reform_exists_pre[hIndex].func; @@ -46441,7 +46468,7 @@ struct item_reform* HP_itemdb_reform_exists(int idx) { retVal___ = HPMHooks.source.itemdb.reform_exists(idx); } if (HPMHooks.count.HP_itemdb_reform_exists_post > 0) { - struct item_reform* (*postHookFunc) (struct item_reform* retVal___, int idx); + struct item_reform * (*postHookFunc) (struct item_reform * retVal___, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_reform_exists_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_reform_exists_post[hIndex].func; retVal___ = postHookFunc(retVal___, idx); @@ -46476,11 +46503,11 @@ bool HP_itemdb_in_group(struct item_group *group, int nameid) { } return retVal___; } -const struct item_group* HP_itemdb_search_group(int nameid) { +const struct item_group * HP_itemdb_search_group(int nameid) { int hIndex = 0; - const struct item_group* retVal___ = NULL; + const struct item_group * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_search_group_pre > 0) { - const struct item_group* (*preHookFunc) (int *nameid); + const struct item_group * (*preHookFunc) (int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_group_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_search_group_pre[hIndex].func; @@ -46495,7 +46522,7 @@ const struct item_group* HP_itemdb_search_group(int nameid) { retVal___ = HPMHooks.source.itemdb.search_group(nameid); } if (HPMHooks.count.HP_itemdb_search_group_post > 0) { - const struct item_group* (*postHookFunc) (const struct item_group* retVal___, int nameid); + const struct item_group * (*postHookFunc) (const struct item_group * retVal___, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_group_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_search_group_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid); @@ -46676,11 +46703,11 @@ int HP_itemdb_searchrandomid(struct item_group *group) { } return retVal___; } -const char* HP_itemdb_typename(enum item_types type) { +const char * HP_itemdb_typename(enum item_types type) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_typename_pre > 0) { - const char* (*preHookFunc) (enum item_types *type); + const char * (*preHookFunc) (enum item_types *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_typename_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_typename_pre[hIndex].func; @@ -46695,7 +46722,7 @@ const char* HP_itemdb_typename(enum item_types type) { retVal___ = HPMHooks.source.itemdb.typename(type); } if (HPMHooks.count.HP_itemdb_typename_post > 0) { - const char* (*postHookFunc) (const char* retVal___, enum item_types type); + const char * (*postHookFunc) (const char * retVal___, enum item_types type); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_typename_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_typename_post[hIndex].func; retVal___ = postHookFunc(retVal___, type); @@ -46781,11 +46808,11 @@ void HP_itemdb_create_dummy_data(void) { } return; } -struct item_data* HP_itemdb_create_item_data(int nameid) { +struct item_data * HP_itemdb_create_item_data(int nameid) { int hIndex = 0; - struct item_data* retVal___ = NULL; + struct item_data * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_create_item_data_pre > 0) { - struct item_data* (*preHookFunc) (int *nameid); + struct item_data * (*preHookFunc) (int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_create_item_data_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_create_item_data_pre[hIndex].func; @@ -46800,7 +46827,7 @@ struct item_data* HP_itemdb_create_item_data(int nameid) { retVal___ = HPMHooks.source.itemdb.create_item_data(nameid); } if (HPMHooks.count.HP_itemdb_create_item_data_post > 0) { - struct item_data* (*postHookFunc) (struct item_data* retVal___, int nameid); + struct item_data * (*postHookFunc) (struct item_data * retVal___, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_create_item_data_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_create_item_data_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid); @@ -47684,11 +47711,11 @@ void HP_itemdb_clear(bool total) { } return; } -struct item_combo* HP_itemdb_id2combo(int id) { +struct item_combo * HP_itemdb_id2combo(int id) { int hIndex = 0; - struct item_combo* retVal___ = NULL; + struct item_combo * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_id2combo_pre > 0) { - struct item_combo* (*preHookFunc) (int *id); + struct item_combo * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_id2combo_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_id2combo_pre[hIndex].func; @@ -47703,7 +47730,7 @@ struct item_combo* HP_itemdb_id2combo(int id) { retVal___ = HPMHooks.source.itemdb.id2combo(id); } if (HPMHooks.count.HP_itemdb_id2combo_post > 0) { - struct item_combo* (*postHookFunc) (struct item_combo* retVal___, int id); + struct item_combo * (*postHookFunc) (struct item_combo * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_id2combo_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_id2combo_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -48148,11 +48175,11 @@ void HP_itemdb_item_reform(struct map_session_data *sd, const struct item_reform } return; } -const struct item_reform* HP_itemdb_search_reform_baseitem(const struct item_data *itd, int nameid) { +const struct item_reform * HP_itemdb_search_reform_baseitem(const struct item_data *itd, int nameid) { int hIndex = 0; - const struct item_reform* retVal___ = NULL; + const struct item_reform * retVal___ = NULL; if (HPMHooks.count.HP_itemdb_search_reform_baseitem_pre > 0) { - const struct item_reform* (*preHookFunc) (const struct item_data **itd, int *nameid); + const struct item_reform * (*preHookFunc) (const struct item_data **itd, int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_reform_baseitem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_itemdb_search_reform_baseitem_pre[hIndex].func; @@ -48167,7 +48194,7 @@ const struct item_reform* HP_itemdb_search_reform_baseitem(const struct item_dat retVal___ = HPMHooks.source.itemdb.search_reform_baseitem(itd, nameid); } if (HPMHooks.count.HP_itemdb_search_reform_baseitem_post > 0) { - const struct item_reform* (*postHookFunc) (const struct item_reform* retVal___, const struct item_data *itd, int nameid); + const struct item_reform * (*postHookFunc) (const struct item_reform * retVal___, const struct item_data *itd, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_itemdb_search_reform_baseitem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_itemdb_search_reform_baseitem_post[hIndex].func; retVal___ = postHookFunc(retVal___, itd, nameid); @@ -48627,11 +48654,11 @@ int HP_libconfig_setting_get_bool(const struct config_setting_t *setting) { } return retVal___; } -const char* HP_libconfig_setting_get_string(const struct config_setting_t *setting) { +const char * HP_libconfig_setting_get_string(const struct config_setting_t *setting) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting); + const char * (*preHookFunc) (const struct config_setting_t **setting); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_pre[hIndex].func; @@ -48646,7 +48673,7 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti retVal___ = HPMHooks.source.libconfig.setting_get_string(setting); } if (HPMHooks.count.HP_libconfig_setting_get_string_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting); @@ -48654,11 +48681,11 @@ const char* HP_libconfig_setting_get_string(const struct config_setting_t *setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_lookup(struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_pre[hIndex].func; @@ -48673,7 +48700,7 @@ struct config_setting_t* HP_libconfig_setting_lookup(struct config_setting_t *se retVal___ = HPMHooks.source.libconfig.setting_lookup(setting, name); } if (HPMHooks.count.HP_libconfig_setting_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -49113,11 +49140,11 @@ int HP_libconfig_setting_get_bool_elem(const struct config_setting_t *setting, i } return retVal___; } -const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { +const char * HP_libconfig_setting_get_string_elem(const struct config_setting_t *setting, int idx) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_string_elem_pre > 0) { - const char* (*preHookFunc) (const struct config_setting_t **setting, int *idx); + const char * (*preHookFunc) (const struct config_setting_t **setting, int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_pre[hIndex].func; @@ -49132,7 +49159,7 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * retVal___ = HPMHooks.source.libconfig.setting_get_string_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_string_elem_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct config_setting_t *setting, int idx); + const char * (*postHookFunc) (const char * retVal___, const struct config_setting_t *setting, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -49140,11 +49167,11 @@ const char* HP_libconfig_setting_get_string_elem(const struct config_setting_t * } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_int_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_pre[hIndex].func; @@ -49159,7 +49186,7 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting retVal___ = HPMHooks.source.libconfig.setting_set_int_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -49167,11 +49194,11 @@ struct config_setting_t* HP_libconfig_setting_set_int_elem(struct config_setting } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { +struct config_setting_t * HP_libconfig_setting_set_int64_elem(struct config_setting_t *setting, int idx, int64 value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int64 *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_pre[hIndex].func; @@ -49186,7 +49213,7 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_int64_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_int64_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int64 value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int64 value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_int64_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_int64_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -49194,11 +49221,11 @@ struct config_setting_t* HP_libconfig_setting_set_int64_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { +struct config_setting_t * HP_libconfig_setting_set_float_elem(struct config_setting_t *setting, int idx, double value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_float_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, double *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_pre[hIndex].func; @@ -49213,7 +49240,7 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti retVal___ = HPMHooks.source.libconfig.setting_set_float_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_float_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, double value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, double value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_float_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_float_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -49221,11 +49248,11 @@ struct config_setting_t* HP_libconfig_setting_set_float_elem(struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { +struct config_setting_t * HP_libconfig_setting_set_bool_elem(struct config_setting_t *setting, int idx, int value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, int *value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_pre[hIndex].func; @@ -49240,7 +49267,7 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin retVal___ = HPMHooks.source.libconfig.setting_set_bool_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_bool_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, int value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, int value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_bool_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_bool_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -49248,11 +49275,11 @@ struct config_setting_t* HP_libconfig_setting_set_bool_elem(struct config_settin } return retVal___; } -struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { +struct config_setting_t * HP_libconfig_setting_set_string_elem(struct config_setting_t *setting, int idx, const char *value) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_set_string_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **setting, int *idx, const char **value); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_pre[hIndex].func; @@ -49267,7 +49294,7 @@ struct config_setting_t* HP_libconfig_setting_set_string_elem(struct config_sett retVal___ = HPMHooks.source.libconfig.setting_set_string_elem(setting, idx, value); } if (HPMHooks.count.HP_libconfig_setting_set_string_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *setting, int idx, const char *value); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *setting, int idx, const char *value); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_set_string_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_set_string_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx, value); @@ -49329,11 +49356,11 @@ int HP_libconfig_setting_length(const struct config_setting_t *setting) { } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { +struct config_setting_t * HP_libconfig_setting_get_elem(const struct config_setting_t *setting, unsigned int idx) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_elem_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, unsigned int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_pre[hIndex].func; @@ -49348,7 +49375,7 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti retVal___ = HPMHooks.source.libconfig.setting_get_elem(setting, idx); } if (HPMHooks.count.HP_libconfig_setting_get_elem_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, unsigned int idx); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, unsigned int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_elem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_elem_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, idx); @@ -49356,11 +49383,11 @@ struct config_setting_t* HP_libconfig_setting_get_elem(const struct config_setti } return retVal___; } -struct config_setting_t* HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { +struct config_setting_t * HP_libconfig_setting_get_member(const struct config_setting_t *setting, const char *name) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_get_member_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_setting_t **setting, const char **name); + struct config_setting_t * (*preHookFunc) (const struct config_setting_t **setting, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_pre[hIndex].func; @@ -49375,7 +49402,7 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set retVal___ = HPMHooks.source.libconfig.setting_get_member(setting, name); } if (HPMHooks.count.HP_libconfig_setting_get_member_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_setting_t *setting, const char *name); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_setting_t *setting, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_get_member_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_get_member_post[hIndex].func; retVal___ = postHookFunc(retVal___, setting, name); @@ -49383,11 +49410,11 @@ struct config_setting_t* HP_libconfig_setting_get_member(const struct config_set } return retVal___; } -struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { +struct config_setting_t * HP_libconfig_setting_add(struct config_setting_t *parent, const char *name, int type) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_setting_add_pre > 0) { - struct config_setting_t* (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); + struct config_setting_t * (*preHookFunc) (struct config_setting_t **parent, const char **name, int *type); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_setting_add_pre[hIndex].func; @@ -49402,7 +49429,7 @@ struct config_setting_t* HP_libconfig_setting_add(struct config_setting_t *paren retVal___ = HPMHooks.source.libconfig.setting_add(parent, name, type); } if (HPMHooks.count.HP_libconfig_setting_add_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, struct config_setting_t *parent, const char *name, int type); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, struct config_setting_t *parent, const char *name, int type); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_setting_add_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_setting_add_post[hIndex].func; retVal___ = postHookFunc(retVal___, parent, name, type); @@ -49490,11 +49517,11 @@ void HP_libconfig_setting_set_hook(struct config_setting_t *setting, void *hook) } return; } -struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, const char *filepath) { +struct config_setting_t * HP_libconfig_lookup(const struct config_t *config, const char *filepath) { int hIndex = 0; - struct config_setting_t* retVal___ = NULL; + struct config_setting_t * retVal___ = NULL; if (HPMHooks.count.HP_libconfig_lookup_pre > 0) { - struct config_setting_t* (*preHookFunc) (const struct config_t **config, const char **filepath); + struct config_setting_t * (*preHookFunc) (const struct config_t **config, const char **filepath); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libconfig_lookup_pre[hIndex].func; @@ -49509,7 +49536,7 @@ struct config_setting_t* HP_libconfig_lookup(const struct config_t *config, cons retVal___ = HPMHooks.source.libconfig.lookup(config, filepath); } if (HPMHooks.count.HP_libconfig_lookup_post > 0) { - struct config_setting_t* (*postHookFunc) (struct config_setting_t* retVal___, const struct config_t *config, const char *filepath); + struct config_setting_t * (*postHookFunc) (struct config_setting_t * retVal___, const struct config_t *config, const char *filepath); for (hIndex = 0; hIndex < HPMHooks.count.HP_libconfig_lookup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libconfig_lookup_post[hIndex].func; retVal___ = postHookFunc(retVal___, config, filepath); @@ -51806,11 +51833,11 @@ int HP_map_count_oncell(int16 m, int16 x, int16 y, int type, int flag) { } return retVal___; } -struct skill_unit* HP_map_find_skill_unit_oncell(struct block_list *target, int16 x, int16 y, uint16 skill_id, struct skill_unit *out_unit, int flag) { +struct skill_unit * HP_map_find_skill_unit_oncell(struct block_list *target, int16 x, int16 y, uint16 skill_id, struct skill_unit *out_unit, int flag) { int hIndex = 0; - struct skill_unit* retVal___ = NULL; + struct skill_unit * retVal___ = NULL; if (HPMHooks.count.HP_map_find_skill_unit_oncell_pre > 0) { - struct skill_unit* (*preHookFunc) (struct block_list **target, int16 *x, int16 *y, uint16 *skill_id, struct skill_unit **out_unit, int *flag); + struct skill_unit * (*preHookFunc) (struct block_list **target, int16 *x, int16 *y, uint16 *skill_id, struct skill_unit **out_unit, int *flag); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_find_skill_unit_oncell_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_find_skill_unit_oncell_pre[hIndex].func; @@ -51825,7 +51852,7 @@ struct skill_unit* HP_map_find_skill_unit_oncell(struct block_list *target, int1 retVal___ = HPMHooks.source.map.find_skill_unit_oncell(target, x, y, skill_id, out_unit, flag); } if (HPMHooks.count.HP_map_find_skill_unit_oncell_post > 0) { - struct skill_unit* (*postHookFunc) (struct skill_unit* retVal___, struct block_list *target, int16 x, int16 y, uint16 skill_id, struct skill_unit *out_unit, int flag); + struct skill_unit * (*postHookFunc) (struct skill_unit * retVal___, struct block_list *target, int16 x, int16 y, uint16 skill_id, struct skill_unit *out_unit, int flag); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_find_skill_unit_oncell_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_find_skill_unit_oncell_post[hIndex].func; retVal___ = postHookFunc(retVal___, target, x, y, skill_id, out_unit, flag); @@ -52153,11 +52180,11 @@ void HP_map_reqnickdb(struct map_session_data *sd, int charid) { } return; } -const char* HP_map_charid2nick(int charid) { +const char * HP_map_charid2nick(int charid) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_map_charid2nick_pre > 0) { - const char* (*preHookFunc) (int *charid); + const char * (*preHookFunc) (int *charid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_charid2nick_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_charid2nick_pre[hIndex].func; @@ -52172,7 +52199,7 @@ const char* HP_map_charid2nick(int charid) { retVal___ = HPMHooks.source.map.charid2nick(charid); } if (HPMHooks.count.HP_map_charid2nick_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int charid); + const char * (*postHookFunc) (const char * retVal___, int charid); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_charid2nick_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_charid2nick_post[hIndex].func; retVal___ = postHookFunc(retVal___, charid); @@ -52180,11 +52207,11 @@ const char* HP_map_charid2nick(int charid) { } return retVal___; } -struct map_session_data* HP_map_charid2sd(int charid) { +struct map_session_data * HP_map_charid2sd(int charid) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_map_charid2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (int *charid); + struct map_session_data * (*preHookFunc) (int *charid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_charid2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_charid2sd_pre[hIndex].func; @@ -52199,7 +52226,7 @@ struct map_session_data* HP_map_charid2sd(int charid) { retVal___ = HPMHooks.source.map.charid2sd(charid); } if (HPMHooks.count.HP_map_charid2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, int charid); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, int charid); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_charid2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_charid2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, charid); @@ -52697,11 +52724,11 @@ int HP_map_vforeachininstance(int ( *func ) (struct block_list *, va_list), int1 } return retVal___; } -struct map_session_data* HP_map_id2sd(int id) { +struct map_session_data * HP_map_id2sd(int id) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (int *id); + struct map_session_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2sd_pre[hIndex].func; @@ -52716,7 +52743,7 @@ struct map_session_data* HP_map_id2sd(int id) { retVal___ = HPMHooks.source.map.id2sd(id); } if (HPMHooks.count.HP_map_id2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, int id); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52724,11 +52751,11 @@ struct map_session_data* HP_map_id2sd(int id) { } return retVal___; } -struct npc_data* HP_map_id2nd(int id) { +struct npc_data * HP_map_id2nd(int id) { int hIndex = 0; - struct npc_data* retVal___ = NULL; + struct npc_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2nd_pre > 0) { - struct npc_data* (*preHookFunc) (int *id); + struct npc_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2nd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2nd_pre[hIndex].func; @@ -52743,7 +52770,7 @@ struct npc_data* HP_map_id2nd(int id) { retVal___ = HPMHooks.source.map.id2nd(id); } if (HPMHooks.count.HP_map_id2nd_post > 0) { - struct npc_data* (*postHookFunc) (struct npc_data* retVal___, int id); + struct npc_data * (*postHookFunc) (struct npc_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2nd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2nd_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52751,11 +52778,11 @@ struct npc_data* HP_map_id2nd(int id) { } return retVal___; } -struct mob_data* HP_map_id2md(int id) { +struct mob_data * HP_map_id2md(int id) { int hIndex = 0; - struct mob_data* retVal___ = NULL; + struct mob_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2md_pre > 0) { - struct mob_data* (*preHookFunc) (int *id); + struct mob_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2md_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2md_pre[hIndex].func; @@ -52770,7 +52797,7 @@ struct mob_data* HP_map_id2md(int id) { retVal___ = HPMHooks.source.map.id2md(id); } if (HPMHooks.count.HP_map_id2md_post > 0) { - struct mob_data* (*postHookFunc) (struct mob_data* retVal___, int id); + struct mob_data * (*postHookFunc) (struct mob_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2md_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2md_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52778,11 +52805,11 @@ struct mob_data* HP_map_id2md(int id) { } return retVal___; } -struct flooritem_data* HP_map_id2fi(int id) { +struct flooritem_data * HP_map_id2fi(int id) { int hIndex = 0; - struct flooritem_data* retVal___ = NULL; + struct flooritem_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2fi_pre > 0) { - struct flooritem_data* (*preHookFunc) (int *id); + struct flooritem_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2fi_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2fi_pre[hIndex].func; @@ -52797,7 +52824,7 @@ struct flooritem_data* HP_map_id2fi(int id) { retVal___ = HPMHooks.source.map.id2fi(id); } if (HPMHooks.count.HP_map_id2fi_post > 0) { - struct flooritem_data* (*postHookFunc) (struct flooritem_data* retVal___, int id); + struct flooritem_data * (*postHookFunc) (struct flooritem_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2fi_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2fi_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52805,11 +52832,11 @@ struct flooritem_data* HP_map_id2fi(int id) { } return retVal___; } -struct chat_data* HP_map_id2cd(int id) { +struct chat_data * HP_map_id2cd(int id) { int hIndex = 0; - struct chat_data* retVal___ = NULL; + struct chat_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2cd_pre > 0) { - struct chat_data* (*preHookFunc) (int *id); + struct chat_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2cd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2cd_pre[hIndex].func; @@ -52824,7 +52851,7 @@ struct chat_data* HP_map_id2cd(int id) { retVal___ = HPMHooks.source.map.id2cd(id); } if (HPMHooks.count.HP_map_id2cd_post > 0) { - struct chat_data* (*postHookFunc) (struct chat_data* retVal___, int id); + struct chat_data * (*postHookFunc) (struct chat_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2cd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2cd_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52832,11 +52859,11 @@ struct chat_data* HP_map_id2cd(int id) { } return retVal___; } -struct skill_unit* HP_map_id2su(int id) { +struct skill_unit * HP_map_id2su(int id) { int hIndex = 0; - struct skill_unit* retVal___ = NULL; + struct skill_unit * retVal___ = NULL; if (HPMHooks.count.HP_map_id2su_pre > 0) { - struct skill_unit* (*preHookFunc) (int *id); + struct skill_unit * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2su_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2su_pre[hIndex].func; @@ -52851,7 +52878,7 @@ struct skill_unit* HP_map_id2su(int id) { retVal___ = HPMHooks.source.map.id2su(id); } if (HPMHooks.count.HP_map_id2su_post > 0) { - struct skill_unit* (*postHookFunc) (struct skill_unit* retVal___, int id); + struct skill_unit * (*postHookFunc) (struct skill_unit * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2su_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2su_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52859,11 +52886,11 @@ struct skill_unit* HP_map_id2su(int id) { } return retVal___; } -struct pet_data* HP_map_id2pd(int id) { +struct pet_data * HP_map_id2pd(int id) { int hIndex = 0; - struct pet_data* retVal___ = NULL; + struct pet_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2pd_pre > 0) { - struct pet_data* (*preHookFunc) (int *id); + struct pet_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2pd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2pd_pre[hIndex].func; @@ -52878,7 +52905,7 @@ struct pet_data* HP_map_id2pd(int id) { retVal___ = HPMHooks.source.map.id2pd(id); } if (HPMHooks.count.HP_map_id2pd_post > 0) { - struct pet_data* (*postHookFunc) (struct pet_data* retVal___, int id); + struct pet_data * (*postHookFunc) (struct pet_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2pd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2pd_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52886,11 +52913,11 @@ struct pet_data* HP_map_id2pd(int id) { } return retVal___; } -struct homun_data* HP_map_id2hd(int id) { +struct homun_data * HP_map_id2hd(int id) { int hIndex = 0; - struct homun_data* retVal___ = NULL; + struct homun_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2hd_pre > 0) { - struct homun_data* (*preHookFunc) (int *id); + struct homun_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2hd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2hd_pre[hIndex].func; @@ -52905,7 +52932,7 @@ struct homun_data* HP_map_id2hd(int id) { retVal___ = HPMHooks.source.map.id2hd(id); } if (HPMHooks.count.HP_map_id2hd_post > 0) { - struct homun_data* (*postHookFunc) (struct homun_data* retVal___, int id); + struct homun_data * (*postHookFunc) (struct homun_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2hd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2hd_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52913,11 +52940,11 @@ struct homun_data* HP_map_id2hd(int id) { } return retVal___; } -struct mercenary_data* HP_map_id2mc(int id) { +struct mercenary_data * HP_map_id2mc(int id) { int hIndex = 0; - struct mercenary_data* retVal___ = NULL; + struct mercenary_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2mc_pre > 0) { - struct mercenary_data* (*preHookFunc) (int *id); + struct mercenary_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2mc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2mc_pre[hIndex].func; @@ -52932,7 +52959,7 @@ struct mercenary_data* HP_map_id2mc(int id) { retVal___ = HPMHooks.source.map.id2mc(id); } if (HPMHooks.count.HP_map_id2mc_post > 0) { - struct mercenary_data* (*postHookFunc) (struct mercenary_data* retVal___, int id); + struct mercenary_data * (*postHookFunc) (struct mercenary_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2mc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2mc_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52940,11 +52967,11 @@ struct mercenary_data* HP_map_id2mc(int id) { } return retVal___; } -struct elemental_data* HP_map_id2ed(int id) { +struct elemental_data * HP_map_id2ed(int id) { int hIndex = 0; - struct elemental_data* retVal___ = NULL; + struct elemental_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2ed_pre > 0) { - struct elemental_data* (*preHookFunc) (int *id); + struct elemental_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2ed_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2ed_pre[hIndex].func; @@ -52959,7 +52986,7 @@ struct elemental_data* HP_map_id2ed(int id) { retVal___ = HPMHooks.source.map.id2ed(id); } if (HPMHooks.count.HP_map_id2ed_post > 0) { - struct elemental_data* (*postHookFunc) (struct elemental_data* retVal___, int id); + struct elemental_data * (*postHookFunc) (struct elemental_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2ed_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2ed_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -52967,11 +52994,11 @@ struct elemental_data* HP_map_id2ed(int id) { } return retVal___; } -struct block_list* HP_map_id2bl(int id) { +struct block_list * HP_map_id2bl(int id) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_map_id2bl_pre > 0) { - struct block_list* (*preHookFunc) (int *id); + struct block_list * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2bl_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2bl_pre[hIndex].func; @@ -52986,7 +53013,7 @@ struct block_list* HP_map_id2bl(int id) { retVal___ = HPMHooks.source.map.id2bl(id); } if (HPMHooks.count.HP_map_id2bl_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, int id); + struct block_list * (*postHookFunc) (struct block_list * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2bl_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2bl_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -53127,11 +53154,11 @@ void HP_map_deliddb(struct block_list *bl) { } return; } -struct map_session_data* HP_map_nick2sd(const char *nick, bool allow_partial) { +struct map_session_data * HP_map_nick2sd(const char *nick, bool allow_partial) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_map_nick2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (const char **nick, bool *allow_partial); + struct map_session_data * (*preHookFunc) (const char **nick, bool *allow_partial); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_nick2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_nick2sd_pre[hIndex].func; @@ -53146,7 +53173,7 @@ struct map_session_data* HP_map_nick2sd(const char *nick, bool allow_partial) { retVal___ = HPMHooks.source.map.nick2sd(nick, allow_partial); } if (HPMHooks.count.HP_map_nick2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, const char *nick, bool allow_partial); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, const char *nick, bool allow_partial); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_nick2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_nick2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, nick, allow_partial); @@ -53154,11 +53181,11 @@ struct map_session_data* HP_map_nick2sd(const char *nick, bool allow_partial) { } return retVal___; } -struct mob_data* HP_map_getmob_boss(int16 m) { +struct mob_data * HP_map_getmob_boss(int16 m) { int hIndex = 0; - struct mob_data* retVal___ = NULL; + struct mob_data * retVal___ = NULL; if (HPMHooks.count.HP_map_getmob_boss_pre > 0) { - struct mob_data* (*preHookFunc) (int16 *m); + struct mob_data * (*preHookFunc) (int16 *m); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_getmob_boss_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_getmob_boss_pre[hIndex].func; @@ -53173,7 +53200,7 @@ struct mob_data* HP_map_getmob_boss(int16 m) { retVal___ = HPMHooks.source.map.getmob_boss(m); } if (HPMHooks.count.HP_map_getmob_boss_post > 0) { - struct mob_data* (*postHookFunc) (struct mob_data* retVal___, int16 m); + struct mob_data * (*postHookFunc) (struct mob_data * retVal___, int16 m); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_getmob_boss_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_getmob_boss_post[hIndex].func; retVal___ = postHookFunc(retVal___, m); @@ -53181,11 +53208,11 @@ struct mob_data* HP_map_getmob_boss(int16 m) { } return retVal___; } -struct mob_data* HP_map_id2boss(int id) { +struct mob_data * HP_map_id2boss(int id) { int hIndex = 0; - struct mob_data* retVal___ = NULL; + struct mob_data * retVal___ = NULL; if (HPMHooks.count.HP_map_id2boss_pre > 0) { - struct mob_data* (*preHookFunc) (int *id); + struct mob_data * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2boss_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_id2boss_pre[hIndex].func; @@ -53200,7 +53227,7 @@ struct mob_data* HP_map_id2boss(int id) { retVal___ = HPMHooks.source.map.id2boss(id); } if (HPMHooks.count.HP_map_id2boss_post > 0) { - struct mob_data* (*postHookFunc) (struct mob_data* retVal___, int id); + struct mob_data * (*postHookFunc) (struct mob_data * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_id2boss_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_id2boss_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -55042,11 +55069,11 @@ bool HP_map_remove_questinfo(int m, struct npc_data *nd) { } return retVal___; } -struct map_zone_data* HP_map_merge_zone(struct map_zone_data *main, struct map_zone_data *other) { +struct map_zone_data * HP_map_merge_zone(struct map_zone_data *main, struct map_zone_data *other) { int hIndex = 0; - struct map_zone_data* retVal___ = NULL; + struct map_zone_data * retVal___ = NULL; if (HPMHooks.count.HP_map_merge_zone_pre > 0) { - struct map_zone_data* (*preHookFunc) (struct map_zone_data **main, struct map_zone_data **other); + struct map_zone_data * (*preHookFunc) (struct map_zone_data **main, struct map_zone_data **other); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_map_merge_zone_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_map_merge_zone_pre[hIndex].func; @@ -55061,7 +55088,7 @@ struct map_zone_data* HP_map_merge_zone(struct map_zone_data *main, struct map_z retVal___ = HPMHooks.source.map.merge_zone(main, other); } if (HPMHooks.count.HP_map_merge_zone_post > 0) { - struct map_zone_data* (*postHookFunc) (struct map_zone_data* retVal___, struct map_zone_data *main, struct map_zone_data *other); + struct map_zone_data * (*postHookFunc) (struct map_zone_data * retVal___, struct map_zone_data *main, struct map_zone_data *other); for (hIndex = 0; hIndex < HPMHooks.count.HP_map_merge_zone_post; hIndex++) { postHookFunc = HPMHooks.list.HP_map_merge_zone_post[hIndex].func; retVal___ = postHookFunc(retVal___, main, other); @@ -55388,11 +55415,11 @@ void HP_mapindex_removemap(int index) { } return; } -const char* HP_mapindex_getmapname(const char *string, char *output) { +const char * HP_mapindex_getmapname(const char *string, char *output) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_mapindex_getmapname_pre > 0) { - const char* (*preHookFunc) (const char **string, char **output); + const char * (*preHookFunc) (const char **string, char **output); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapindex_getmapname_pre[hIndex].func; @@ -55407,7 +55434,7 @@ const char* HP_mapindex_getmapname(const char *string, char *output) { retVal___ = HPMHooks.source.mapindex.getmapname(string, output); } if (HPMHooks.count.HP_mapindex_getmapname_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *string, char *output); + const char * (*postHookFunc) (const char * retVal___, const char *string, char *output); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapindex_getmapname_post[hIndex].func; retVal___ = postHookFunc(retVal___, string, output); @@ -55415,11 +55442,11 @@ const char* HP_mapindex_getmapname(const char *string, char *output) { } return retVal___; } -const char* HP_mapindex_getmapname_ext(const char *string, char *output) { +const char * HP_mapindex_getmapname_ext(const char *string, char *output) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_mapindex_getmapname_ext_pre > 0) { - const char* (*preHookFunc) (const char **string, char **output); + const char * (*preHookFunc) (const char **string, char **output); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_ext_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapindex_getmapname_ext_pre[hIndex].func; @@ -55434,7 +55461,7 @@ const char* HP_mapindex_getmapname_ext(const char *string, char *output) { retVal___ = HPMHooks.source.mapindex.getmapname_ext(string, output); } if (HPMHooks.count.HP_mapindex_getmapname_ext_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *string, char *output); + const char * (*postHookFunc) (const char * retVal___, const char *string, char *output); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_getmapname_ext_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapindex_getmapname_ext_post[hIndex].func; retVal___ = postHookFunc(retVal___, string, output); @@ -55469,11 +55496,11 @@ unsigned short HP_mapindex_name2id(const char *p1) { } return retVal___; } -const char* HP_mapindex_id2name(uint16 id, const char *file, int line, const char *func) { +const char * HP_mapindex_id2name(uint16 id, const char *file, int line, const char *func) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_mapindex_id2name_pre > 0) { - const char* (*preHookFunc) (uint16 *id, const char **file, int *line, const char **func); + const char * (*preHookFunc) (uint16 *id, const char **file, int *line, const char **func); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_id2name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapindex_id2name_pre[hIndex].func; @@ -55488,7 +55515,7 @@ const char* HP_mapindex_id2name(uint16 id, const char *file, int line, const cha retVal___ = HPMHooks.source.mapindex.id2name(id, file, line, func); } if (HPMHooks.count.HP_mapindex_id2name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint16 id, const char *file, int line, const char *func); + const char * (*postHookFunc) (const char * retVal___, uint16 id, const char *file, int line, const char *func); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapindex_id2name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapindex_id2name_post[hIndex].func; retVal___ = postHookFunc(retVal___, id, file, line, func); @@ -55524,11 +55551,11 @@ bool HP_mapindex_check_default(void) { return retVal___; } /* mapit_interface */ -struct s_mapiterator* HP_mapit_alloc(enum e_mapitflags flags, enum bl_type types) { +struct s_mapiterator * HP_mapit_alloc(enum e_mapitflags flags, enum bl_type types) { int hIndex = 0; - struct s_mapiterator* retVal___ = NULL; + struct s_mapiterator * retVal___ = NULL; if (HPMHooks.count.HP_mapit_alloc_pre > 0) { - struct s_mapiterator* (*preHookFunc) (enum e_mapitflags *flags, enum bl_type *types); + struct s_mapiterator * (*preHookFunc) (enum e_mapitflags *flags, enum bl_type *types); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_alloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapit_alloc_pre[hIndex].func; @@ -55543,7 +55570,7 @@ struct s_mapiterator* HP_mapit_alloc(enum e_mapitflags flags, enum bl_type types retVal___ = HPMHooks.source.mapit.alloc(flags, types); } if (HPMHooks.count.HP_mapit_alloc_post > 0) { - struct s_mapiterator* (*postHookFunc) (struct s_mapiterator* retVal___, enum e_mapitflags flags, enum bl_type types); + struct s_mapiterator * (*postHookFunc) (struct s_mapiterator * retVal___, enum e_mapitflags flags, enum bl_type types); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_alloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapit_alloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, flags, types); @@ -55577,11 +55604,11 @@ void HP_mapit_free(struct s_mapiterator *iter) { } return; } -struct block_list* HP_mapit_first(struct s_mapiterator *iter) { +struct block_list * HP_mapit_first(struct s_mapiterator *iter) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mapit_first_pre > 0) { - struct block_list* (*preHookFunc) (struct s_mapiterator **iter); + struct block_list * (*preHookFunc) (struct s_mapiterator **iter); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_first_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapit_first_pre[hIndex].func; @@ -55596,7 +55623,7 @@ struct block_list* HP_mapit_first(struct s_mapiterator *iter) { retVal___ = HPMHooks.source.mapit.first(iter); } if (HPMHooks.count.HP_mapit_first_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct s_mapiterator *iter); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct s_mapiterator *iter); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_first_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapit_first_post[hIndex].func; retVal___ = postHookFunc(retVal___, iter); @@ -55604,11 +55631,11 @@ struct block_list* HP_mapit_first(struct s_mapiterator *iter) { } return retVal___; } -struct block_list* HP_mapit_last(struct s_mapiterator *iter) { +struct block_list * HP_mapit_last(struct s_mapiterator *iter) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mapit_last_pre > 0) { - struct block_list* (*preHookFunc) (struct s_mapiterator **iter); + struct block_list * (*preHookFunc) (struct s_mapiterator **iter); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_last_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapit_last_pre[hIndex].func; @@ -55623,7 +55650,7 @@ struct block_list* HP_mapit_last(struct s_mapiterator *iter) { retVal___ = HPMHooks.source.mapit.last(iter); } if (HPMHooks.count.HP_mapit_last_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct s_mapiterator *iter); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct s_mapiterator *iter); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_last_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapit_last_post[hIndex].func; retVal___ = postHookFunc(retVal___, iter); @@ -55631,11 +55658,11 @@ struct block_list* HP_mapit_last(struct s_mapiterator *iter) { } return retVal___; } -struct block_list* HP_mapit_next(struct s_mapiterator *iter) { +struct block_list * HP_mapit_next(struct s_mapiterator *iter) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mapit_next_pre > 0) { - struct block_list* (*preHookFunc) (struct s_mapiterator **iter); + struct block_list * (*preHookFunc) (struct s_mapiterator **iter); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_next_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapit_next_pre[hIndex].func; @@ -55650,7 +55677,7 @@ struct block_list* HP_mapit_next(struct s_mapiterator *iter) { retVal___ = HPMHooks.source.mapit.next(iter); } if (HPMHooks.count.HP_mapit_next_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct s_mapiterator *iter); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct s_mapiterator *iter); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_next_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapit_next_post[hIndex].func; retVal___ = postHookFunc(retVal___, iter); @@ -55658,11 +55685,11 @@ struct block_list* HP_mapit_next(struct s_mapiterator *iter) { } return retVal___; } -struct block_list* HP_mapit_prev(struct s_mapiterator *iter) { +struct block_list * HP_mapit_prev(struct s_mapiterator *iter) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mapit_prev_pre > 0) { - struct block_list* (*preHookFunc) (struct s_mapiterator **iter); + struct block_list * (*preHookFunc) (struct s_mapiterator **iter); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_prev_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapit_prev_pre[hIndex].func; @@ -55677,7 +55704,7 @@ struct block_list* HP_mapit_prev(struct s_mapiterator *iter) { retVal___ = HPMHooks.source.mapit.prev(iter); } if (HPMHooks.count.HP_mapit_prev_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct s_mapiterator *iter); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct s_mapiterator *iter); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapit_prev_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapit_prev_post[hIndex].func; retVal___ = postHookFunc(retVal___, iter); @@ -55740,11 +55767,11 @@ int HP_mapreg_readreg(int64 uid) { } return retVal___; } -char* HP_mapreg_readregstr(int64 uid) { +char * HP_mapreg_readregstr(int64 uid) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_mapreg_readregstr_pre > 0) { - char* (*preHookFunc) (int64 *uid); + char * (*preHookFunc) (int64 *uid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mapreg_readregstr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mapreg_readregstr_pre[hIndex].func; @@ -55759,7 +55786,7 @@ char* HP_mapreg_readregstr(int64 uid) { retVal___ = HPMHooks.source.mapreg.readregstr(uid); } if (HPMHooks.count.HP_mapreg_readregstr_post > 0) { - char* (*postHookFunc) (char* retVal___, int64 uid); + char * (*postHookFunc) (char * retVal___, int64 uid); for (hIndex = 0; hIndex < HPMHooks.count.HP_mapreg_readregstr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mapreg_readregstr_post[hIndex].func; retVal___ = postHookFunc(retVal___, uid); @@ -56383,11 +56410,11 @@ bool HP_mercenary_class(int class_) { } return retVal___; } -struct view_data* HP_mercenary_get_viewdata(int class_) { +struct view_data * HP_mercenary_get_viewdata(int class_) { int hIndex = 0; - struct view_data* retVal___ = NULL; + struct view_data * retVal___ = NULL; if (HPMHooks.count.HP_mercenary_get_viewdata_pre > 0) { - struct view_data* (*preHookFunc) (int *class_); + struct view_data * (*preHookFunc) (int *class_); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mercenary_get_viewdata_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mercenary_get_viewdata_pre[hIndex].func; @@ -56402,7 +56429,7 @@ struct view_data* HP_mercenary_get_viewdata(int class_) { retVal___ = HPMHooks.source.mercenary.get_viewdata(class_); } if (HPMHooks.count.HP_mercenary_get_viewdata_post > 0) { - struct view_data* (*postHookFunc) (struct view_data* retVal___, int class_); + struct view_data * (*postHookFunc) (struct view_data * retVal___, int class_); for (hIndex = 0; hIndex < HPMHooks.count.HP_mercenary_get_viewdata_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mercenary_get_viewdata_post[hIndex].func; retVal___ = postHookFunc(retVal___, class_); @@ -57115,11 +57142,11 @@ int HP_mob_reload_sub_mob(struct mob_data *md, va_list args) { } return retVal___; } -struct mob_db* HP_mob_db(int index) { +struct mob_db * HP_mob_db(int index) { int hIndex = 0; - struct mob_db* retVal___ = NULL; + struct mob_db * retVal___ = NULL; if (HPMHooks.count.HP_mob_db_pre > 0) { - struct mob_db* (*preHookFunc) (int *index); + struct mob_db * (*preHookFunc) (int *index); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_db_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_db_pre[hIndex].func; @@ -57134,7 +57161,7 @@ struct mob_db* HP_mob_db(int index) { retVal___ = HPMHooks.source.mob.db(index); } if (HPMHooks.count.HP_mob_db_post > 0) { - struct mob_db* (*postHookFunc) (struct mob_db* retVal___, int index); + struct mob_db * (*postHookFunc) (struct mob_db * retVal___, int index); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_db_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_db_post[hIndex].func; retVal___ = postHookFunc(retVal___, index); @@ -57142,11 +57169,11 @@ struct mob_db* HP_mob_db(int index) { } return retVal___; } -struct mob_chat* HP_mob_chat(short id) { +struct mob_chat * HP_mob_chat(short id) { int hIndex = 0; - struct mob_chat* retVal___ = NULL; + struct mob_chat * retVal___ = NULL; if (HPMHooks.count.HP_mob_chat_pre > 0) { - struct mob_chat* (*preHookFunc) (short *id); + struct mob_chat * (*preHookFunc) (short *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_chat_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_chat_pre[hIndex].func; @@ -57161,7 +57188,7 @@ struct mob_chat* HP_mob_chat(short id) { retVal___ = HPMHooks.source.mob.chat(id); } if (HPMHooks.count.HP_mob_chat_post > 0) { - struct mob_chat* (*postHookFunc) (struct mob_chat* retVal___, short id); + struct mob_chat * (*postHookFunc) (struct mob_chat * retVal___, short id); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_chat_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_chat_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -57463,11 +57490,11 @@ int HP_mob_db_checkid(const int id) { } return retVal___; } -struct view_data* HP_mob_get_viewdata(int class_) { +struct view_data * HP_mob_get_viewdata(int class_) { int hIndex = 0; - struct view_data* retVal___ = NULL; + struct view_data * retVal___ = NULL; if (HPMHooks.count.HP_mob_get_viewdata_pre > 0) { - struct view_data* (*preHookFunc) (int *class_); + struct view_data * (*preHookFunc) (int *class_); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_get_viewdata_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_get_viewdata_pre[hIndex].func; @@ -57482,7 +57509,7 @@ struct view_data* HP_mob_get_viewdata(int class_) { retVal___ = HPMHooks.source.mob.get_viewdata(class_); } if (HPMHooks.count.HP_mob_get_viewdata_post > 0) { - struct view_data* (*postHookFunc) (struct view_data* retVal___, int class_); + struct view_data * (*postHookFunc) (struct view_data * retVal___, int class_); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_get_viewdata_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_get_viewdata_post[hIndex].func; retVal___ = postHookFunc(retVal___, class_); @@ -57569,11 +57596,11 @@ int HP_mob_parse_dataset(struct spawn_data *data) { } return retVal___; } -struct mob_data* HP_mob_spawn_dataset(struct spawn_data *data, int npc_id) { +struct mob_data * HP_mob_spawn_dataset(struct spawn_data *data, int npc_id) { int hIndex = 0; - struct mob_data* retVal___ = NULL; + struct mob_data * retVal___ = NULL; if (HPMHooks.count.HP_mob_spawn_dataset_pre > 0) { - struct mob_data* (*preHookFunc) (struct spawn_data **data, int *npc_id); + struct mob_data * (*preHookFunc) (struct spawn_data **data, int *npc_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_spawn_dataset_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_spawn_dataset_pre[hIndex].func; @@ -57588,7 +57615,7 @@ struct mob_data* HP_mob_spawn_dataset(struct spawn_data *data, int npc_id) { retVal___ = HPMHooks.source.mob.spawn_dataset(data, npc_id); } if (HPMHooks.count.HP_mob_spawn_dataset_post > 0) { - struct mob_data* (*postHookFunc) (struct mob_data* retVal___, struct spawn_data *data, int npc_id); + struct mob_data * (*postHookFunc) (struct mob_data * retVal___, struct spawn_data *data, int npc_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_spawn_dataset_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_spawn_dataset_post[hIndex].func; retVal___ = postHookFunc(retVal___, data, npc_id); @@ -57650,11 +57677,11 @@ bool HP_mob_ksprotected(struct block_list *src, struct block_list *target) { } return retVal___; } -struct mob_data* HP_mob_once_spawn_sub(struct block_list *bl, int16 m, int16 x, int16 y, const char *mobname, int class_, const char *event, unsigned int size, unsigned int ai, int npc_id) { +struct mob_data * HP_mob_once_spawn_sub(struct block_list *bl, int16 m, int16 x, int16 y, const char *mobname, int class_, const char *event, unsigned int size, unsigned int ai, int npc_id) { int hIndex = 0; - struct mob_data* retVal___ = NULL; + struct mob_data * retVal___ = NULL; if (HPMHooks.count.HP_mob_once_spawn_sub_pre > 0) { - struct mob_data* (*preHookFunc) (struct block_list **bl, int16 *m, int16 *x, int16 *y, const char **mobname, int *class_, const char **event, unsigned int *size, unsigned int *ai, int *npc_id); + struct mob_data * (*preHookFunc) (struct block_list **bl, int16 *m, int16 *x, int16 *y, const char **mobname, int *class_, const char **event, unsigned int *size, unsigned int *ai, int *npc_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_once_spawn_sub_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_once_spawn_sub_pre[hIndex].func; @@ -57669,7 +57696,7 @@ struct mob_data* HP_mob_once_spawn_sub(struct block_list *bl, int16 m, int16 x, retVal___ = HPMHooks.source.mob.once_spawn_sub(bl, m, x, y, mobname, class_, event, size, ai, npc_id); } if (HPMHooks.count.HP_mob_once_spawn_sub_post > 0) { - struct mob_data* (*postHookFunc) (struct mob_data* retVal___, struct block_list *bl, int16 m, int16 x, int16 y, const char *mobname, int class_, const char *event, unsigned int size, unsigned int ai, int npc_id); + struct mob_data * (*postHookFunc) (struct mob_data * retVal___, struct block_list *bl, int16 m, int16 x, int16 y, const char *mobname, int class_, const char *event, unsigned int size, unsigned int ai, int npc_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_once_spawn_sub_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_once_spawn_sub_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, m, x, y, mobname, class_, event, size, ai, npc_id); @@ -58519,11 +58546,11 @@ void HP_mob_setdropitem_options(struct item *item, struct optdrop_group *options } return; } -struct item_drop* HP_mob_setdropitem(int nameid, struct optdrop_group *options, int qty, struct item_data *data) { +struct item_drop * HP_mob_setdropitem(int nameid, struct optdrop_group *options, int qty, struct item_data *data) { int hIndex = 0; - struct item_drop* retVal___ = NULL; + struct item_drop * retVal___ = NULL; if (HPMHooks.count.HP_mob_setdropitem_pre > 0) { - struct item_drop* (*preHookFunc) (int *nameid, struct optdrop_group **options, int *qty, struct item_data **data); + struct item_drop * (*preHookFunc) (int *nameid, struct optdrop_group **options, int *qty, struct item_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_setdropitem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_setdropitem_pre[hIndex].func; @@ -58538,7 +58565,7 @@ struct item_drop* HP_mob_setdropitem(int nameid, struct optdrop_group *options, retVal___ = HPMHooks.source.mob.setdropitem(nameid, options, qty, data); } if (HPMHooks.count.HP_mob_setdropitem_post > 0) { - struct item_drop* (*postHookFunc) (struct item_drop* retVal___, int nameid, struct optdrop_group *options, int qty, struct item_data *data); + struct item_drop * (*postHookFunc) (struct item_drop * retVal___, int nameid, struct optdrop_group *options, int qty, struct item_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_setdropitem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_setdropitem_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid, options, qty, data); @@ -58546,11 +58573,11 @@ struct item_drop* HP_mob_setdropitem(int nameid, struct optdrop_group *options, } return retVal___; } -struct item_drop* HP_mob_setlootitem(struct item *item) { +struct item_drop * HP_mob_setlootitem(struct item *item) { int hIndex = 0; - struct item_drop* retVal___ = NULL; + struct item_drop * retVal___ = NULL; if (HPMHooks.count.HP_mob_setlootitem_pre > 0) { - struct item_drop* (*preHookFunc) (struct item **item); + struct item_drop * (*preHookFunc) (struct item **item); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_setlootitem_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_setlootitem_pre[hIndex].func; @@ -58565,7 +58592,7 @@ struct item_drop* HP_mob_setlootitem(struct item *item) { retVal___ = HPMHooks.source.mob.setlootitem(item); } if (HPMHooks.count.HP_mob_setlootitem_post > 0) { - struct item_drop* (*postHookFunc) (struct item_drop* retVal___, struct item *item); + struct item_drop * (*postHookFunc) (struct item_drop * retVal___, struct item *item); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_setlootitem_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_setlootitem_post[hIndex].func; retVal___ = postHookFunc(retVal___, item); @@ -59132,11 +59159,11 @@ int HP_mob_getfriendhprate_sub(struct block_list *bl, va_list ap) { } return retVal___; } -struct block_list* HP_mob_getfriendhprate(struct mob_data *md, int min_rate, int max_rate) { +struct block_list * HP_mob_getfriendhprate(struct mob_data *md, int min_rate, int max_rate) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mob_getfriendhprate_pre > 0) { - struct block_list* (*preHookFunc) (struct mob_data **md, int *min_rate, int *max_rate); + struct block_list * (*preHookFunc) (struct mob_data **md, int *min_rate, int *max_rate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_getfriendhprate_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_getfriendhprate_pre[hIndex].func; @@ -59151,7 +59178,7 @@ struct block_list* HP_mob_getfriendhprate(struct mob_data *md, int min_rate, int retVal___ = HPMHooks.source.mob.getfriendhprate(md, min_rate, max_rate); } if (HPMHooks.count.HP_mob_getfriendhprate_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct mob_data *md, int min_rate, int max_rate); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct mob_data *md, int min_rate, int max_rate); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_getfriendhprate_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_getfriendhprate_post[hIndex].func; retVal___ = postHookFunc(retVal___, md, min_rate, max_rate); @@ -59159,11 +59186,11 @@ struct block_list* HP_mob_getfriendhprate(struct mob_data *md, int min_rate, int } return retVal___; } -struct block_list* HP_mob_getmasterhpltmaxrate(struct mob_data *md, int rate) { +struct block_list * HP_mob_getmasterhpltmaxrate(struct mob_data *md, int rate) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mob_getmasterhpltmaxrate_pre > 0) { - struct block_list* (*preHookFunc) (struct mob_data **md, int *rate); + struct block_list * (*preHookFunc) (struct mob_data **md, int *rate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_getmasterhpltmaxrate_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_getmasterhpltmaxrate_pre[hIndex].func; @@ -59178,7 +59205,7 @@ struct block_list* HP_mob_getmasterhpltmaxrate(struct mob_data *md, int rate) { retVal___ = HPMHooks.source.mob.getmasterhpltmaxrate(md, rate); } if (HPMHooks.count.HP_mob_getmasterhpltmaxrate_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct mob_data *md, int rate); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct mob_data *md, int rate); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_getmasterhpltmaxrate_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_getmasterhpltmaxrate_post[hIndex].func; retVal___ = postHookFunc(retVal___, md, rate); @@ -59219,11 +59246,11 @@ int HP_mob_getfriendstatus_sub(struct block_list *bl, va_list ap) { } return retVal___; } -struct block_list* HP_mob_getfriendstatus(struct mob_data *md, int cond1, int cond2) { +struct block_list * HP_mob_getfriendstatus(struct mob_data *md, int cond1, int cond2) { int hIndex = 0; - struct block_list* retVal___ = NULL; + struct block_list * retVal___ = NULL; if (HPMHooks.count.HP_mob_getfriendstatus_pre > 0) { - struct block_list* (*preHookFunc) (struct mob_data **md, int *cond1, int *cond2); + struct block_list * (*preHookFunc) (struct mob_data **md, int *cond1, int *cond2); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_getfriendstatus_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_getfriendstatus_pre[hIndex].func; @@ -59238,7 +59265,7 @@ struct block_list* HP_mob_getfriendstatus(struct mob_data *md, int cond1, int co retVal___ = HPMHooks.source.mob.getfriendstatus(md, cond1, cond2); } if (HPMHooks.count.HP_mob_getfriendstatus_post > 0) { - struct block_list* (*postHookFunc) (struct block_list* retVal___, struct mob_data *md, int cond1, int cond2); + struct block_list * (*postHookFunc) (struct block_list * retVal___, struct mob_data *md, int cond1, int cond2); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_getfriendstatus_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_getfriendstatus_post[hIndex].func; retVal___ = postHookFunc(retVal___, md, cond1, cond2); @@ -59781,11 +59808,11 @@ uint32 HP_mob_read_db_mode_sub(struct mob_db *entry, struct config_setting_t *t) } return retVal___; } -struct optdrop_group* HP_mob_read_db_drops_option(struct mob_db *entry, const char *item_name, struct config_setting_t *drop, int *drop_rate) { +struct optdrop_group * HP_mob_read_db_drops_option(struct mob_db *entry, const char *item_name, struct config_setting_t *drop, int *drop_rate) { int hIndex = 0; - struct optdrop_group* retVal___ = NULL; + struct optdrop_group * retVal___ = NULL; if (HPMHooks.count.HP_mob_read_db_drops_option_pre > 0) { - struct optdrop_group* (*preHookFunc) (struct mob_db **entry, const char **item_name, struct config_setting_t **drop, int **drop_rate); + struct optdrop_group * (*preHookFunc) (struct mob_db **entry, const char **item_name, struct config_setting_t **drop, int **drop_rate); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_read_db_drops_option_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_read_db_drops_option_pre[hIndex].func; @@ -59800,7 +59827,7 @@ struct optdrop_group* HP_mob_read_db_drops_option(struct mob_db *entry, const ch retVal___ = HPMHooks.source.mob.read_db_drops_option(entry, item_name, drop, drop_rate); } if (HPMHooks.count.HP_mob_read_db_drops_option_post > 0) { - struct optdrop_group* (*postHookFunc) (struct optdrop_group* retVal___, struct mob_db *entry, const char *item_name, struct config_setting_t *drop, int *drop_rate); + struct optdrop_group * (*postHookFunc) (struct optdrop_group * retVal___, struct mob_db *entry, const char *item_name, struct config_setting_t *drop, int *drop_rate); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_read_db_drops_option_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_read_db_drops_option_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry, item_name, drop, drop_rate); @@ -60097,11 +60124,11 @@ void HP_mob_clear_spawninfo(void) { } return; } -struct item_drop_ratio* HP_mob_get_item_drop_ratio(int nameid) { +struct item_drop_ratio * HP_mob_get_item_drop_ratio(int nameid) { int hIndex = 0; - struct item_drop_ratio* retVal___ = NULL; + struct item_drop_ratio * retVal___ = NULL; if (HPMHooks.count.HP_mob_get_item_drop_ratio_pre > 0) { - struct item_drop_ratio* (*preHookFunc) (int *nameid); + struct item_drop_ratio * (*preHookFunc) (int *nameid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_get_item_drop_ratio_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mob_get_item_drop_ratio_pre[hIndex].func; @@ -60116,7 +60143,7 @@ struct item_drop_ratio* HP_mob_get_item_drop_ratio(int nameid) { retVal___ = HPMHooks.source.mob.get_item_drop_ratio(nameid); } if (HPMHooks.count.HP_mob_get_item_drop_ratio_post > 0) { - struct item_drop_ratio* (*postHookFunc) (struct item_drop_ratio* retVal___, int nameid); + struct item_drop_ratio * (*postHookFunc) (struct item_drop_ratio * retVal___, int nameid); for (hIndex = 0; hIndex < HPMHooks.count.HP_mob_get_item_drop_ratio_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mob_get_item_drop_ratio_post[hIndex].func; retVal___ = postHookFunc(retVal___, nameid); @@ -60424,11 +60451,11 @@ bool HP_mob_read_group_db_libconfig_sub_group(struct config_setting_t *it, enum return retVal___; } /* mutex_interface */ -struct mutex_data* HP_mutex_create(void) { +struct mutex_data * HP_mutex_create(void) { int hIndex = 0; - struct mutex_data* retVal___ = NULL; + struct mutex_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_create_pre > 0) { - struct mutex_data* (*preHookFunc) (void); + struct mutex_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_create_pre[hIndex].func; @@ -60443,7 +60470,7 @@ struct mutex_data* HP_mutex_create(void) { retVal___ = HPMHooks.source.mutex.create(); } if (HPMHooks.count.HP_mutex_create_post > 0) { - struct mutex_data* (*postHookFunc) (struct mutex_data* retVal___); + struct mutex_data * (*postHookFunc) (struct mutex_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -60556,11 +60583,11 @@ void HP_mutex_unlock(struct mutex_data *m) { } return; } -struct cond_data* HP_mutex_cond_create(void) { +struct cond_data * HP_mutex_cond_create(void) { int hIndex = 0; - struct cond_data* retVal___ = NULL; + struct cond_data * retVal___ = NULL; if (HPMHooks.count.HP_mutex_cond_create_pre > 0) { - struct cond_data* (*preHookFunc) (void); + struct cond_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_mutex_cond_create_pre[hIndex].func; @@ -60575,7 +60602,7 @@ struct cond_data* HP_mutex_cond_create(void) { retVal___ = HPMHooks.source.mutex.cond_create(); } if (HPMHooks.count.HP_mutex_cond_create_post > 0) { - struct cond_data* (*postHookFunc) (struct cond_data* retVal___); + struct cond_data * (*postHookFunc) (struct cond_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_mutex_cond_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_mutex_cond_create_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -60773,11 +60800,11 @@ void HP_npc_chat_def_pattern(struct npc_data *nd, int setid, const char *pattern } return; } -struct pcrematch_entry* HP_npc_chat_create_pcrematch_entry(struct pcrematch_set *set) { +struct pcrematch_entry * HP_npc_chat_create_pcrematch_entry(struct pcrematch_set *set) { int hIndex = 0; - struct pcrematch_entry* retVal___ = NULL; + struct pcrematch_entry * retVal___ = NULL; if (HPMHooks.count.HP_npc_chat_create_pcrematch_entry_pre > 0) { - struct pcrematch_entry* (*preHookFunc) (struct pcrematch_set **set); + struct pcrematch_entry * (*preHookFunc) (struct pcrematch_set **set); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_chat_create_pcrematch_entry_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_chat_create_pcrematch_entry_pre[hIndex].func; @@ -60792,7 +60819,7 @@ struct pcrematch_entry* HP_npc_chat_create_pcrematch_entry(struct pcrematch_set retVal___ = HPMHooks.source.npc_chat.create_pcrematch_entry(set); } if (HPMHooks.count.HP_npc_chat_create_pcrematch_entry_post > 0) { - struct pcrematch_entry* (*postHookFunc) (struct pcrematch_entry* retVal___, struct pcrematch_set *set); + struct pcrematch_entry * (*postHookFunc) (struct pcrematch_entry * retVal___, struct pcrematch_set *set); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_chat_create_pcrematch_entry_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_chat_create_pcrematch_entry_post[hIndex].func; retVal___ = postHookFunc(retVal___, set); @@ -60878,11 +60905,11 @@ void HP_npc_chat_activate_pcreset(struct npc_data *nd, int setid) { } return; } -struct pcrematch_set* HP_npc_chat_lookup_pcreset(struct npc_data *nd, int setid) { +struct pcrematch_set * HP_npc_chat_lookup_pcreset(struct npc_data *nd, int setid) { int hIndex = 0; - struct pcrematch_set* retVal___ = NULL; + struct pcrematch_set * retVal___ = NULL; if (HPMHooks.count.HP_npc_chat_lookup_pcreset_pre > 0) { - struct pcrematch_set* (*preHookFunc) (struct npc_data **nd, int *setid); + struct pcrematch_set * (*preHookFunc) (struct npc_data **nd, int *setid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_chat_lookup_pcreset_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_chat_lookup_pcreset_pre[hIndex].func; @@ -60897,7 +60924,7 @@ struct pcrematch_set* HP_npc_chat_lookup_pcreset(struct npc_data *nd, int setid) retVal___ = HPMHooks.source.npc_chat.lookup_pcreset(nd, setid); } if (HPMHooks.count.HP_npc_chat_lookup_pcreset_post > 0) { - struct pcrematch_set* (*postHookFunc) (struct pcrematch_set* retVal___, struct npc_data *nd, int setid); + struct pcrematch_set * (*postHookFunc) (struct pcrematch_set * retVal___, struct npc_data *nd, int setid); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_chat_lookup_pcreset_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_chat_lookup_pcreset_post[hIndex].func; retVal___ = postHookFunc(retVal___, nd, setid); @@ -61013,11 +61040,11 @@ int HP_npc_get_new_npc_id(void) { } return retVal___; } -struct view_data* HP_npc_get_viewdata(int class_) { +struct view_data * HP_npc_get_viewdata(int class_) { int hIndex = 0; - struct view_data* retVal___ = NULL; + struct view_data * retVal___ = NULL; if (HPMHooks.count.HP_npc_get_viewdata_pre > 0) { - struct view_data* (*preHookFunc) (int *class_); + struct view_data * (*preHookFunc) (int *class_); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_get_viewdata_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_get_viewdata_pre[hIndex].func; @@ -61032,7 +61059,7 @@ struct view_data* HP_npc_get_viewdata(int class_) { retVal___ = HPMHooks.source.npc.get_viewdata(class_); } if (HPMHooks.count.HP_npc_get_viewdata_post > 0) { - struct view_data* (*postHookFunc) (struct view_data* retVal___, int class_); + struct view_data * (*postHookFunc) (struct view_data * retVal___, int class_); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_get_viewdata_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_get_viewdata_post[hIndex].func; retVal___ = postHookFunc(retVal___, class_); @@ -61241,11 +61268,11 @@ int HP_npc_enable(const char *name, int flag) { } return retVal___; } -struct npc_data* HP_npc_name2id(const char *name) { +struct npc_data * HP_npc_name2id(const char *name) { int hIndex = 0; - struct npc_data* retVal___ = NULL; + struct npc_data * retVal___ = NULL; if (HPMHooks.count.HP_npc_name2id_pre > 0) { - struct npc_data* (*preHookFunc) (const char **name); + struct npc_data * (*preHookFunc) (const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_name2id_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_name2id_pre[hIndex].func; @@ -61260,7 +61287,7 @@ struct npc_data* HP_npc_name2id(const char *name) { retVal___ = HPMHooks.source.npc.name2id(name); } if (HPMHooks.count.HP_npc_name2id_post > 0) { - struct npc_data* (*postHookFunc) (struct npc_data* retVal___, const char *name); + struct npc_data * (*postHookFunc) (struct npc_data * retVal___, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_name2id_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_name2id_post[hIndex].func; retVal___ = postHookFunc(retVal___, name); @@ -61958,11 +61985,11 @@ int HP_npc_check_areanpc(int flag, int16 m, int16 x, int16 y, int16 range) { } return retVal___; } -struct npc_data* HP_npc_checknear(struct map_session_data *sd, struct block_list *bl) { +struct npc_data * HP_npc_checknear(struct map_session_data *sd, struct block_list *bl) { int hIndex = 0; - struct npc_data* retVal___ = NULL; + struct npc_data * retVal___ = NULL; if (HPMHooks.count.HP_npc_checknear_pre > 0) { - struct npc_data* (*preHookFunc) (struct map_session_data **sd, struct block_list **bl); + struct npc_data * (*preHookFunc) (struct map_session_data **sd, struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_checknear_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_checknear_pre[hIndex].func; @@ -61977,7 +62004,7 @@ struct npc_data* HP_npc_checknear(struct map_session_data *sd, struct block_list retVal___ = HPMHooks.source.npc.checknear(sd, bl); } if (HPMHooks.count.HP_npc_checknear_post > 0) { - struct npc_data* (*postHookFunc) (struct npc_data* retVal___, struct map_session_data *sd, struct block_list *bl); + struct npc_data * (*postHookFunc) (struct npc_data * retVal___, struct map_session_data *sd, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_checknear_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_checknear_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, bl); @@ -62571,11 +62598,11 @@ void HP_npc_delsrcfile(const char *name) { } return; } -const char* HP_npc_retainpathreference(const char *filepath) { +const char * HP_npc_retainpathreference(const char *filepath) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_retainpathreference_pre > 0) { - const char* (*preHookFunc) (const char **filepath); + const char * (*preHookFunc) (const char **filepath); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_retainpathreference_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_retainpathreference_pre[hIndex].func; @@ -62590,7 +62617,7 @@ const char* HP_npc_retainpathreference(const char *filepath) { retVal___ = HPMHooks.source.npc.retainpathreference(filepath); } if (HPMHooks.count.HP_npc_retainpathreference_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *filepath); + const char * (*postHookFunc) (const char * retVal___, const char *filepath); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_retainpathreference_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_retainpathreference_post[hIndex].func; retVal___ = postHookFunc(retVal___, filepath); @@ -62704,11 +62731,11 @@ bool HP_npc_viewisid(const char *viewid) { } return retVal___; } -struct npc_data* HP_npc_create_npc(enum npc_subtype subtype, int m, int x, int y, enum unit_dir dir, int class_) { +struct npc_data * HP_npc_create_npc(enum npc_subtype subtype, int m, int x, int y, enum unit_dir dir, int class_) { int hIndex = 0; - struct npc_data* retVal___ = NULL; + struct npc_data * retVal___ = NULL; if (HPMHooks.count.HP_npc_create_npc_pre > 0) { - struct npc_data* (*preHookFunc) (enum npc_subtype *subtype, int *m, int *x, int *y, enum unit_dir *dir, int *class_); + struct npc_data * (*preHookFunc) (enum npc_subtype *subtype, int *m, int *x, int *y, enum unit_dir *dir, int *class_); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_create_npc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_create_npc_pre[hIndex].func; @@ -62723,7 +62750,7 @@ struct npc_data* HP_npc_create_npc(enum npc_subtype subtype, int m, int x, int y retVal___ = HPMHooks.source.npc.create_npc(subtype, m, x, y, dir, class_); } if (HPMHooks.count.HP_npc_create_npc_post > 0) { - struct npc_data* (*postHookFunc) (struct npc_data* retVal___, enum npc_subtype subtype, int m, int x, int y, enum unit_dir dir, int class_); + struct npc_data * (*postHookFunc) (struct npc_data * retVal___, enum npc_subtype subtype, int m, int x, int y, enum unit_dir dir, int class_); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_create_npc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_create_npc_post[hIndex].func; retVal___ = postHookFunc(retVal___, subtype, m, x, y, dir, class_); @@ -62731,11 +62758,11 @@ struct npc_data* HP_npc_create_npc(enum npc_subtype subtype, int m, int x, int y } return retVal___; } -struct npc_data* HP_npc_add_warp(char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y) { +struct npc_data * HP_npc_add_warp(char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y) { int hIndex = 0; - struct npc_data* retVal___ = NULL; + struct npc_data * retVal___ = NULL; if (HPMHooks.count.HP_npc_add_warp_pre > 0) { - struct npc_data* (*preHookFunc) (char **name, short *from_mapid, short *from_x, short *from_y, short *xs, short *ys, unsigned short *to_mapindex, short *to_x, short *to_y); + struct npc_data * (*preHookFunc) (char **name, short *from_mapid, short *from_x, short *from_y, short *xs, short *ys, unsigned short *to_mapindex, short *to_x, short *to_y); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_add_warp_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_add_warp_pre[hIndex].func; @@ -62750,7 +62777,7 @@ struct npc_data* HP_npc_add_warp(char *name, short from_mapid, short from_x, sho retVal___ = HPMHooks.source.npc.add_warp(name, from_mapid, from_x, from_y, xs, ys, to_mapindex, to_x, to_y); } if (HPMHooks.count.HP_npc_add_warp_post > 0) { - struct npc_data* (*postHookFunc) (struct npc_data* retVal___, char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y); + struct npc_data * (*postHookFunc) (struct npc_data * retVal___, char *name, short from_mapid, short from_x, short from_y, short xs, short ys, unsigned short to_mapindex, short to_x, short to_y); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_add_warp_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_add_warp_post[hIndex].func; retVal___ = postHookFunc(retVal___, name, from_mapid, from_x, from_y, xs, ys, to_mapindex, to_x, to_y); @@ -62758,11 +62785,11 @@ struct npc_data* HP_npc_add_warp(char *name, short from_mapid, short from_x, sho } return retVal___; } -const char* HP_npc_parse_warp(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_parse_warp(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_warp_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_warp_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_warp_pre[hIndex].func; @@ -62777,7 +62804,7 @@ const char* HP_npc_parse_warp(const char *w1, const char *w2, const char *w3, co retVal___ = HPMHooks.source.npc.parse_warp(w1, w2, w3, w4, start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_parse_warp_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_warp_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_warp_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, retval); @@ -62785,11 +62812,11 @@ const char* HP_npc_parse_warp(const char *w1, const char *w2, const char *w3, co } return retVal___; } -const char* HP_npc_parse_shop(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_parse_shop(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_shop_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_shop_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_shop_pre[hIndex].func; @@ -62804,7 +62831,7 @@ const char* HP_npc_parse_shop(const char *w1, const char *w2, const char *w3, co retVal___ = HPMHooks.source.npc.parse_shop(w1, w2, w3, w4, start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_parse_shop_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_shop_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_shop_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, retval); @@ -62812,11 +62839,11 @@ const char* HP_npc_parse_shop(const char *w1, const char *w2, const char *w3, co } return retVal___; } -const char* HP_npc_parse_unknown_object(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_parse_unknown_object(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_unknown_object_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_unknown_object_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_unknown_object_pre[hIndex].func; @@ -62831,7 +62858,7 @@ const char* HP_npc_parse_unknown_object(const char *w1, const char *w2, const ch retVal___ = HPMHooks.source.npc.parse_unknown_object(w1, w2, w3, w4, start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_parse_unknown_object_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_unknown_object_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_unknown_object_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, retval); @@ -62865,11 +62892,11 @@ void HP_npc_convertlabel_db(struct npc_label_list *label_list, const char *filep } return; } -const char* HP_npc_skip_script(const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_skip_script(const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_skip_script_pre > 0) { - const char* (*preHookFunc) (const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_skip_script_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_skip_script_pre[hIndex].func; @@ -62884,7 +62911,7 @@ const char* HP_npc_skip_script(const char *start, const char *buffer, const char retVal___ = HPMHooks.source.npc.skip_script(start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_skip_script_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_skip_script_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_skip_script_post[hIndex].func; retVal___ = postHookFunc(retVal___, start, buffer, filepath, retval); @@ -62892,11 +62919,11 @@ const char* HP_npc_skip_script(const char *start, const char *buffer, const char } return retVal___; } -const char* HP_npc_parse_script(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval) { +const char * HP_npc_parse_script(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_script_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_script_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_script_pre[hIndex].func; @@ -62911,7 +62938,7 @@ const char* HP_npc_parse_script(const char *w1, const char *w2, const char *w3, retVal___ = HPMHooks.source.npc.parse_script(w1, w2, w3, w4, start, buffer, filepath, options, retval); } if (HPMHooks.count.HP_npc_parse_script_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_script_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_script_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, options, retval); @@ -63053,11 +63080,11 @@ bool HP_npc_duplicate_sub(struct npc_data *nd, const struct npc_data *snd, int x } return retVal___; } -const char* HP_npc_parse_duplicate(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval) { +const char * HP_npc_parse_duplicate(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_duplicate_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int *options, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_duplicate_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_duplicate_pre[hIndex].func; @@ -63072,7 +63099,7 @@ const char* HP_npc_parse_duplicate(const char *w1, const char *w2, const char *w retVal___ = HPMHooks.source.npc.parse_duplicate(w1, w2, w3, w4, start, buffer, filepath, options, retval); } if (HPMHooks.count.HP_npc_parse_duplicate_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int options, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_duplicate_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_duplicate_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, options, retval); @@ -63297,11 +63324,11 @@ int HP_npc_do_atcmd_event(struct map_session_data *sd, const char *command, cons } return retVal___; } -const char* HP_npc_parse_function(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_parse_function(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_function_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_function_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_function_pre[hIndex].func; @@ -63316,7 +63343,7 @@ const char* HP_npc_parse_function(const char *w1, const char *w2, const char *w3 retVal___ = HPMHooks.source.npc.parse_function(w1, w2, w3, w4, start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_parse_function_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_function_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_function_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, retval); @@ -63350,11 +63377,11 @@ void HP_npc_parse_mob2(struct spawn_data *mobspawn) { } return; } -const char* HP_npc_parse_mob(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_parse_mob(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_mob_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_mob_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_mob_pre[hIndex].func; @@ -63369,7 +63396,7 @@ const char* HP_npc_parse_mob(const char *w1, const char *w2, const char *w3, con retVal___ = HPMHooks.source.npc.parse_mob(w1, w2, w3, w4, start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_parse_mob_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_mob_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_mob_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, retval); @@ -63377,11 +63404,11 @@ const char* HP_npc_parse_mob(const char *w1, const char *w2, const char *w3, con } return retVal___; } -const char* HP_npc_parse_mapflag(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { +const char * HP_npc_parse_mapflag(const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_npc_parse_mapflag_pre > 0) { - const char* (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); + const char * (*preHookFunc) (const char **w1, const char **w2, const char **w3, const char **w4, const char **start, const char **buffer, const char **filepath, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_mapflag_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_npc_parse_mapflag_pre[hIndex].func; @@ -63396,7 +63423,7 @@ const char* HP_npc_parse_mapflag(const char *w1, const char *w2, const char *w3, retVal___ = HPMHooks.source.npc.parse_mapflag(w1, w2, w3, w4, start, buffer, filepath, retval); } if (HPMHooks.count.HP_npc_parse_mapflag_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); + const char * (*postHookFunc) (const char * retVal___, const char *w1, const char *w2, const char *w3, const char *w4, const char *start, const char *buffer, const char *filepath, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_npc_parse_mapflag_post; hIndex++) { postHookFunc = HPMHooks.list.HP_npc_parse_mapflag_post[hIndex].func; retVal___ = postHookFunc(retVal___, w1, w2, w3, w4, start, buffer, filepath, retval); @@ -64707,11 +64734,11 @@ void HP_party_final(void) { } return; } -struct party_data* HP_party_search(int party_id) { +struct party_data * HP_party_search(int party_id) { int hIndex = 0; - struct party_data* retVal___ = NULL; + struct party_data * retVal___ = NULL; if (HPMHooks.count.HP_party_search_pre > 0) { - struct party_data* (*preHookFunc) (int *party_id); + struct party_data * (*preHookFunc) (int *party_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_party_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_party_search_pre[hIndex].func; @@ -64726,7 +64753,7 @@ struct party_data* HP_party_search(int party_id) { retVal___ = HPMHooks.source.party.search(party_id); } if (HPMHooks.count.HP_party_search_post > 0) { - struct party_data* (*postHookFunc) (struct party_data* retVal___, int party_id); + struct party_data * (*postHookFunc) (struct party_data * retVal___, int party_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_party_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_party_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, party_id); @@ -64734,11 +64761,11 @@ struct party_data* HP_party_search(int party_id) { } return retVal___; } -struct party_data* HP_party_searchname(const char *str) { +struct party_data * HP_party_searchname(const char *str) { int hIndex = 0; - struct party_data* retVal___ = NULL; + struct party_data * retVal___ = NULL; if (HPMHooks.count.HP_party_searchname_pre > 0) { - struct party_data* (*preHookFunc) (const char **str); + struct party_data * (*preHookFunc) (const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_party_searchname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_party_searchname_pre[hIndex].func; @@ -64753,7 +64780,7 @@ struct party_data* HP_party_searchname(const char *str) { retVal___ = HPMHooks.source.party.searchname(str); } if (HPMHooks.count.HP_party_searchname_post > 0) { - struct party_data* (*postHookFunc) (struct party_data* retVal___, const char *str); + struct party_data * (*postHookFunc) (struct party_data * retVal___, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_party_searchname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_party_searchname_post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -64788,11 +64815,11 @@ int HP_party_getmemberid(struct party_data *p, struct map_session_data *sd) { } return retVal___; } -struct map_session_data* HP_party_getavailablesd(struct party_data *p) { +struct map_session_data * HP_party_getavailablesd(struct party_data *p) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_party_getavailablesd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct party_data **p); + struct map_session_data * (*preHookFunc) (struct party_data **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_party_getavailablesd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_party_getavailablesd_pre[hIndex].func; @@ -64807,7 +64834,7 @@ struct map_session_data* HP_party_getavailablesd(struct party_data *p) { retVal___ = HPMHooks.source.party.getavailablesd(p); } if (HPMHooks.count.HP_party_getavailablesd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct party_data *p); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct party_data *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_party_getavailablesd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_party_getavailablesd_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -65847,11 +65874,11 @@ void HP_party_fill_member(struct party_member *member, struct map_session_data * } return; } -struct map_session_data* HP_party_sd_check(int party_id, int account_id, int char_id) { +struct map_session_data * HP_party_sd_check(int party_id, int account_id, int char_id) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_party_sd_check_pre > 0) { - struct map_session_data* (*preHookFunc) (int *party_id, int *account_id, int *char_id); + struct map_session_data * (*preHookFunc) (int *party_id, int *account_id, int *char_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_party_sd_check_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_party_sd_check_pre[hIndex].func; @@ -65866,7 +65893,7 @@ struct map_session_data* HP_party_sd_check(int party_id, int account_id, int cha retVal___ = HPMHooks.source.party.sd_check(party_id, account_id, char_id); } if (HPMHooks.count.HP_party_sd_check_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, int party_id, int account_id, int char_id); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, int party_id, int account_id, int char_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_party_sd_check_post; hIndex++) { postHookFunc = HPMHooks.list.HP_party_sd_check_post[hIndex].func; retVal___ = postHookFunc(retVal___, party_id, account_id, char_id); @@ -65900,11 +65927,11 @@ void HP_party_check_state(struct party_data *p) { } return; } -struct party_booking_ad_info* HP_party_create_booking_data(void) { +struct party_booking_ad_info * HP_party_create_booking_data(void) { int hIndex = 0; - struct party_booking_ad_info* retVal___ = NULL; + struct party_booking_ad_info * retVal___ = NULL; if (HPMHooks.count.HP_party_create_booking_data_pre > 0) { - struct party_booking_ad_info* (*preHookFunc) (void); + struct party_booking_ad_info * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_party_create_booking_data_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_party_create_booking_data_pre[hIndex].func; @@ -65919,7 +65946,7 @@ struct party_booking_ad_info* HP_party_create_booking_data(void) { retVal___ = HPMHooks.source.party.create_booking_data(); } if (HPMHooks.count.HP_party_create_booking_data_post > 0) { - struct party_booking_ad_info* (*postHookFunc) (struct party_booking_ad_info* retVal___); + struct party_booking_ad_info * (*postHookFunc) (struct party_booking_ad_info * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_party_create_booking_data_post; hIndex++) { postHookFunc = HPMHooks.list.HP_party_create_booking_data_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -66282,11 +66309,11 @@ void HP_pcg_reload(void) { } return; } -GroupSettings* HP_pcg_get_dummy_group(void) { +GroupSettings * HP_pcg_get_dummy_group(void) { int hIndex = 0; - GroupSettings* retVal___ = NULL; + GroupSettings * retVal___ = NULL; if (HPMHooks.count.HP_pcg_get_dummy_group_pre > 0) { - GroupSettings* (*preHookFunc) (void); + GroupSettings * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pcg_get_dummy_group_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pcg_get_dummy_group_pre[hIndex].func; @@ -66301,7 +66328,7 @@ GroupSettings* HP_pcg_get_dummy_group(void) { retVal___ = HPMHooks.source.pcg.get_dummy_group(); } if (HPMHooks.count.HP_pcg_get_dummy_group_post > 0) { - GroupSettings* (*postHookFunc) (GroupSettings* retVal___); + GroupSettings * (*postHookFunc) (GroupSettings * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_pcg_get_dummy_group_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pcg_get_dummy_group_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -66336,11 +66363,11 @@ bool HP_pcg_exists(int group_id) { } return retVal___; } -GroupSettings* HP_pcg_id2group(int group_id) { +GroupSettings * HP_pcg_id2group(int group_id) { int hIndex = 0; - GroupSettings* retVal___ = NULL; + GroupSettings * retVal___ = NULL; if (HPMHooks.count.HP_pcg_id2group_pre > 0) { - GroupSettings* (*preHookFunc) (int *group_id); + GroupSettings * (*preHookFunc) (int *group_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pcg_id2group_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pcg_id2group_pre[hIndex].func; @@ -66355,7 +66382,7 @@ GroupSettings* HP_pcg_id2group(int group_id) { retVal___ = HPMHooks.source.pcg.id2group(group_id); } if (HPMHooks.count.HP_pcg_id2group_post > 0) { - GroupSettings* (*postHookFunc) (GroupSettings* retVal___, int group_id); + GroupSettings * (*postHookFunc) (GroupSettings * retVal___, int group_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_pcg_id2group_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pcg_id2group_post[hIndex].func; retVal___ = postHookFunc(retVal___, group_id); @@ -66417,11 +66444,11 @@ bool HP_pcg_should_log_commands(GroupSettings *group) { } return retVal___; } -const char* HP_pcg_get_name(GroupSettings *group) { +const char * HP_pcg_get_name(GroupSettings *group) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_pcg_get_name_pre > 0) { - const char* (*preHookFunc) (GroupSettings **group); + const char * (*preHookFunc) (GroupSettings **group); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pcg_get_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pcg_get_name_pre[hIndex].func; @@ -66436,7 +66463,7 @@ const char* HP_pcg_get_name(GroupSettings *group) { retVal___ = HPMHooks.source.pcg.get_name(group); } if (HPMHooks.count.HP_pcg_get_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, GroupSettings *group); + const char * (*postHookFunc) (const char * retVal___, GroupSettings *group); for (hIndex = 0; hIndex < HPMHooks.count.HP_pcg_get_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pcg_get_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, group); @@ -66551,11 +66578,11 @@ void HP_pc_final(void) { } return; } -struct map_session_data* HP_pc_get_dummy_sd(void) { +struct map_session_data * HP_pc_get_dummy_sd(void) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_pc_get_dummy_sd_pre > 0) { - struct map_session_data* (*preHookFunc) (void); + struct map_session_data * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_dummy_sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_get_dummy_sd_pre[hIndex].func; @@ -66570,7 +66597,7 @@ struct map_session_data* HP_pc_get_dummy_sd(void) { retVal___ = HPMHooks.source.pc.get_dummy_sd(); } if (HPMHooks.count.HP_pc_get_dummy_sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_dummy_sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_get_dummy_sd_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -70091,11 +70118,11 @@ void HP_pc_setreg(struct map_session_data *sd, int64 reg, int val) { } return; } -char* HP_pc_readregstr(struct map_session_data *sd, int64 reg) { +char * HP_pc_readregstr(struct map_session_data *sd, int64 reg) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_pc_readregstr_pre > 0) { - char* (*preHookFunc) (struct map_session_data **sd, int64 *reg); + char * (*preHookFunc) (struct map_session_data **sd, int64 *reg); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_readregstr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_readregstr_pre[hIndex].func; @@ -70110,7 +70137,7 @@ char* HP_pc_readregstr(struct map_session_data *sd, int64 reg) { retVal___ = HPMHooks.source.pc.readregstr(sd, reg); } if (HPMHooks.count.HP_pc_readregstr_post > 0) { - char* (*postHookFunc) (char* retVal___, struct map_session_data *sd, int64 reg); + char * (*postHookFunc) (char * retVal___, struct map_session_data *sd, int64 reg); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_readregstr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_readregstr_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, reg); @@ -70198,11 +70225,11 @@ int HP_pc_setregistry(struct map_session_data *sd, int64 reg, int val) { } return retVal___; } -char* HP_pc_readregistry_str(struct map_session_data *sd, int64 reg) { +char * HP_pc_readregistry_str(struct map_session_data *sd, int64 reg) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_pc_readregistry_str_pre > 0) { - char* (*preHookFunc) (struct map_session_data **sd, int64 *reg); + char * (*preHookFunc) (struct map_session_data **sd, int64 *reg); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_readregistry_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_readregistry_str_pre[hIndex].func; @@ -70217,7 +70244,7 @@ char* HP_pc_readregistry_str(struct map_session_data *sd, int64 reg) { retVal___ = HPMHooks.source.pc.readregistry_str(sd, reg); } if (HPMHooks.count.HP_pc_readregistry_str_post > 0) { - char* (*postHookFunc) (char* retVal___, struct map_session_data *sd, int64 reg); + char * (*postHookFunc) (char * retVal___, struct map_session_data *sd, int64 reg); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_readregistry_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_readregistry_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, reg); @@ -70528,11 +70555,11 @@ int HP_pc_divorce(struct map_session_data *sd) { } return retVal___; } -struct map_session_data* HP_pc_get_partner(struct map_session_data *sd) { +struct map_session_data * HP_pc_get_partner(struct map_session_data *sd) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_pc_get_partner_pre > 0) { - struct map_session_data* (*preHookFunc) (struct map_session_data **sd); + struct map_session_data * (*preHookFunc) (struct map_session_data **sd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_partner_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_get_partner_pre[hIndex].func; @@ -70547,7 +70574,7 @@ struct map_session_data* HP_pc_get_partner(struct map_session_data *sd) { retVal___ = HPMHooks.source.pc.get_partner(sd); } if (HPMHooks.count.HP_pc_get_partner_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct map_session_data *sd); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct map_session_data *sd); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_partner_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_get_partner_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd); @@ -70555,11 +70582,11 @@ struct map_session_data* HP_pc_get_partner(struct map_session_data *sd) { } return retVal___; } -struct map_session_data* HP_pc_get_father(struct map_session_data *sd) { +struct map_session_data * HP_pc_get_father(struct map_session_data *sd) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_pc_get_father_pre > 0) { - struct map_session_data* (*preHookFunc) (struct map_session_data **sd); + struct map_session_data * (*preHookFunc) (struct map_session_data **sd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_father_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_get_father_pre[hIndex].func; @@ -70574,7 +70601,7 @@ struct map_session_data* HP_pc_get_father(struct map_session_data *sd) { retVal___ = HPMHooks.source.pc.get_father(sd); } if (HPMHooks.count.HP_pc_get_father_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct map_session_data *sd); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct map_session_data *sd); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_father_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_get_father_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd); @@ -70582,11 +70609,11 @@ struct map_session_data* HP_pc_get_father(struct map_session_data *sd) { } return retVal___; } -struct map_session_data* HP_pc_get_mother(struct map_session_data *sd) { +struct map_session_data * HP_pc_get_mother(struct map_session_data *sd) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_pc_get_mother_pre > 0) { - struct map_session_data* (*preHookFunc) (struct map_session_data **sd); + struct map_session_data * (*preHookFunc) (struct map_session_data **sd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_mother_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_get_mother_pre[hIndex].func; @@ -70601,7 +70628,7 @@ struct map_session_data* HP_pc_get_mother(struct map_session_data *sd) { retVal___ = HPMHooks.source.pc.get_mother(sd); } if (HPMHooks.count.HP_pc_get_mother_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct map_session_data *sd); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct map_session_data *sd); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_mother_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_get_mother_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd); @@ -70609,11 +70636,11 @@ struct map_session_data* HP_pc_get_mother(struct map_session_data *sd) { } return retVal___; } -struct map_session_data* HP_pc_get_child(struct map_session_data *sd) { +struct map_session_data * HP_pc_get_child(struct map_session_data *sd) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_pc_get_child_pre > 0) { - struct map_session_data* (*preHookFunc) (struct map_session_data **sd); + struct map_session_data * (*preHookFunc) (struct map_session_data **sd); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_child_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_get_child_pre[hIndex].func; @@ -70628,7 +70655,7 @@ struct map_session_data* HP_pc_get_child(struct map_session_data *sd) { retVal___ = HPMHooks.source.pc.get_child(sd); } if (HPMHooks.count.HP_pc_get_child_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct map_session_data *sd); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct map_session_data *sd); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_get_child_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_get_child_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd); @@ -70795,11 +70822,11 @@ int HP_pc_mapid2jobid(unsigned int class_, int sex) { } return retVal___; } -const char* HP_pc_job_name(int class) { +const char * HP_pc_job_name(int class) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_pc_job_name_pre > 0) { - const char* (*preHookFunc) (int *class); + const char * (*preHookFunc) (int *class); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_job_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_pc_job_name_pre[hIndex].func; @@ -70814,7 +70841,7 @@ const char* HP_pc_job_name(int class) { retVal___ = HPMHooks.source.pc.job_name(class); } if (HPMHooks.count.HP_pc_job_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int class); + const char * (*postHookFunc) (const char * retVal___, int class); for (hIndex = 0; hIndex < HPMHooks.count.HP_pc_job_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_pc_job_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, class); @@ -73577,11 +73604,11 @@ void HP_pc_clear_existing_reproduceskill(struct map_session_data *sd, bool clear return; } /* pcre_interface */ -pcre* HP_libpcre_compile(const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr) { +pcre * HP_libpcre_compile(const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr) { int hIndex = 0; - pcre* retVal___ = NULL; + pcre * retVal___ = NULL; if (HPMHooks.count.HP_libpcre_compile_pre > 0) { - pcre* (*preHookFunc) (const char **pattern, int *options, const char ***errptr, int **erroffset, const unsigned char **tableptr); + pcre * (*preHookFunc) (const char **pattern, int *options, const char ***errptr, int **erroffset, const unsigned char **tableptr); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libpcre_compile_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libpcre_compile_pre[hIndex].func; @@ -73596,7 +73623,7 @@ pcre* HP_libpcre_compile(const char *pattern, int options, const char **errptr, retVal___ = HPMHooks.source.libpcre.compile(pattern, options, errptr, erroffset, tableptr); } if (HPMHooks.count.HP_libpcre_compile_post > 0) { - pcre* (*postHookFunc) (pcre* retVal___, const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr); + pcre * (*postHookFunc) (pcre * retVal___, const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr); for (hIndex = 0; hIndex < HPMHooks.count.HP_libpcre_compile_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libpcre_compile_post[hIndex].func; retVal___ = postHookFunc(retVal___, pattern, options, errptr, erroffset, tableptr); @@ -73604,11 +73631,11 @@ pcre* HP_libpcre_compile(const char *pattern, int options, const char **errptr, } return retVal___; } -pcre_extra* HP_libpcre_study(const pcre *code, int options, const char **errptr) { +pcre_extra * HP_libpcre_study(const pcre *code, int options, const char **errptr) { int hIndex = 0; - pcre_extra* retVal___ = NULL; + pcre_extra * retVal___ = NULL; if (HPMHooks.count.HP_libpcre_study_pre > 0) { - pcre_extra* (*preHookFunc) (const pcre **code, int *options, const char ***errptr); + pcre_extra * (*preHookFunc) (const pcre **code, int *options, const char ***errptr); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_libpcre_study_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_libpcre_study_pre[hIndex].func; @@ -73623,7 +73650,7 @@ pcre_extra* HP_libpcre_study(const pcre *code, int options, const char **errptr) retVal___ = HPMHooks.source.libpcre.study(code, options, errptr); } if (HPMHooks.count.HP_libpcre_study_post > 0) { - pcre_extra* (*postHookFunc) (pcre_extra* retVal___, const pcre *code, int options, const char **errptr); + pcre_extra * (*postHookFunc) (pcre_extra * retVal___, const pcre *code, int options, const char **errptr); for (hIndex = 0; hIndex < HPMHooks.count.HP_libpcre_study_post; hIndex++) { postHookFunc = HPMHooks.list.HP_libpcre_study_post[hIndex].func; retVal___ = postHookFunc(retVal___, code, options, errptr); @@ -75121,11 +75148,11 @@ void HP_quest_reload(void) { } return; } -struct quest_db* HP_quest_db(int quest_id) { +struct quest_db * HP_quest_db(int quest_id) { int hIndex = 0; - struct quest_db* retVal___ = NULL; + struct quest_db * retVal___ = NULL; if (HPMHooks.count.HP_quest_db_pre > 0) { - struct quest_db* (*preHookFunc) (int *quest_id); + struct quest_db * (*preHookFunc) (int *quest_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_quest_db_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_quest_db_pre[hIndex].func; @@ -75140,7 +75167,7 @@ struct quest_db* HP_quest_db(int quest_id) { retVal___ = HPMHooks.source.quest.db(quest_id); } if (HPMHooks.count.HP_quest_db_post > 0) { - struct quest_db* (*postHookFunc) (struct quest_db* retVal___, int quest_id); + struct quest_db * (*postHookFunc) (struct quest_db * retVal___, int quest_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_quest_db_post; hIndex++) { postHookFunc = HPMHooks.list.HP_quest_db_post[hIndex].func; retVal___ = postHookFunc(retVal___, quest_id); @@ -75422,11 +75449,11 @@ int HP_quest_read_db(void) { } return retVal___; } -struct quest_db* HP_quest_read_db_sub(struct config_setting_t *cs, int n, const char *source) { +struct quest_db * HP_quest_read_db_sub(struct config_setting_t *cs, int n, const char *source) { int hIndex = 0; - struct quest_db* retVal___ = NULL; + struct quest_db * retVal___ = NULL; if (HPMHooks.count.HP_quest_read_db_sub_pre > 0) { - struct quest_db* (*preHookFunc) (struct config_setting_t **cs, int *n, const char **source); + struct quest_db * (*preHookFunc) (struct config_setting_t **cs, int *n, const char **source); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_quest_read_db_sub_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_quest_read_db_sub_pre[hIndex].func; @@ -75441,7 +75468,7 @@ struct quest_db* HP_quest_read_db_sub(struct config_setting_t *cs, int n, const retVal___ = HPMHooks.source.quest.read_db_sub(cs, n, source); } if (HPMHooks.count.HP_quest_read_db_sub_post > 0) { - struct quest_db* (*postHookFunc) (struct quest_db* retVal___, struct config_setting_t *cs, int n, const char *source); + struct quest_db * (*postHookFunc) (struct quest_db * retVal___, struct config_setting_t *cs, int n, const char *source); for (hIndex = 0; hIndex < HPMHooks.count.HP_quest_read_db_sub_post; hIndex++) { postHookFunc = HPMHooks.list.HP_quest_read_db_sub_post[hIndex].func; retVal___ = postHookFunc(retVal___, cs, n, source); @@ -76787,11 +76814,11 @@ void HP_rodex_send_mail_result(struct map_session_data *ssd, struct map_session_ } return; } -struct rodex_message* HP_rodex_get_mail(struct map_session_data *sd, int64 mail_id) { +struct rodex_message * HP_rodex_get_mail(struct map_session_data *sd, int64 mail_id) { int hIndex = 0; - struct rodex_message* retVal___ = NULL; + struct rodex_message * retVal___ = NULL; if (HPMHooks.count.HP_rodex_get_mail_pre > 0) { - struct rodex_message* (*preHookFunc) (struct map_session_data **sd, int64 *mail_id); + struct rodex_message * (*preHookFunc) (struct map_session_data **sd, int64 *mail_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_rodex_get_mail_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_rodex_get_mail_pre[hIndex].func; @@ -76806,7 +76833,7 @@ struct rodex_message* HP_rodex_get_mail(struct map_session_data *sd, int64 mail_ retVal___ = HPMHooks.source.rodex.get_mail(sd, mail_id); } if (HPMHooks.count.HP_rodex_get_mail_post > 0) { - struct rodex_message* (*postHookFunc) (struct rodex_message* retVal___, struct map_session_data *sd, int64 mail_id); + struct rodex_message * (*postHookFunc) (struct rodex_message * retVal___, struct map_session_data *sd, int64 mail_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_rodex_get_mail_post; hIndex++) { postHookFunc = HPMHooks.list.HP_rodex_get_mail_post[hIndex].func; retVal___ = postHookFunc(retVal___, sd, mail_id); @@ -77076,11 +77103,11 @@ int HP_script_reload(void) { } return retVal___; } -struct script_code* HP_script_parse(const char *src, const char *file, int line, int options, int *retval) { +struct script_code * HP_script_parse(const char *src, const char *file, int line, int options, int *retval) { int hIndex = 0; - struct script_code* retVal___ = NULL; + struct script_code * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_pre > 0) { - struct script_code* (*preHookFunc) (const char **src, const char **file, int *line, int *options, int **retval); + struct script_code * (*preHookFunc) (const char **src, const char **file, int *line, int *options, int **retval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_pre[hIndex].func; @@ -77095,7 +77122,7 @@ struct script_code* HP_script_parse(const char *src, const char *file, int line, retVal___ = HPMHooks.source.script.parse(src, file, line, options, retval); } if (HPMHooks.count.HP_script_parse_post > 0) { - struct script_code* (*postHookFunc) (struct script_code* retVal___, const char *src, const char *file, int line, int options, int *retval); + struct script_code * (*postHookFunc) (struct script_code * retVal___, const char *src, const char *file, int line, int options, int *retval); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_post[hIndex].func; retVal___ = postHookFunc(retVal___, src, file, line, options, retval); @@ -77156,11 +77183,11 @@ void HP_script_parse_builtin(void) { } return; } -const char* HP_script_parse_subexpr(const char *p, int limit) { +const char * HP_script_parse_subexpr(const char *p, int limit) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_subexpr_pre > 0) { - const char* (*preHookFunc) (const char **p, int *limit); + const char * (*preHookFunc) (const char **p, int *limit); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_subexpr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_subexpr_pre[hIndex].func; @@ -77175,7 +77202,7 @@ const char* HP_script_parse_subexpr(const char *p, int limit) { retVal___ = HPMHooks.source.script.parse_subexpr(p, limit); } if (HPMHooks.count.HP_script_parse_subexpr_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p, int limit); + const char * (*postHookFunc) (const char * retVal___, const char *p, int limit); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_subexpr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_subexpr_post[hIndex].func; retVal___ = postHookFunc(retVal___, p, limit); @@ -77183,11 +77210,11 @@ const char* HP_script_parse_subexpr(const char *p, int limit) { } return retVal___; } -const char* HP_script_skip_space(const char *p) { +const char * HP_script_skip_space(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_skip_space_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_skip_space_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_skip_space_pre[hIndex].func; @@ -77202,7 +77229,7 @@ const char* HP_script_skip_space(const char *p) { retVal___ = HPMHooks.source.script.skip_space(p); } if (HPMHooks.count.HP_script_skip_space_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_skip_space_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_skip_space_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -77262,11 +77289,11 @@ void HP_script_warning(const char *src, const char *file, int start_line, const } return; } -struct script_code* HP_script_clone_script(struct script_code *original) { +struct script_code * HP_script_clone_script(struct script_code *original) { int hIndex = 0; - struct script_code* retVal___ = NULL; + struct script_code * retVal___ = NULL; if (HPMHooks.count.HP_script_clone_script_pre > 0) { - struct script_code* (*preHookFunc) (struct script_code **original); + struct script_code * (*preHookFunc) (struct script_code **original); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_clone_script_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_clone_script_pre[hIndex].func; @@ -77281,7 +77308,7 @@ struct script_code* HP_script_clone_script(struct script_code *original) { retVal___ = HPMHooks.source.script.clone_script(original); } if (HPMHooks.count.HP_script_clone_script_post > 0) { - struct script_code* (*postHookFunc) (struct script_code* retVal___, struct script_code *original); + struct script_code * (*postHookFunc) (struct script_code * retVal___, struct script_code *original); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_clone_script_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_clone_script_post[hIndex].func; retVal___ = postHookFunc(retVal___, original); @@ -77343,11 +77370,11 @@ int HP_script_conv_num(struct script_state *st, struct script_data *data) { } return retVal___; } -const char* HP_script_conv_str(struct script_state *st, struct script_data *data) { +const char * HP_script_conv_str(struct script_state *st, struct script_data *data) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_conv_str_pre > 0) { - const char* (*preHookFunc) (struct script_state **st, struct script_data **data); + const char * (*preHookFunc) (struct script_state **st, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_conv_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_conv_str_pre[hIndex].func; @@ -77362,7 +77389,7 @@ const char* HP_script_conv_str(struct script_state *st, struct script_data *data retVal___ = HPMHooks.source.script.conv_str(st, data); } if (HPMHooks.count.HP_script_conv_str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct script_state *st, struct script_data *data); + const char * (*postHookFunc) (const char * retVal___, struct script_state *st, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_conv_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_conv_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, data); @@ -77370,11 +77397,11 @@ const char* HP_script_conv_str(struct script_state *st, struct script_data *data } return retVal___; } -struct map_session_data* HP_script_rid2sd(struct script_state *st) { +struct map_session_data * HP_script_rid2sd(struct script_state *st) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_script_rid2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct script_state **st); + struct map_session_data * (*preHookFunc) (struct script_state **st); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_rid2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_rid2sd_pre[hIndex].func; @@ -77389,7 +77416,7 @@ struct map_session_data* HP_script_rid2sd(struct script_state *st) { retVal___ = HPMHooks.source.script.rid2sd(st); } if (HPMHooks.count.HP_script_rid2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct script_state *st); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct script_state *st); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_rid2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_rid2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, st); @@ -77397,11 +77424,11 @@ struct map_session_data* HP_script_rid2sd(struct script_state *st) { } return retVal___; } -struct map_session_data* HP_script_id2sd(struct script_state *st, int account_id) { +struct map_session_data * HP_script_id2sd(struct script_state *st, int account_id) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_script_id2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct script_state **st, int *account_id); + struct map_session_data * (*preHookFunc) (struct script_state **st, int *account_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_id2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_id2sd_pre[hIndex].func; @@ -77416,7 +77443,7 @@ struct map_session_data* HP_script_id2sd(struct script_state *st, int account_id retVal___ = HPMHooks.source.script.id2sd(st, account_id); } if (HPMHooks.count.HP_script_id2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct script_state *st, int account_id); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct script_state *st, int account_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_id2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_id2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, account_id); @@ -77424,11 +77451,11 @@ struct map_session_data* HP_script_id2sd(struct script_state *st, int account_id } return retVal___; } -struct map_session_data* HP_script_charid2sd(struct script_state *st, int char_id) { +struct map_session_data * HP_script_charid2sd(struct script_state *st, int char_id) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_script_charid2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct script_state **st, int *char_id); + struct map_session_data * (*preHookFunc) (struct script_state **st, int *char_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_charid2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_charid2sd_pre[hIndex].func; @@ -77443,7 +77470,7 @@ struct map_session_data* HP_script_charid2sd(struct script_state *st, int char_i retVal___ = HPMHooks.source.script.charid2sd(st, char_id); } if (HPMHooks.count.HP_script_charid2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct script_state *st, int char_id); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct script_state *st, int char_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_charid2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_charid2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, char_id); @@ -77451,11 +77478,11 @@ struct map_session_data* HP_script_charid2sd(struct script_state *st, int char_i } return retVal___; } -struct map_session_data* HP_script_nick2sd(struct script_state *st, const char *name) { +struct map_session_data * HP_script_nick2sd(struct script_state *st, const char *name) { int hIndex = 0; - struct map_session_data* retVal___ = NULL; + struct map_session_data * retVal___ = NULL; if (HPMHooks.count.HP_script_nick2sd_pre > 0) { - struct map_session_data* (*preHookFunc) (struct script_state **st, const char **name); + struct map_session_data * (*preHookFunc) (struct script_state **st, const char **name); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_nick2sd_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_nick2sd_pre[hIndex].func; @@ -77470,7 +77497,7 @@ struct map_session_data* HP_script_nick2sd(struct script_state *st, const char * retVal___ = HPMHooks.source.script.nick2sd(st, name); } if (HPMHooks.count.HP_script_nick2sd_post > 0) { - struct map_session_data* (*postHookFunc) (struct map_session_data* retVal___, struct script_state *st, const char *name); + struct map_session_data * (*postHookFunc) (struct map_session_data * retVal___, struct script_state *st, const char *name); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_nick2sd_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_nick2sd_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, name); @@ -77504,11 +77531,11 @@ void HP_script_detach_rid(struct script_state *st) { } return; } -struct script_data* HP_script_push_val(struct script_stack *stack, enum c_op type, int64 val, struct reg_db *ref) { +struct script_data * HP_script_push_val(struct script_stack *stack, enum c_op type, int64 val, struct reg_db *ref) { int hIndex = 0; - struct script_data* retVal___ = NULL; + struct script_data * retVal___ = NULL; if (HPMHooks.count.HP_script_push_val_pre > 0) { - struct script_data* (*preHookFunc) (struct script_stack **stack, enum c_op *type, int64 *val, struct reg_db **ref); + struct script_data * (*preHookFunc) (struct script_stack **stack, enum c_op *type, int64 *val, struct reg_db **ref); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_val_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_push_val_pre[hIndex].func; @@ -77523,7 +77550,7 @@ struct script_data* HP_script_push_val(struct script_stack *stack, enum c_op typ retVal___ = HPMHooks.source.script.push_val(stack, type, val, ref); } if (HPMHooks.count.HP_script_push_val_post > 0) { - struct script_data* (*postHookFunc) (struct script_data* retVal___, struct script_stack *stack, enum c_op type, int64 val, struct reg_db *ref); + struct script_data * (*postHookFunc) (struct script_data * retVal___, struct script_stack *stack, enum c_op type, int64 val, struct reg_db *ref); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_val_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_push_val_post[hIndex].func; retVal___ = postHookFunc(retVal___, stack, type, val, ref); @@ -77531,11 +77558,11 @@ struct script_data* HP_script_push_val(struct script_stack *stack, enum c_op typ } return retVal___; } -struct script_data* HP_script_get_val(struct script_state *st, struct script_data *data) { +struct script_data * HP_script_get_val(struct script_state *st, struct script_data *data) { int hIndex = 0; - struct script_data* retVal___ = NULL; + struct script_data * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val_pre > 0) { - struct script_data* (*preHookFunc) (struct script_state **st, struct script_data **data); + struct script_data * (*preHookFunc) (struct script_state **st, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val_pre[hIndex].func; @@ -77550,7 +77577,7 @@ struct script_data* HP_script_get_val(struct script_state *st, struct script_dat retVal___ = HPMHooks.source.script.get_val(st, data); } if (HPMHooks.count.HP_script_get_val_post > 0) { - struct script_data* (*postHookFunc) (struct script_data* retVal___, struct script_state *st, struct script_data *data); + struct script_data * (*postHookFunc) (struct script_data * retVal___, struct script_state *st, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, data); @@ -77558,11 +77585,11 @@ struct script_data* HP_script_get_val(struct script_state *st, struct script_dat } return retVal___; } -char* HP_script_get_val_ref_str(struct script_state *st, struct reg_db *n, struct script_data *data) { +char * HP_script_get_val_ref_str(struct script_state *st, struct reg_db *n, struct script_data *data) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val_ref_str_pre > 0) { - char* (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); + char * (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_ref_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val_ref_str_pre[hIndex].func; @@ -77577,7 +77604,7 @@ char* HP_script_get_val_ref_str(struct script_state *st, struct reg_db *n, struc retVal___ = HPMHooks.source.script.get_val_ref_str(st, n, data); } if (HPMHooks.count.HP_script_get_val_ref_str_post > 0) { - char* (*postHookFunc) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); + char * (*postHookFunc) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_ref_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val_ref_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, n, data); @@ -77585,11 +77612,11 @@ char* HP_script_get_val_ref_str(struct script_state *st, struct reg_db *n, struc } return retVal___; } -char* HP_script_get_val_pc_ref_str(struct script_state *st, struct reg_db *n, struct script_data *data) { +char * HP_script_get_val_pc_ref_str(struct script_state *st, struct reg_db *n, struct script_data *data) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val_pc_ref_str_pre > 0) { - char* (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); + char * (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_pc_ref_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val_pc_ref_str_pre[hIndex].func; @@ -77604,7 +77631,7 @@ char* HP_script_get_val_pc_ref_str(struct script_state *st, struct reg_db *n, st retVal___ = HPMHooks.source.script.get_val_pc_ref_str(st, n, data); } if (HPMHooks.count.HP_script_get_val_pc_ref_str_post > 0) { - char* (*postHookFunc) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); + char * (*postHookFunc) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_pc_ref_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val_pc_ref_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, n, data); @@ -77612,11 +77639,11 @@ char* HP_script_get_val_pc_ref_str(struct script_state *st, struct reg_db *n, st } return retVal___; } -char* HP_script_get_val_scope_str(struct script_state *st, struct reg_db *n, struct script_data *data) { +char * HP_script_get_val_scope_str(struct script_state *st, struct reg_db *n, struct script_data *data) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val_scope_str_pre > 0) { - char* (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); + char * (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_scope_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val_scope_str_pre[hIndex].func; @@ -77631,7 +77658,7 @@ char* HP_script_get_val_scope_str(struct script_state *st, struct reg_db *n, str retVal___ = HPMHooks.source.script.get_val_scope_str(st, n, data); } if (HPMHooks.count.HP_script_get_val_scope_str_post > 0) { - char* (*postHookFunc) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); + char * (*postHookFunc) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_scope_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val_scope_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, n, data); @@ -77639,11 +77666,11 @@ char* HP_script_get_val_scope_str(struct script_state *st, struct reg_db *n, str } return retVal___; } -char* HP_script_get_val_npc_str(struct script_state *st, struct reg_db *n, struct script_data *data) { +char * HP_script_get_val_npc_str(struct script_state *st, struct reg_db *n, struct script_data *data) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val_npc_str_pre > 0) { - char* (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); + char * (*preHookFunc) (struct script_state **st, struct reg_db **n, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_npc_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val_npc_str_pre[hIndex].func; @@ -77658,7 +77685,7 @@ char* HP_script_get_val_npc_str(struct script_state *st, struct reg_db *n, struc retVal___ = HPMHooks.source.script.get_val_npc_str(st, n, data); } if (HPMHooks.count.HP_script_get_val_npc_str_post > 0) { - char* (*postHookFunc) (char* retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); + char * (*postHookFunc) (char * retVal___, struct script_state *st, struct reg_db *n, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_npc_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val_npc_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, n, data); @@ -77666,11 +77693,11 @@ char* HP_script_get_val_npc_str(struct script_state *st, struct reg_db *n, struc } return retVal___; } -char* HP_script_get_val_instance_str(struct script_state *st, const char *name, struct script_data *data) { +char * HP_script_get_val_instance_str(struct script_state *st, const char *name, struct script_data *data) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val_instance_str_pre > 0) { - char* (*preHookFunc) (struct script_state **st, const char **name, struct script_data **data); + char * (*preHookFunc) (struct script_state **st, const char **name, struct script_data **data); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_instance_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val_instance_str_pre[hIndex].func; @@ -77685,7 +77712,7 @@ char* HP_script_get_val_instance_str(struct script_state *st, const char *name, retVal___ = HPMHooks.source.script.get_val_instance_str(st, name, data); } if (HPMHooks.count.HP_script_get_val_instance_str_post > 0) { - char* (*postHookFunc) (char* retVal___, struct script_state *st, const char *name, struct script_data *data); + char * (*postHookFunc) (char * retVal___, struct script_state *st, const char *name, struct script_data *data); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val_instance_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val_instance_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, name, data); @@ -77828,11 +77855,11 @@ int HP_script_get_val_instance_num(struct script_state *st, const char *name, st } return retVal___; } -const void* HP_script_get_val2(struct script_state *st, int64 uid, struct reg_db *ref) { +const void * HP_script_get_val2(struct script_state *st, int64 uid, struct reg_db *ref) { int hIndex = 0; - const void* retVal___ = NULL; + const void * retVal___ = NULL; if (HPMHooks.count.HP_script_get_val2_pre > 0) { - const void* (*preHookFunc) (struct script_state **st, int64 *uid, struct reg_db **ref); + const void * (*preHookFunc) (struct script_state **st, int64 *uid, struct reg_db **ref); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val2_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_val2_pre[hIndex].func; @@ -77847,7 +77874,7 @@ const void* HP_script_get_val2(struct script_state *st, int64 uid, struct reg_db retVal___ = HPMHooks.source.script.get_val2(st, uid, ref); } if (HPMHooks.count.HP_script_get_val2_post > 0) { - const void* (*postHookFunc) (const void* retVal___, struct script_state *st, int64 uid, struct reg_db *ref); + const void * (*postHookFunc) (const void * retVal___, struct script_state *st, int64 uid, struct reg_db *ref); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_val2_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_val2_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, uid, ref); @@ -77855,11 +77882,11 @@ const void* HP_script_get_val2(struct script_state *st, int64 uid, struct reg_db } return retVal___; } -struct script_data* HP_script_push_str(struct script_stack *stack, char *str) { +struct script_data * HP_script_push_str(struct script_stack *stack, char *str) { int hIndex = 0; - struct script_data* retVal___ = NULL; + struct script_data * retVal___ = NULL; if (HPMHooks.count.HP_script_push_str_pre > 0) { - struct script_data* (*preHookFunc) (struct script_stack **stack, char **str); + struct script_data * (*preHookFunc) (struct script_stack **stack, char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_push_str_pre[hIndex].func; @@ -77874,7 +77901,7 @@ struct script_data* HP_script_push_str(struct script_stack *stack, char *str) { retVal___ = HPMHooks.source.script.push_str(stack, str); } if (HPMHooks.count.HP_script_push_str_post > 0) { - struct script_data* (*postHookFunc) (struct script_data* retVal___, struct script_stack *stack, char *str); + struct script_data * (*postHookFunc) (struct script_data * retVal___, struct script_stack *stack, char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_push_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, stack, str); @@ -77882,11 +77909,11 @@ struct script_data* HP_script_push_str(struct script_stack *stack, char *str) { } return retVal___; } -struct script_data* HP_script_push_conststr(struct script_stack *stack, const char *str) { +struct script_data * HP_script_push_conststr(struct script_stack *stack, const char *str) { int hIndex = 0; - struct script_data* retVal___ = NULL; + struct script_data * retVal___ = NULL; if (HPMHooks.count.HP_script_push_conststr_pre > 0) { - struct script_data* (*preHookFunc) (struct script_stack **stack, const char **str); + struct script_data * (*preHookFunc) (struct script_stack **stack, const char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_conststr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_push_conststr_pre[hIndex].func; @@ -77901,7 +77928,7 @@ struct script_data* HP_script_push_conststr(struct script_stack *stack, const ch retVal___ = HPMHooks.source.script.push_conststr(stack, str); } if (HPMHooks.count.HP_script_push_conststr_post > 0) { - struct script_data* (*postHookFunc) (struct script_data* retVal___, struct script_stack *stack, const char *str); + struct script_data * (*postHookFunc) (struct script_data * retVal___, struct script_stack *stack, const char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_conststr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_push_conststr_post[hIndex].func; retVal___ = postHookFunc(retVal___, stack, str); @@ -77909,11 +77936,11 @@ struct script_data* HP_script_push_conststr(struct script_stack *stack, const ch } return retVal___; } -struct script_data* HP_script_push_copy(struct script_stack *stack, int pos) { +struct script_data * HP_script_push_copy(struct script_stack *stack, int pos) { int hIndex = 0; - struct script_data* retVal___ = NULL; + struct script_data * retVal___ = NULL; if (HPMHooks.count.HP_script_push_copy_pre > 0) { - struct script_data* (*preHookFunc) (struct script_stack **stack, int *pos); + struct script_data * (*preHookFunc) (struct script_stack **stack, int *pos); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_copy_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_push_copy_pre[hIndex].func; @@ -77928,7 +77955,7 @@ struct script_data* HP_script_push_copy(struct script_stack *stack, int pos) { retVal___ = HPMHooks.source.script.push_copy(stack, pos); } if (HPMHooks.count.HP_script_push_copy_post > 0) { - struct script_data* (*postHookFunc) (struct script_data* retVal___, struct script_stack *stack, int pos); + struct script_data * (*postHookFunc) (struct script_data * retVal___, struct script_stack *stack, int pos); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_copy_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_push_copy_post[hIndex].func; retVal___ = postHookFunc(retVal___, stack, pos); @@ -78303,11 +78330,11 @@ void HP_script_free_vars(struct DBMap *var_storage) { } return; } -struct script_state* HP_script_alloc_state(struct script_code *rootscript, int pos, int rid, int oid) { +struct script_state * HP_script_alloc_state(struct script_code *rootscript, int pos, int rid, int oid) { int hIndex = 0; - struct script_state* retVal___ = NULL; + struct script_state * retVal___ = NULL; if (HPMHooks.count.HP_script_alloc_state_pre > 0) { - struct script_state* (*preHookFunc) (struct script_code **rootscript, int *pos, int *rid, int *oid); + struct script_state * (*preHookFunc) (struct script_code **rootscript, int *pos, int *rid, int *oid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_alloc_state_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_alloc_state_pre[hIndex].func; @@ -78322,7 +78349,7 @@ struct script_state* HP_script_alloc_state(struct script_code *rootscript, int p retVal___ = HPMHooks.source.script.alloc_state(rootscript, pos, rid, oid); } if (HPMHooks.count.HP_script_alloc_state_post > 0) { - struct script_state* (*postHookFunc) (struct script_state* retVal___, struct script_code *rootscript, int pos, int rid, int oid); + struct script_state * (*postHookFunc) (struct script_state * retVal___, struct script_code *rootscript, int pos, int rid, int oid); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_alloc_state_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_alloc_state_post[hIndex].func; retVal___ = postHookFunc(retVal___, rootscript, pos, rid, oid); @@ -78541,11 +78568,11 @@ int HP_script_add_variable(const char *varname) { } return retVal___; } -const char* HP_script_get_str(int id) { +const char * HP_script_get_str(int id) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_str_pre > 0) { - const char* (*preHookFunc) (int *id); + const char * (*preHookFunc) (int *id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_str_pre[hIndex].func; @@ -78560,7 +78587,7 @@ const char* HP_script_get_str(int id) { retVal___ = HPMHooks.source.script.get_str(id); } if (HPMHooks.count.HP_script_get_str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int id); + const char * (*postHookFunc) (const char * retVal___, int id); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_str_post[hIndex].func; retVal___ = postHookFunc(retVal___, id); @@ -78647,11 +78674,11 @@ void HP_script_attach_state(struct script_state *st) { } return; } -struct script_queue* HP_script_queue(int idx) { +struct script_queue * HP_script_queue(int idx) { int hIndex = 0; - struct script_queue* retVal___ = NULL; + struct script_queue * retVal___ = NULL; if (HPMHooks.count.HP_script_queue_pre > 0) { - struct script_queue* (*preHookFunc) (int *idx); + struct script_queue * (*preHookFunc) (int *idx); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_queue_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_queue_pre[hIndex].func; @@ -78666,7 +78693,7 @@ struct script_queue* HP_script_queue(int idx) { retVal___ = HPMHooks.source.script.queue(idx); } if (HPMHooks.count.HP_script_queue_post > 0) { - struct script_queue* (*postHookFunc) (struct script_queue* retVal___, int idx); + struct script_queue * (*postHookFunc) (struct script_queue * retVal___, int idx); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_queue_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_queue_post[hIndex].func; retVal___ = postHookFunc(retVal___, idx); @@ -78809,11 +78836,11 @@ bool HP_script_queue_clear(int idx) { } return retVal___; } -const char* HP_script_parse_curly_close(const char *p) { +const char * HP_script_parse_curly_close(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_curly_close_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_curly_close_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_curly_close_pre[hIndex].func; @@ -78828,7 +78855,7 @@ const char* HP_script_parse_curly_close(const char *p) { retVal___ = HPMHooks.source.script.parse_curly_close(p); } if (HPMHooks.count.HP_script_parse_curly_close_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_curly_close_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_curly_close_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -78836,11 +78863,11 @@ const char* HP_script_parse_curly_close(const char *p) { } return retVal___; } -const char* HP_script_parse_syntax_close(const char *p) { +const char * HP_script_parse_syntax_close(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_syntax_close_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_close_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_syntax_close_pre[hIndex].func; @@ -78855,7 +78882,7 @@ const char* HP_script_parse_syntax_close(const char *p) { retVal___ = HPMHooks.source.script.parse_syntax_close(p); } if (HPMHooks.count.HP_script_parse_syntax_close_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_close_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_syntax_close_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -78863,11 +78890,11 @@ const char* HP_script_parse_syntax_close(const char *p) { } return retVal___; } -const char* HP_script_parse_syntax_close_sub(const char *p, int *flag) { +const char * HP_script_parse_syntax_close_sub(const char *p, int *flag) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_syntax_close_sub_pre > 0) { - const char* (*preHookFunc) (const char **p, int **flag); + const char * (*preHookFunc) (const char **p, int **flag); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_close_sub_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_syntax_close_sub_pre[hIndex].func; @@ -78882,7 +78909,7 @@ const char* HP_script_parse_syntax_close_sub(const char *p, int *flag) { retVal___ = HPMHooks.source.script.parse_syntax_close_sub(p, flag); } if (HPMHooks.count.HP_script_parse_syntax_close_sub_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p, int *flag); + const char * (*postHookFunc) (const char * retVal___, const char *p, int *flag); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_close_sub_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_syntax_close_sub_post[hIndex].func; retVal___ = postHookFunc(retVal___, p, flag); @@ -78890,11 +78917,11 @@ const char* HP_script_parse_syntax_close_sub(const char *p, int *flag) { } return retVal___; } -const char* HP_script_parse_syntax(const char *p) { +const char * HP_script_parse_syntax(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_syntax_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_syntax_pre[hIndex].func; @@ -78909,7 +78936,7 @@ const char* HP_script_parse_syntax(const char *p) { retVal___ = HPMHooks.source.script.parse_syntax(p); } if (HPMHooks.count.HP_script_parse_syntax_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_syntax_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -78917,11 +78944,11 @@ const char* HP_script_parse_syntax(const char *p) { } return retVal___; } -const char* HP_script_parse_syntax_function(const char *p, bool is_public) { +const char * HP_script_parse_syntax_function(const char *p, bool is_public) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_syntax_function_pre > 0) { - const char* (*preHookFunc) (const char **p, bool *is_public); + const char * (*preHookFunc) (const char **p, bool *is_public); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_function_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_syntax_function_pre[hIndex].func; @@ -78936,7 +78963,7 @@ const char* HP_script_parse_syntax_function(const char *p, bool is_public) { retVal___ = HPMHooks.source.script.parse_syntax_function(p, is_public); } if (HPMHooks.count.HP_script_parse_syntax_function_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p, bool is_public); + const char * (*postHookFunc) (const char * retVal___, const char *p, bool is_public); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_syntax_function_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_syntax_function_post[hIndex].func; retVal___ = postHookFunc(retVal___, p, is_public); @@ -78998,11 +79025,11 @@ int HP_script_get_num(const struct script_buf *scriptbuf, int *pos) { } return retVal___; } -const char* HP_script_op2name(int op) { +const char * HP_script_op2name(int op) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_op2name_pre > 0) { - const char* (*preHookFunc) (int *op); + const char * (*preHookFunc) (int *op); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_op2name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_op2name_pre[hIndex].func; @@ -79017,7 +79044,7 @@ const char* HP_script_op2name(int op) { retVal___ = HPMHooks.source.script.op2name(op); } if (HPMHooks.count.HP_script_op2name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int op); + const char * (*postHookFunc) (const char * retVal___, int op); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_op2name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_op2name_post[hIndex].func; retVal___ = postHookFunc(retVal___, op); @@ -79312,11 +79339,11 @@ void HP_script_set_label(int l, int pos, const char *script_pos) { } return; } -const char* HP_script_skip_word(const char *p) { +const char * HP_script_skip_word(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_skip_word_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_skip_word_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_skip_word_pre[hIndex].func; @@ -79331,7 +79358,7 @@ const char* HP_script_skip_word(const char *p) { retVal___ = HPMHooks.source.script.skip_word(p); } if (HPMHooks.count.HP_script_skip_word_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_skip_word_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_skip_word_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79366,11 +79393,11 @@ int HP_script_add_word(const char *p) { } return retVal___; } -const char* HP_script_parse_callfunc(const char *p, int require_paren, int is_custom) { +const char * HP_script_parse_callfunc(const char *p, int require_paren, int is_custom) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_callfunc_pre > 0) { - const char* (*preHookFunc) (const char **p, int *require_paren, int *is_custom); + const char * (*preHookFunc) (const char **p, int *require_paren, int *is_custom); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_callfunc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_callfunc_pre[hIndex].func; @@ -79385,7 +79412,7 @@ const char* HP_script_parse_callfunc(const char *p, int require_paren, int is_cu retVal___ = HPMHooks.source.script.parse_callfunc(p, require_paren, is_custom); } if (HPMHooks.count.HP_script_parse_callfunc_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p, int require_paren, int is_custom); + const char * (*postHookFunc) (const char * retVal___, const char *p, int require_paren, int is_custom); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_callfunc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_callfunc_post[hIndex].func; retVal___ = postHookFunc(retVal___, p, require_paren, is_custom); @@ -79419,11 +79446,11 @@ void HP_script_parse_nextline(bool first, const char *p) { } return; } -const char* HP_script_parse_variable(const char *p) { +const char * HP_script_parse_variable(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_variable_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_variable_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_variable_pre[hIndex].func; @@ -79438,7 +79465,7 @@ const char* HP_script_parse_variable(const char *p) { retVal___ = HPMHooks.source.script.parse_variable(p); } if (HPMHooks.count.HP_script_parse_variable_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_variable_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_variable_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79446,11 +79473,11 @@ const char* HP_script_parse_variable(const char *p) { } return retVal___; } -const char* HP_script_parse_simpleexpr(const char *p) { +const char * HP_script_parse_simpleexpr(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_simpleexpr_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_pre[hIndex].func; @@ -79465,7 +79492,7 @@ const char* HP_script_parse_simpleexpr(const char *p) { retVal___ = HPMHooks.source.script.parse_simpleexpr(p); } if (HPMHooks.count.HP_script_parse_simpleexpr_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79473,11 +79500,11 @@ const char* HP_script_parse_simpleexpr(const char *p) { } return retVal___; } -const char* HP_script_parse_simpleexpr_paren(const char *p) { +const char * HP_script_parse_simpleexpr_paren(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_simpleexpr_paren_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_paren_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_paren_pre[hIndex].func; @@ -79492,7 +79519,7 @@ const char* HP_script_parse_simpleexpr_paren(const char *p) { retVal___ = HPMHooks.source.script.parse_simpleexpr_paren(p); } if (HPMHooks.count.HP_script_parse_simpleexpr_paren_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_paren_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_paren_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79500,11 +79527,11 @@ const char* HP_script_parse_simpleexpr_paren(const char *p) { } return retVal___; } -const char* HP_script_parse_simpleexpr_number(const char *p) { +const char * HP_script_parse_simpleexpr_number(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_simpleexpr_number_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_number_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_number_pre[hIndex].func; @@ -79519,7 +79546,7 @@ const char* HP_script_parse_simpleexpr_number(const char *p) { retVal___ = HPMHooks.source.script.parse_simpleexpr_number(p); } if (HPMHooks.count.HP_script_parse_simpleexpr_number_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_number_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_number_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79527,11 +79554,11 @@ const char* HP_script_parse_simpleexpr_number(const char *p) { } return retVal___; } -const char* HP_script_parse_simpleexpr_string(const char *p) { +const char * HP_script_parse_simpleexpr_string(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_simpleexpr_string_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_string_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_string_pre[hIndex].func; @@ -79546,7 +79573,7 @@ const char* HP_script_parse_simpleexpr_string(const char *p) { retVal___ = HPMHooks.source.script.parse_simpleexpr_string(p); } if (HPMHooks.count.HP_script_parse_simpleexpr_string_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_string_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_string_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79554,11 +79581,11 @@ const char* HP_script_parse_simpleexpr_string(const char *p) { } return retVal___; } -const char* HP_script_parse_simpleexpr_name(const char *p) { +const char * HP_script_parse_simpleexpr_name(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_simpleexpr_name_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_name_pre[hIndex].func; @@ -79573,7 +79600,7 @@ const char* HP_script_parse_simpleexpr_name(const char *p) { retVal___ = HPMHooks.source.script.parse_simpleexpr_name(p); } if (HPMHooks.count.HP_script_parse_simpleexpr_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_simpleexpr_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_simpleexpr_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79607,11 +79634,11 @@ void HP_script_add_translatable_string(const struct script_string_buf *string, c } return; } -const char* HP_script_parse_expr(const char *p) { +const char * HP_script_parse_expr(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_expr_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_expr_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_expr_pre[hIndex].func; @@ -79626,7 +79653,7 @@ const char* HP_script_parse_expr(const char *p) { retVal___ = HPMHooks.source.script.parse_expr(p); } if (HPMHooks.count.HP_script_parse_expr_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_expr_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_expr_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79634,11 +79661,11 @@ const char* HP_script_parse_expr(const char *p) { } return retVal___; } -const char* HP_script_parse_line(const char *p) { +const char * HP_script_parse_line(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_parse_line_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_line_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_parse_line_pre[hIndex].func; @@ -79653,7 +79680,7 @@ const char* HP_script_parse_line(const char *p) { retVal___ = HPMHooks.source.script.parse_line(p); } if (HPMHooks.count.HP_script_parse_line_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_parse_line_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_parse_line_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -79739,11 +79766,11 @@ void HP_script_load_parameters(void) { } return; } -const char* HP_script_print_line(StringBuf *buf, const char *p, const char *mark, int line) { +const char * HP_script_print_line(StringBuf *buf, const char *p, const char *mark, int line) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_print_line_pre > 0) { - const char* (*preHookFunc) (StringBuf **buf, const char **p, const char **mark, int *line); + const char * (*preHookFunc) (StringBuf **buf, const char **p, const char **mark, int *line); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_print_line_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_print_line_pre[hIndex].func; @@ -79758,7 +79785,7 @@ const char* HP_script_print_line(StringBuf *buf, const char *p, const char *mark retVal___ = HPMHooks.source.script.print_line(buf, p, mark, line); } if (HPMHooks.count.HP_script_print_line_post > 0) { - const char* (*postHookFunc) (const char* retVal___, StringBuf *buf, const char *p, const char *mark, int line); + const char * (*postHookFunc) (const char * retVal___, StringBuf *buf, const char *p, const char *mark, int line); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_print_line_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_print_line_post[hIndex].func; retVal___ = postHookFunc(retVal___, buf, p, mark, line); @@ -80132,11 +80159,11 @@ void HP_script_stack_expand(struct script_stack *stack) { } return; } -struct script_data* HP_script_push_retinfo(struct script_stack *stack, struct script_retinfo *ri, struct reg_db *ref) { +struct script_data * HP_script_push_retinfo(struct script_stack *stack, struct script_retinfo *ri, struct reg_db *ref) { int hIndex = 0; - struct script_data* retVal___ = NULL; + struct script_data * retVal___ = NULL; if (HPMHooks.count.HP_script_push_retinfo_pre > 0) { - struct script_data* (*preHookFunc) (struct script_stack **stack, struct script_retinfo **ri, struct reg_db **ref); + struct script_data * (*preHookFunc) (struct script_stack **stack, struct script_retinfo **ri, struct reg_db **ref); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_retinfo_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_push_retinfo_pre[hIndex].func; @@ -80151,7 +80178,7 @@ struct script_data* HP_script_push_retinfo(struct script_stack *stack, struct sc retVal___ = HPMHooks.source.script.push_retinfo(stack, ri, ref); } if (HPMHooks.count.HP_script_push_retinfo_post > 0) { - struct script_data* (*postHookFunc) (struct script_data* retVal___, struct script_stack *stack, struct script_retinfo *ri, struct reg_db *ref); + struct script_data * (*postHookFunc) (struct script_data * retVal___, struct script_stack *stack, struct script_retinfo *ri, struct reg_db *ref); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_push_retinfo_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_push_retinfo_post[hIndex].func; retVal___ = postHookFunc(retVal___, stack, ri, ref); @@ -81369,11 +81396,11 @@ bool HP_script_sprintf_helper(struct script_state *st, int start, struct StringB } return retVal___; } -const char* HP_script_getfuncname(struct script_state *st) { +const char * HP_script_getfuncname(struct script_state *st) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_getfuncname_pre > 0) { - const char* (*preHookFunc) (struct script_state **st); + const char * (*preHookFunc) (struct script_state **st); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_getfuncname_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_getfuncname_pre[hIndex].func; @@ -81388,7 +81415,7 @@ const char* HP_script_getfuncname(struct script_state *st) { retVal___ = HPMHooks.source.script.getfuncname(st); } if (HPMHooks.count.HP_script_getfuncname_post > 0) { - const char* (*postHookFunc) (const char* retVal___, struct script_state *st); + const char * (*postHookFunc) (const char * retVal___, struct script_state *st); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_getfuncname_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_getfuncname_post[hIndex].func; retVal___ = postHookFunc(retVal___, st); @@ -81423,11 +81450,11 @@ unsigned int HP_script_calc_hash_ci(const char *p) { } return retVal___; } -struct reg_db* HP_script_array_src(struct script_state *st, struct map_session_data *sd, const char *name, struct reg_db *ref) { +struct reg_db * HP_script_array_src(struct script_state *st, struct map_session_data *sd, const char *name, struct reg_db *ref) { int hIndex = 0; - struct reg_db* retVal___ = NULL; + struct reg_db * retVal___ = NULL; if (HPMHooks.count.HP_script_array_src_pre > 0) { - struct reg_db* (*preHookFunc) (struct script_state **st, struct map_session_data **sd, const char **name, struct reg_db **ref); + struct reg_db * (*preHookFunc) (struct script_state **st, struct map_session_data **sd, const char **name, struct reg_db **ref); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_array_src_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_array_src_pre[hIndex].func; @@ -81442,7 +81469,7 @@ struct reg_db* HP_script_array_src(struct script_state *st, struct map_session_d retVal___ = HPMHooks.source.script.array_src(st, sd, name, ref); } if (HPMHooks.count.HP_script_array_src_post > 0) { - struct reg_db* (*postHookFunc) (struct reg_db* retVal___, struct script_state *st, struct map_session_data *sd, const char *name, struct reg_db *ref); + struct reg_db * (*postHookFunc) (struct reg_db * retVal___, struct script_state *st, struct map_session_data *sd, const char *name, struct reg_db *ref); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_array_src_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_array_src_post[hIndex].func; retVal___ = postHookFunc(retVal___, st, sd, name, ref); @@ -81779,11 +81806,11 @@ void HP_script_generic_ui_array_expand(unsigned int plus) { } return; } -unsigned int* HP_script_array_cpy_list(struct script_array *sa) { +unsigned int * HP_script_array_cpy_list(struct script_array *sa) { int hIndex = 0; - unsigned int* retVal___ = NULL; + unsigned int * retVal___ = NULL; if (HPMHooks.count.HP_script_array_cpy_list_pre > 0) { - unsigned int* (*preHookFunc) (struct script_array **sa); + unsigned int * (*preHookFunc) (struct script_array **sa); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_array_cpy_list_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_array_cpy_list_pre[hIndex].func; @@ -81798,7 +81825,7 @@ unsigned int* HP_script_array_cpy_list(struct script_array *sa) { retVal___ = HPMHooks.source.script.array_cpy_list(sa); } if (HPMHooks.count.HP_script_array_cpy_list_post > 0) { - unsigned int* (*postHookFunc) (unsigned int* retVal___, struct script_array *sa); + unsigned int * (*postHookFunc) (unsigned int * retVal___, struct script_array *sa); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_array_cpy_list_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_array_cpy_list_post[hIndex].func; retVal___ = postHookFunc(retVal___, sa); @@ -82106,11 +82133,11 @@ uint8 HP_script_add_language(const char *name) { } return retVal___; } -const char* HP_script_get_translation_dir_name(const char *directory) { +const char * HP_script_get_translation_dir_name(const char *directory) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_script_get_translation_dir_name_pre > 0) { - const char* (*preHookFunc) (const char **directory); + const char * (*preHookFunc) (const char **directory); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_translation_dir_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_script_get_translation_dir_name_pre[hIndex].func; @@ -82125,7 +82152,7 @@ const char* HP_script_get_translation_dir_name(const char *directory) { retVal___ = HPMHooks.source.script.get_translation_dir_name(directory); } if (HPMHooks.count.HP_script_get_translation_dir_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *directory); + const char * (*postHookFunc) (const char * retVal___, const char *directory); for (hIndex = 0; hIndex < HPMHooks.count.HP_script_get_translation_dir_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_script_get_translation_dir_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, directory); @@ -82771,11 +82798,11 @@ int HP_showmsg_showMessageV(const char *string, va_list ap) { } return retVal___; } -const char* HP_showmsg_getLogFileName(void) { +const char * HP_showmsg_getLogFileName(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_showmsg_getLogFileName_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_pre[hIndex].func; @@ -82790,7 +82817,7 @@ const char* HP_showmsg_getLogFileName(void) { retVal___ = HPMHooks.source.showmsg.getLogFileName(); } if (HPMHooks.count.HP_showmsg_getLogFileName_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_showmsg_getLogFileName_post; hIndex++) { postHookFunc = HPMHooks.list.HP_showmsg_getLogFileName_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -84309,11 +84336,11 @@ int HP_skill_tree_get_max(int skill_id, int class) { } return retVal___; } -const char* HP_skill_get_name(int skill_id) { +const char * HP_skill_get_name(int skill_id) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_skill_get_name_pre > 0) { - const char* (*preHookFunc) (int *skill_id); + const char * (*preHookFunc) (int *skill_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_get_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_get_name_pre[hIndex].func; @@ -84328,7 +84355,7 @@ const char* HP_skill_get_name(int skill_id) { retVal___ = HPMHooks.source.skill.get_name(skill_id); } if (HPMHooks.count.HP_skill_get_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int skill_id); + const char * (*postHookFunc) (const char * retVal___, int skill_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_get_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_get_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, skill_id); @@ -84336,11 +84363,11 @@ const char* HP_skill_get_name(int skill_id) { } return retVal___; } -const char* HP_skill_get_desc(int skill_id) { +const char * HP_skill_get_desc(int skill_id) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_skill_get_desc_pre > 0) { - const char* (*preHookFunc) (int *skill_id); + const char * (*preHookFunc) (int *skill_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_get_desc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_get_desc_pre[hIndex].func; @@ -84355,7 +84382,7 @@ const char* HP_skill_get_desc(int skill_id) { retVal___ = HPMHooks.source.skill.get_desc(skill_id); } if (HPMHooks.count.HP_skill_get_desc_post > 0) { - const char* (*postHookFunc) (const char* retVal___, int skill_id); + const char * (*postHookFunc) (const char * retVal___, int skill_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_get_desc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_get_desc_post[hIndex].func; retVal___ = postHookFunc(retVal___, skill_id); @@ -84795,11 +84822,11 @@ int HP_skill_strip_equip(struct block_list *bl, unsigned short where, int rate, } return retVal___; } -struct skill_unit_group* HP_skill_id2group(int group_id) { +struct skill_unit_group * HP_skill_id2group(int group_id) { int hIndex = 0; - struct skill_unit_group* retVal___ = NULL; + struct skill_unit_group * retVal___ = NULL; if (HPMHooks.count.HP_skill_id2group_pre > 0) { - struct skill_unit_group* (*preHookFunc) (int *group_id); + struct skill_unit_group * (*preHookFunc) (int *group_id); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_id2group_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_id2group_pre[hIndex].func; @@ -84814,7 +84841,7 @@ struct skill_unit_group* HP_skill_id2group(int group_id) { retVal___ = HPMHooks.source.skill.id2group(group_id); } if (HPMHooks.count.HP_skill_id2group_post > 0) { - struct skill_unit_group* (*postHookFunc) (struct skill_unit_group* retVal___, int group_id); + struct skill_unit_group * (*postHookFunc) (struct skill_unit_group * retVal___, int group_id); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_id2group_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_id2group_post[hIndex].func; retVal___ = postHookFunc(retVal___, group_id); @@ -84822,11 +84849,11 @@ struct skill_unit_group* HP_skill_id2group(int group_id) { } return retVal___; } -struct skill_unit_group* HP_skill_unitsetting(struct block_list *src, uint16 skill_id, uint16 skill_lv, short x, short y, int flag) { +struct skill_unit_group * HP_skill_unitsetting(struct block_list *src, uint16 skill_id, uint16 skill_lv, short x, short y, int flag) { int hIndex = 0; - struct skill_unit_group* retVal___ = NULL; + struct skill_unit_group * retVal___ = NULL; if (HPMHooks.count.HP_skill_unitsetting_pre > 0) { - struct skill_unit_group* (*preHookFunc) (struct block_list **src, uint16 *skill_id, uint16 *skill_lv, short *x, short *y, int *flag); + struct skill_unit_group * (*preHookFunc) (struct block_list **src, uint16 *skill_id, uint16 *skill_lv, short *x, short *y, int *flag); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_unitsetting_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_unitsetting_pre[hIndex].func; @@ -84841,7 +84868,7 @@ struct skill_unit_group* HP_skill_unitsetting(struct block_list *src, uint16 ski retVal___ = HPMHooks.source.skill.unitsetting(src, skill_id, skill_lv, x, y, flag); } if (HPMHooks.count.HP_skill_unitsetting_post > 0) { - struct skill_unit_group* (*postHookFunc) (struct skill_unit_group* retVal___, struct block_list *src, uint16 skill_id, uint16 skill_lv, short x, short y, int flag); + struct skill_unit_group * (*postHookFunc) (struct skill_unit_group * retVal___, struct block_list *src, uint16 skill_id, uint16 skill_lv, short x, short y, int flag); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_unitsetting_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_unitsetting_post[hIndex].func; retVal___ = postHookFunc(retVal___, src, skill_id, skill_lv, x, y, flag); @@ -84849,11 +84876,11 @@ struct skill_unit_group* HP_skill_unitsetting(struct block_list *src, uint16 ski } return retVal___; } -struct skill_unit* HP_skill_initunit(struct skill_unit_group *group, int idx, int x, int y, int val1, int val2) { +struct skill_unit * HP_skill_initunit(struct skill_unit_group *group, int idx, int x, int y, int val1, int val2) { int hIndex = 0; - struct skill_unit* retVal___ = NULL; + struct skill_unit * retVal___ = NULL; if (HPMHooks.count.HP_skill_initunit_pre > 0) { - struct skill_unit* (*preHookFunc) (struct skill_unit_group **group, int *idx, int *x, int *y, int *val1, int *val2); + struct skill_unit * (*preHookFunc) (struct skill_unit_group **group, int *idx, int *x, int *y, int *val1, int *val2); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_initunit_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_initunit_pre[hIndex].func; @@ -84868,7 +84895,7 @@ struct skill_unit* HP_skill_initunit(struct skill_unit_group *group, int idx, in retVal___ = HPMHooks.source.skill.initunit(group, idx, x, y, val1, val2); } if (HPMHooks.count.HP_skill_initunit_post > 0) { - struct skill_unit* (*postHookFunc) (struct skill_unit* retVal___, struct skill_unit_group *group, int idx, int x, int y, int val1, int val2); + struct skill_unit * (*postHookFunc) (struct skill_unit * retVal___, struct skill_unit_group *group, int idx, int x, int y, int val1, int val2); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_initunit_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_initunit_post[hIndex].func; retVal___ = postHookFunc(retVal___, group, idx, x, y, val1, val2); @@ -84903,11 +84930,11 @@ int HP_skill_delunit(struct skill_unit *su) { } return retVal___; } -struct skill_unit_group* HP_skill_init_unitgroup(struct block_list *src, int count, uint16 skill_id, uint16 skill_lv, int unit_id, int limit, int interval) { +struct skill_unit_group * HP_skill_init_unitgroup(struct block_list *src, int count, uint16 skill_id, uint16 skill_lv, int unit_id, int limit, int interval) { int hIndex = 0; - struct skill_unit_group* retVal___ = NULL; + struct skill_unit_group * retVal___ = NULL; if (HPMHooks.count.HP_skill_init_unitgroup_pre > 0) { - struct skill_unit_group* (*preHookFunc) (struct block_list **src, int *count, uint16 *skill_id, uint16 *skill_lv, int *unit_id, int *limit, int *interval); + struct skill_unit_group * (*preHookFunc) (struct block_list **src, int *count, uint16 *skill_id, uint16 *skill_lv, int *unit_id, int *limit, int *interval); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_init_unitgroup_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_init_unitgroup_pre[hIndex].func; @@ -84922,7 +84949,7 @@ struct skill_unit_group* HP_skill_init_unitgroup(struct block_list *src, int cou retVal___ = HPMHooks.source.skill.init_unitgroup(src, count, skill_id, skill_lv, unit_id, limit, interval); } if (HPMHooks.count.HP_skill_init_unitgroup_post > 0) { - struct skill_unit_group* (*postHookFunc) (struct skill_unit_group* retVal___, struct block_list *src, int count, uint16 skill_id, uint16 skill_lv, int unit_id, int limit, int interval); + struct skill_unit_group * (*postHookFunc) (struct skill_unit_group * retVal___, struct block_list *src, int count, uint16 skill_id, uint16 skill_lv, int unit_id, int limit, int interval); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_init_unitgroup_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_init_unitgroup_post[hIndex].func; retVal___ = postHookFunc(retVal___, src, count, skill_id, skill_lv, unit_id, limit, interval); @@ -86837,11 +86864,11 @@ int HP_skill_check_condition_mercenary(struct block_list *bl, int skill_id, int } return retVal___; } -struct skill_unit_group* HP_skill_locate_element_field(struct block_list *bl) { +struct skill_unit_group * HP_skill_locate_element_field(struct block_list *bl) { int hIndex = 0; - struct skill_unit_group* retVal___ = NULL; + struct skill_unit_group * retVal___ = NULL; if (HPMHooks.count.HP_skill_locate_element_field_pre > 0) { - struct skill_unit_group* (*preHookFunc) (struct block_list **bl); + struct skill_unit_group * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_locate_element_field_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_locate_element_field_pre[hIndex].func; @@ -86856,7 +86883,7 @@ struct skill_unit_group* HP_skill_locate_element_field(struct block_list *bl) { retVal___ = HPMHooks.source.skill.locate_element_field(bl); } if (HPMHooks.count.HP_skill_locate_element_field_post > 0) { - struct skill_unit_group* (*postHookFunc) (struct skill_unit_group* retVal___, struct block_list *bl); + struct skill_unit_group * (*postHookFunc) (struct skill_unit_group * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_locate_element_field_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_locate_element_field_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -86990,11 +87017,11 @@ int HP_skill_dance_overlap(struct skill_unit *su, int flag) { } return retVal___; } -struct s_skill_unit_layout* HP_skill_get_unit_layout(uint16 skill_id, uint16 skill_lv, struct block_list *src, int x, int y) { +struct s_skill_unit_layout * HP_skill_get_unit_layout(uint16 skill_id, uint16 skill_lv, struct block_list *src, int x, int y) { int hIndex = 0; - struct s_skill_unit_layout* retVal___ = NULL; + struct s_skill_unit_layout * retVal___ = NULL; if (HPMHooks.count.HP_skill_get_unit_layout_pre > 0) { - struct s_skill_unit_layout* (*preHookFunc) (uint16 *skill_id, uint16 *skill_lv, struct block_list **src, int *x, int *y); + struct s_skill_unit_layout * (*preHookFunc) (uint16 *skill_id, uint16 *skill_lv, struct block_list **src, int *x, int *y); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_get_unit_layout_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_get_unit_layout_pre[hIndex].func; @@ -87009,7 +87036,7 @@ struct s_skill_unit_layout* HP_skill_get_unit_layout(uint16 skill_id, uint16 ski retVal___ = HPMHooks.source.skill.get_unit_layout(skill_id, skill_lv, src, x, y); } if (HPMHooks.count.HP_skill_get_unit_layout_post > 0) { - struct s_skill_unit_layout* (*postHookFunc) (struct s_skill_unit_layout* retVal___, uint16 skill_id, uint16 skill_lv, struct block_list *src, int x, int y); + struct s_skill_unit_layout * (*postHookFunc) (struct s_skill_unit_layout * retVal___, uint16 skill_id, uint16 skill_lv, struct block_list *src, int x, int y); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_get_unit_layout_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_get_unit_layout_post[hIndex].func; retVal___ = postHookFunc(retVal___, skill_id, skill_lv, src, x, y); @@ -87116,11 +87143,11 @@ int HP_skill_destroy_trap(struct block_list *bl, va_list ap) { } return retVal___; } -struct skill_unit_group_tickset* HP_skill_unitgrouptickset_search(struct block_list *bl, struct skill_unit_group *group, int64 tick) { +struct skill_unit_group_tickset * HP_skill_unitgrouptickset_search(struct block_list *bl, struct skill_unit_group *group, int64 tick) { int hIndex = 0; - struct skill_unit_group_tickset* retVal___ = NULL; + struct skill_unit_group_tickset * retVal___ = NULL; if (HPMHooks.count.HP_skill_unitgrouptickset_search_pre > 0) { - struct skill_unit_group_tickset* (*preHookFunc) (struct block_list **bl, struct skill_unit_group **group, int64 *tick); + struct skill_unit_group_tickset * (*preHookFunc) (struct block_list **bl, struct skill_unit_group **group, int64 *tick); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_unitgrouptickset_search_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_skill_unitgrouptickset_search_pre[hIndex].func; @@ -87135,7 +87162,7 @@ struct skill_unit_group_tickset* HP_skill_unitgrouptickset_search(struct block_l retVal___ = HPMHooks.source.skill.unitgrouptickset_search(bl, group, tick); } if (HPMHooks.count.HP_skill_unitgrouptickset_search_post > 0) { - struct skill_unit_group_tickset* (*postHookFunc) (struct skill_unit_group_tickset* retVal___, struct block_list *bl, struct skill_unit_group *group, int64 tick); + struct skill_unit_group_tickset * (*postHookFunc) (struct skill_unit_group_tickset * retVal___, struct block_list *bl, struct skill_unit_group *group, int64 tick); for (hIndex = 0; hIndex < HPMHooks.count.HP_skill_unitgrouptickset_search_post; hIndex++) { postHookFunc = HPMHooks.list.HP_skill_unitgrouptickset_search_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl, group, tick); @@ -91924,11 +91951,11 @@ uint32 HP_sockt_host2ip(const char *hostname) { } return retVal___; } -const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { +const char * HP_sockt_ip2str(uint32 ip, char *ip_str) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sockt_ip2str_pre > 0) { - const char* (*preHookFunc) (uint32 *ip, char **ip_str); + const char * (*preHookFunc) (uint32 *ip, char **ip_str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sockt_ip2str_pre[hIndex].func; @@ -91943,7 +91970,7 @@ const char* HP_sockt_ip2str(uint32 ip, char *ip_str) { retVal___ = HPMHooks.source.sockt.ip2str(ip, ip_str); } if (HPMHooks.count.HP_sockt_ip2str_post > 0) { - const char* (*postHookFunc) (const char* retVal___, uint32 ip, char *ip_str); + const char * (*postHookFunc) (const char * retVal___, uint32 ip, char *ip_str); for (hIndex = 0; hIndex < HPMHooks.count.HP_sockt_ip2str_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sockt_ip2str_post[hIndex].func; retVal___ = postHookFunc(retVal___, ip, ip_str); @@ -92682,11 +92709,11 @@ void HP_SQL_Free(struct Sql *self) { } return; } -struct Sql* HP_SQL_Malloc(void) { +struct Sql * HP_SQL_Malloc(void) { int hIndex = 0; - struct Sql* retVal___ = NULL; + struct Sql * retVal___ = NULL; if (HPMHooks.count.HP_SQL_Malloc_pre > 0) { - struct Sql* (*preHookFunc) (void); + struct Sql * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_Malloc_pre[hIndex].func; @@ -92701,7 +92728,7 @@ struct Sql* HP_SQL_Malloc(void) { retVal___ = HPMHooks.source.SQL.Malloc(); } if (HPMHooks.count.HP_SQL_Malloc_post > 0) { - struct Sql* (*postHookFunc) (struct Sql* retVal___); + struct Sql * (*postHookFunc) (struct Sql * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -92709,11 +92736,11 @@ struct Sql* HP_SQL_Malloc(void) { } return retVal___; } -struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { +struct SqlStmt * HP_SQL_StmtMalloc(struct Sql *sql) { int hIndex = 0; - struct SqlStmt* retVal___ = NULL; + struct SqlStmt * retVal___ = NULL; if (HPMHooks.count.HP_SQL_StmtMalloc_pre > 0) { - struct SqlStmt* (*preHookFunc) (struct Sql **sql); + struct SqlStmt * (*preHookFunc) (struct Sql **sql); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_pre[hIndex].func; @@ -92728,7 +92755,7 @@ struct SqlStmt* HP_SQL_StmtMalloc(struct Sql *sql) { retVal___ = HPMHooks.source.SQL.StmtMalloc(sql); } if (HPMHooks.count.HP_SQL_StmtMalloc_post > 0) { - struct SqlStmt* (*postHookFunc) (struct SqlStmt* retVal___, struct Sql *sql); + struct SqlStmt * (*postHookFunc) (struct SqlStmt * retVal___, struct Sql *sql); for (hIndex = 0; hIndex < HPMHooks.count.HP_SQL_StmtMalloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_SQL_StmtMalloc_post[hIndex].func; retVal___ = postHookFunc(retVal___, sql); @@ -93495,11 +93522,11 @@ int HP_status_fixed_revive(struct block_list *bl, unsigned int per_hp, unsigned } return retVal___; } -struct regen_data* HP_status_get_regen_data(struct block_list *bl) { +struct regen_data * HP_status_get_regen_data(struct block_list *bl) { int hIndex = 0; - struct regen_data* retVal___ = NULL; + struct regen_data * retVal___ = NULL; if (HPMHooks.count.HP_status_get_regen_data_pre > 0) { - struct regen_data* (*preHookFunc) (struct block_list **bl); + struct regen_data * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_regen_data_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_regen_data_pre[hIndex].func; @@ -93514,7 +93541,7 @@ struct regen_data* HP_status_get_regen_data(struct block_list *bl) { retVal___ = HPMHooks.source.status.get_regen_data(bl); } if (HPMHooks.count.HP_status_get_regen_data_post > 0) { - struct regen_data* (*postHookFunc) (struct regen_data* retVal___, struct block_list *bl); + struct regen_data * (*postHookFunc) (struct regen_data * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_regen_data_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_regen_data_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -93522,11 +93549,11 @@ struct regen_data* HP_status_get_regen_data(struct block_list *bl) { } return retVal___; } -struct status_data* HP_status_get_status_data(struct block_list *bl) { +struct status_data * HP_status_get_status_data(struct block_list *bl) { int hIndex = 0; - struct status_data* retVal___ = NULL; + struct status_data * retVal___ = NULL; if (HPMHooks.count.HP_status_get_status_data_pre > 0) { - struct status_data* (*preHookFunc) (struct block_list **bl); + struct status_data * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_status_data_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_status_data_pre[hIndex].func; @@ -93541,7 +93568,7 @@ struct status_data* HP_status_get_status_data(struct block_list *bl) { retVal___ = HPMHooks.source.status.get_status_data(bl); } if (HPMHooks.count.HP_status_get_status_data_post > 0) { - struct status_data* (*postHookFunc) (struct status_data* retVal___, struct block_list *bl); + struct status_data * (*postHookFunc) (struct status_data * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_status_data_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_status_data_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -93549,11 +93576,11 @@ struct status_data* HP_status_get_status_data(struct block_list *bl) { } return retVal___; } -struct status_data* HP_status_get_base_status(struct block_list *bl) { +struct status_data * HP_status_get_base_status(struct block_list *bl) { int hIndex = 0; - struct status_data* retVal___ = NULL; + struct status_data * retVal___ = NULL; if (HPMHooks.count.HP_status_get_base_status_pre > 0) { - struct status_data* (*preHookFunc) (struct block_list **bl); + struct status_data * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_base_status_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_base_status_pre[hIndex].func; @@ -93568,7 +93595,7 @@ struct status_data* HP_status_get_base_status(struct block_list *bl) { retVal___ = HPMHooks.source.status.get_base_status(bl); } if (HPMHooks.count.HP_status_get_base_status_post > 0) { - struct status_data* (*postHookFunc) (struct status_data* retVal___, struct block_list *bl); + struct status_data * (*postHookFunc) (struct status_data * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_base_status_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_base_status_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -93576,11 +93603,11 @@ struct status_data* HP_status_get_base_status(struct block_list *bl) { } return retVal___; } -const char* HP_status_get_name(const struct block_list *bl) { +const char * HP_status_get_name(const struct block_list *bl) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_status_get_name_pre > 0) { - const char* (*preHookFunc) (const struct block_list **bl); + const char * (*preHookFunc) (const struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_name_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_name_pre[hIndex].func; @@ -93595,7 +93622,7 @@ const char* HP_status_get_name(const struct block_list *bl) { retVal___ = HPMHooks.source.status.get_name(bl); } if (HPMHooks.count.HP_status_get_name_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const struct block_list *bl); + const char * (*postHookFunc) (const char * retVal___, const struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_name_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_name_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -93900,11 +93927,11 @@ int HP_status_get_race2(const struct block_list *bl) { } return retVal___; } -struct view_data* HP_status_get_viewdata(struct block_list *bl) { +struct view_data * HP_status_get_viewdata(struct block_list *bl) { int hIndex = 0; - struct view_data* retVal___ = NULL; + struct view_data * retVal___ = NULL; if (HPMHooks.count.HP_status_get_viewdata_pre > 0) { - struct view_data* (*preHookFunc) (struct block_list **bl); + struct view_data * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_viewdata_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_viewdata_pre[hIndex].func; @@ -93919,7 +93946,7 @@ struct view_data* HP_status_get_viewdata(struct block_list *bl) { retVal___ = HPMHooks.source.status.get_viewdata(bl); } if (HPMHooks.count.HP_status_get_viewdata_post > 0) { - struct view_data* (*postHookFunc) (struct view_data* retVal___, struct block_list *bl); + struct view_data * (*postHookFunc) (struct view_data * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_viewdata_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_viewdata_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -93979,11 +94006,11 @@ void HP_status_change_init(struct block_list *bl) { } return; } -struct status_change* HP_status_get_sc(struct block_list *bl) { +struct status_change * HP_status_get_sc(struct block_list *bl) { int hIndex = 0; - struct status_change* retVal___ = NULL; + struct status_change * retVal___ = NULL; if (HPMHooks.count.HP_status_get_sc_pre > 0) { - struct status_change* (*preHookFunc) (struct block_list **bl); + struct status_change * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_sc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_sc_pre[hIndex].func; @@ -93998,7 +94025,7 @@ struct status_change* HP_status_get_sc(struct block_list *bl) { retVal___ = HPMHooks.source.status.get_sc(bl); } if (HPMHooks.count.HP_status_get_sc_post > 0) { - struct status_change* (*postHookFunc) (struct status_change* retVal___, struct block_list *bl); + struct status_change * (*postHookFunc) (struct status_change * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_sc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_sc_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -95587,11 +95614,11 @@ unsigned int HP_status_get_base_maxhp(const struct map_session_data *sd, const s } return retVal___; } -struct s_maxhp_entry* HP_status_get_maxhp_cap_entry(int classidx, int level) { +struct s_maxhp_entry * HP_status_get_maxhp_cap_entry(int classidx, int level) { int hIndex = 0; - struct s_maxhp_entry* retVal___ = NULL; + struct s_maxhp_entry * retVal___ = NULL; if (HPMHooks.count.HP_status_get_maxhp_cap_entry_pre > 0) { - struct s_maxhp_entry* (*preHookFunc) (int *classidx, int *level); + struct s_maxhp_entry * (*preHookFunc) (int *classidx, int *level); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_maxhp_cap_entry_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_status_get_maxhp_cap_entry_pre[hIndex].func; @@ -95606,7 +95633,7 @@ struct s_maxhp_entry* HP_status_get_maxhp_cap_entry(int classidx, int level) { retVal___ = HPMHooks.source.status.get_maxhp_cap_entry(classidx, level); } if (HPMHooks.count.HP_status_get_maxhp_cap_entry_post > 0) { - struct s_maxhp_entry* (*postHookFunc) (struct s_maxhp_entry* retVal___, int classidx, int level); + struct s_maxhp_entry * (*postHookFunc) (struct s_maxhp_entry * retVal___, int classidx, int level); for (hIndex = 0; hIndex < HPMHooks.count.HP_status_get_maxhp_cap_entry_post; hIndex++) { postHookFunc = HPMHooks.list.HP_status_get_maxhp_cap_entry_post[hIndex].func; retVal___ = postHookFunc(retVal___, classidx, level); @@ -97557,11 +97584,11 @@ int HP_storage_reconnect_sub(union DBKey key, struct DBData *data, va_list ap) { return retVal___; } /* stringbuf_interface */ -StringBuf* HP_StrBuf_Malloc(void) { +StringBuf * HP_StrBuf_Malloc(void) { int hIndex = 0; - StringBuf* retVal___ = NULL; + StringBuf * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Malloc_pre > 0) { - StringBuf* (*preHookFunc) (void); + StringBuf * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Malloc_pre[hIndex].func; @@ -97576,7 +97603,7 @@ StringBuf* HP_StrBuf_Malloc(void) { retVal___ = HPMHooks.source.StrBuf.Malloc(); } if (HPMHooks.count.HP_StrBuf_Malloc_post > 0) { - StringBuf* (*postHookFunc) (StringBuf* retVal___); + StringBuf * (*postHookFunc) (StringBuf * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Malloc_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Malloc_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -97724,11 +97751,11 @@ int HP_StrBuf_Length(StringBuf *self) { } return retVal___; } -char* HP_StrBuf_Value(StringBuf *self) { +char * HP_StrBuf_Value(StringBuf *self) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_StrBuf_Value_pre > 0) { - char* (*preHookFunc) (StringBuf **self); + char * (*preHookFunc) (StringBuf **self); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_StrBuf_Value_pre[hIndex].func; @@ -97743,7 +97770,7 @@ char* HP_StrBuf_Value(StringBuf *self) { retVal___ = HPMHooks.source.StrBuf.Value(self); } if (HPMHooks.count.HP_StrBuf_Value_post > 0) { - char* (*postHookFunc) (char* retVal___, StringBuf *self); + char * (*postHookFunc) (char * retVal___, StringBuf *self); for (hIndex = 0; hIndex < HPMHooks.count.HP_StrBuf_Value_post; hIndex++) { postHookFunc = HPMHooks.list.HP_StrBuf_Value_post[hIndex].func; retVal___ = postHookFunc(retVal___, self); @@ -97830,11 +97857,11 @@ void HP_StrBuf_Free(StringBuf *self) { return; } /* strlib_interface */ -char* HP_strlib_jstrescape(char *pt) { +char * HP_strlib_jstrescape(char *pt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescape_pre > 0) { - char* (*preHookFunc) (char **pt); + char * (*preHookFunc) (char **pt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescape_pre[hIndex].func; @@ -97849,7 +97876,7 @@ char* HP_strlib_jstrescape(char *pt) { retVal___ = HPMHooks.source.strlib.jstrescape(pt); } if (HPMHooks.count.HP_strlib_jstrescape_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt); + char * (*postHookFunc) (char * retVal___, char *pt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescape_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescape_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt); @@ -97857,11 +97884,11 @@ char* HP_strlib_jstrescape(char *pt) { } return retVal___; } -char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { +char * HP_strlib_jstrescapecpy(char *pt, const char *spt) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_jstrescapecpy_pre > 0) { - char* (*preHookFunc) (char **pt, const char **spt); + char * (*preHookFunc) (char **pt, const char **spt); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_pre[hIndex].func; @@ -97876,7 +97903,7 @@ char* HP_strlib_jstrescapecpy(char *pt, const char *spt) { retVal___ = HPMHooks.source.strlib.jstrescapecpy(pt, spt); } if (HPMHooks.count.HP_strlib_jstrescapecpy_post > 0) { - char* (*postHookFunc) (char* retVal___, char *pt, const char *spt); + char * (*postHookFunc) (char * retVal___, char *pt, const char *spt); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_jstrescapecpy_post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_jstrescapecpy_post[hIndex].func; retVal___ = postHookFunc(retVal___, pt, spt); @@ -97938,11 +97965,11 @@ int HP_strlib_remove_control_chars_(char *str) { } return retVal___; } -char* HP_strlib_trim_(char *str) { +char * HP_strlib_trim_(char *str) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_trim__pre > 0) { - char* (*preHookFunc) (char **str); + char * (*preHookFunc) (char **str); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_trim__pre[hIndex].func; @@ -97957,7 +97984,7 @@ char* HP_strlib_trim_(char *str) { retVal___ = HPMHooks.source.strlib.trim_(str); } if (HPMHooks.count.HP_strlib_trim__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str); + char * (*postHookFunc) (char * retVal___, char *str); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_trim__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_trim__post[hIndex].func; retVal___ = postHookFunc(retVal___, str); @@ -97965,11 +97992,11 @@ char* HP_strlib_trim_(char *str) { } return retVal___; } -char* HP_strlib_normalize_name_(char *str, const char *delims) { +char * HP_strlib_normalize_name_(char *str, const char *delims) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_normalize_name__pre > 0) { - char* (*preHookFunc) (char **str, const char **delims); + char * (*preHookFunc) (char **str, const char **delims); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_normalize_name__pre[hIndex].func; @@ -97984,7 +98011,7 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { retVal___ = HPMHooks.source.strlib.normalize_name_(str, delims); } if (HPMHooks.count.HP_strlib_normalize_name__post > 0) { - char* (*postHookFunc) (char* retVal___, char *str, const char *delims); + char * (*postHookFunc) (char * retVal___, char *str, const char *delims); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_normalize_name__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_normalize_name__post[hIndex].func; retVal___ = postHookFunc(retVal___, str, delims); @@ -97992,11 +98019,11 @@ char* HP_strlib_normalize_name_(char *str, const char *delims) { } return retVal___; } -const char* HP_strlib_stristr_(const char *haystack, const char *needle) { +const char * HP_strlib_stristr_(const char *haystack, const char *needle) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_stristr__pre > 0) { - const char* (*preHookFunc) (const char **haystack, const char **needle); + const char * (*preHookFunc) (const char **haystack, const char **needle); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_stristr__pre[hIndex].func; @@ -98011,7 +98038,7 @@ const char* HP_strlib_stristr_(const char *haystack, const char *needle) { retVal___ = HPMHooks.source.strlib.stristr_(haystack, needle); } if (HPMHooks.count.HP_strlib_stristr__post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *haystack, const char *needle); + const char * (*postHookFunc) (const char * retVal___, const char *haystack, const char *needle); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_stristr__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_stristr__post[hIndex].func; retVal___ = postHookFunc(retVal___, haystack, needle); @@ -98046,11 +98073,11 @@ size_t HP_strlib_strnlen_(const char *string, size_t maxlen) { } return retVal___; } -char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { +char * HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_strtok_r__pre > 0) { - char* (*preHookFunc) (char **s1, const char **s2, char ***lasts); + char * (*preHookFunc) (char **s1, const char **s2, char ***lasts); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_strtok_r__pre[hIndex].func; @@ -98065,7 +98092,7 @@ char* HP_strlib_strtok_r_(char *s1, const char *s2, char **lasts) { retVal___ = HPMHooks.source.strlib.strtok_r_(s1, s2, lasts); } if (HPMHooks.count.HP_strlib_strtok_r__post > 0) { - char* (*postHookFunc) (char* retVal___, char *s1, const char *s2, char **lasts); + char * (*postHookFunc) (char * retVal___, char *s1, const char *s2, char **lasts); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_strtok_r__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_strtok_r__post[hIndex].func; retVal___ = postHookFunc(retVal___, s1, s2, lasts); @@ -98127,11 +98154,11 @@ int HP_strlib_config_switch_(const char *str) { } return retVal___; } -char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { +char * HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { int hIndex = 0; - char* retVal___ = NULL; + char * retVal___ = NULL; if (HPMHooks.count.HP_strlib_safestrncpy__pre > 0) { - char* (*preHookFunc) (char **dst, const char **src, size_t *n); + char * (*preHookFunc) (char **dst, const char **src, size_t *n); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__pre; hIndex++) { preHookFunc = HPMHooks.list.HP_strlib_safestrncpy__pre[hIndex].func; @@ -98146,7 +98173,7 @@ char* HP_strlib_safestrncpy_(char *dst, const char *src, size_t n) { retVal___ = HPMHooks.source.strlib.safestrncpy_(dst, src, n); } if (HPMHooks.count.HP_strlib_safestrncpy__post > 0) { - char* (*postHookFunc) (char* retVal___, char *dst, const char *src, size_t n); + char * (*postHookFunc) (char * retVal___, char *dst, const char *src, size_t n); for (hIndex = 0; hIndex < HPMHooks.count.HP_strlib_safestrncpy__post; hIndex++) { postHookFunc = HPMHooks.list.HP_strlib_safestrncpy__post[hIndex].func; retVal___ = postHookFunc(retVal___, dst, src, n); @@ -98609,11 +98636,11 @@ size_t HP_sv_unescape_c(char *out_dest, const char *src, size_t len) { } return retVal___; } -const char* HP_sv_skip_escaped_c(const char *p) { +const char * HP_sv_skip_escaped_c(const char *p) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sv_skip_escaped_c_pre > 0) { - const char* (*preHookFunc) (const char **p); + const char * (*preHookFunc) (const char **p); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_pre[hIndex].func; @@ -98628,7 +98655,7 @@ const char* HP_sv_skip_escaped_c(const char *p) { retVal___ = HPMHooks.source.sv.skip_escaped_c(p); } if (HPMHooks.count.HP_sv_skip_escaped_c_post > 0) { - const char* (*postHookFunc) (const char* retVal___, const char *p); + const char * (*postHookFunc) (const char * retVal___, const char *p); for (hIndex = 0; hIndex < HPMHooks.count.HP_sv_skip_escaped_c_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sv_skip_escaped_c_post[hIndex].func; retVal___ = postHookFunc(retVal___, p); @@ -98691,11 +98718,11 @@ long HP_sysinfo_getpagesize(void) { } return retVal___; } -const char* HP_sysinfo_platform(void) { +const char * HP_sysinfo_platform(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_platform_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_platform_pre[hIndex].func; @@ -98710,7 +98737,7 @@ const char* HP_sysinfo_platform(void) { retVal___ = HPMHooks.source.sysinfo.platform(); } if (HPMHooks.count.HP_sysinfo_platform_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_platform_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_platform_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98718,11 +98745,11 @@ const char* HP_sysinfo_platform(void) { } return retVal___; } -const char* HP_sysinfo_osversion(void) { +const char * HP_sysinfo_osversion(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_osversion_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_osversion_pre[hIndex].func; @@ -98737,7 +98764,7 @@ const char* HP_sysinfo_osversion(void) { retVal___ = HPMHooks.source.sysinfo.osversion(); } if (HPMHooks.count.HP_sysinfo_osversion_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_osversion_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_osversion_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98745,11 +98772,11 @@ const char* HP_sysinfo_osversion(void) { } return retVal___; } -const char* HP_sysinfo_cpu(void) { +const char * HP_sysinfo_cpu(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cpu_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cpu_pre[hIndex].func; @@ -98764,7 +98791,7 @@ const char* HP_sysinfo_cpu(void) { retVal___ = HPMHooks.source.sysinfo.cpu(); } if (HPMHooks.count.HP_sysinfo_cpu_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cpu_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cpu_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98799,11 +98826,11 @@ int HP_sysinfo_cpucores(void) { } return retVal___; } -const char* HP_sysinfo_arch(void) { +const char * HP_sysinfo_arch(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_arch_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_arch_pre[hIndex].func; @@ -98818,7 +98845,7 @@ const char* HP_sysinfo_arch(void) { retVal___ = HPMHooks.source.sysinfo.arch(); } if (HPMHooks.count.HP_sysinfo_arch_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_arch_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_arch_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98853,11 +98880,11 @@ bool HP_sysinfo_is64bit(void) { } return retVal___; } -const char* HP_sysinfo_compiler(void) { +const char * HP_sysinfo_compiler(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_compiler_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_compiler_pre[hIndex].func; @@ -98872,7 +98899,7 @@ const char* HP_sysinfo_compiler(void) { retVal___ = HPMHooks.source.sysinfo.compiler(); } if (HPMHooks.count.HP_sysinfo_compiler_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_compiler_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_compiler_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98880,11 +98907,11 @@ const char* HP_sysinfo_compiler(void) { } return retVal___; } -const char* HP_sysinfo_cflags(void) { +const char * HP_sysinfo_cflags(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_cflags_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_cflags_pre[hIndex].func; @@ -98899,7 +98926,7 @@ const char* HP_sysinfo_cflags(void) { retVal___ = HPMHooks.source.sysinfo.cflags(); } if (HPMHooks.count.HP_sysinfo_cflags_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_cflags_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_cflags_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98907,11 +98934,11 @@ const char* HP_sysinfo_cflags(void) { } return retVal___; } -const char* HP_sysinfo_time(void) { +const char * HP_sysinfo_time(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_time_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_time_pre[hIndex].func; @@ -98926,7 +98953,7 @@ const char* HP_sysinfo_time(void) { retVal___ = HPMHooks.source.sysinfo.time(); } if (HPMHooks.count.HP_sysinfo_time_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_time_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_time_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98934,11 +98961,11 @@ const char* HP_sysinfo_time(void) { } return retVal___; } -const char* HP_sysinfo_vcstype(void) { +const char * HP_sysinfo_vcstype(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcstype_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcstype_pre[hIndex].func; @@ -98953,7 +98980,7 @@ const char* HP_sysinfo_vcstype(void) { retVal___ = HPMHooks.source.sysinfo.vcstype(); } if (HPMHooks.count.HP_sysinfo_vcstype_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcstype_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcstype_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -98988,11 +99015,11 @@ int HP_sysinfo_vcstypeid(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_src(void) { +const char * HP_sysinfo_vcsrevision_src(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_src_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_pre[hIndex].func; @@ -99007,7 +99034,7 @@ const char* HP_sysinfo_vcsrevision_src(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_src(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_src_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_src_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_src_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -99015,11 +99042,11 @@ const char* HP_sysinfo_vcsrevision_src(void) { } return retVal___; } -const char* HP_sysinfo_vcsrevision_scripts(void) { +const char * HP_sysinfo_vcsrevision_scripts(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_pre[hIndex].func; @@ -99034,7 +99061,7 @@ const char* HP_sysinfo_vcsrevision_scripts(void) { retVal___ = HPMHooks.source.sysinfo.vcsrevision_scripts(); } if (HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_vcsrevision_scripts_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_vcsrevision_scripts_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -99149,11 +99176,11 @@ bool HP_sysinfo_is_superuser(void) { } return retVal___; } -const char* HP_sysinfo_zlib(void) { +const char * HP_sysinfo_zlib(void) { int hIndex = 0; - const char* retVal___ = NULL; + const char * retVal___ = NULL; if (HPMHooks.count.HP_sysinfo_zlib_pre > 0) { - const char* (*preHookFunc) (void); + const char * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_sysinfo_zlib_pre[hIndex].func; @@ -99168,7 +99195,7 @@ const char* HP_sysinfo_zlib(void) { retVal___ = HPMHooks.source.sysinfo.zlib(); } if (HPMHooks.count.HP_sysinfo_zlib_post > 0) { - const char* (*postHookFunc) (const char* retVal___); + const char * (*postHookFunc) (const char * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_sysinfo_zlib_post; hIndex++) { postHookFunc = HPMHooks.list.HP_sysinfo_zlib_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -99281,11 +99308,11 @@ void HP_thread_final(void) { } return; } -struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { +struct thread_handle * HP_thread_create(threadFunc entry_point, void *param) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_pre[hIndex].func; @@ -99300,7 +99327,7 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { retVal___ = HPMHooks.source.thread.create(entry_point, param); } if (HPMHooks.count.HP_thread_create_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param); @@ -99308,11 +99335,11 @@ struct thread_handle* HP_thread_create(threadFunc entry_point, void *param) { } return retVal___; } -struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { +struct thread_handle * HP_thread_create_opt(threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_create_opt_pre > 0) { - struct thread_handle* (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); + struct thread_handle * (*preHookFunc) (threadFunc *entry_point, void **param, size_t *stack_size, enum thread_priority *prio); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_create_opt_pre[hIndex].func; @@ -99327,7 +99354,7 @@ struct thread_handle* HP_thread_create_opt(threadFunc entry_point, void *param, retVal___ = HPMHooks.source.thread.create_opt(entry_point, param, stack_size, prio); } if (HPMHooks.count.HP_thread_create_opt_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___, threadFunc entry_point, void *param, size_t stack_size, enum thread_priority prio); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_create_opt_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_create_opt_post[hIndex].func; retVal___ = postHookFunc(retVal___, entry_point, param, stack_size, prio); @@ -99361,11 +99388,11 @@ void HP_thread_destroy(struct thread_handle *handle) { } return; } -struct thread_handle* HP_thread_self(void) { +struct thread_handle * HP_thread_self(void) { int hIndex = 0; - struct thread_handle* retVal___ = NULL; + struct thread_handle * retVal___ = NULL; if (HPMHooks.count.HP_thread_self_pre > 0) { - struct thread_handle* (*preHookFunc) (void); + struct thread_handle * (*preHookFunc) (void); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_thread_self_pre[hIndex].func; @@ -99380,7 +99407,7 @@ struct thread_handle* HP_thread_self(void) { retVal___ = HPMHooks.source.thread.self(); } if (HPMHooks.count.HP_thread_self_post > 0) { - struct thread_handle* (*postHookFunc) (struct thread_handle* retVal___); + struct thread_handle * (*postHookFunc) (struct thread_handle * retVal___); for (hIndex = 0; hIndex < HPMHooks.count.HP_thread_self_post; hIndex++) { postHookFunc = HPMHooks.list.HP_thread_self_post[hIndex].func; retVal___ = postHookFunc(retVal___); @@ -99630,11 +99657,11 @@ int HP_timer_add_interval(int64 tick, TimerFunc func, int id, intptr_t data, int } return retVal___; } -const struct TimerData* HP_timer_get(int tid) { +const struct TimerData * HP_timer_get(int tid) { int hIndex = 0; - const struct TimerData* retVal___ = NULL; + const struct TimerData * retVal___ = NULL; if (HPMHooks.count.HP_timer_get_pre > 0) { - const struct TimerData* (*preHookFunc) (int *tid); + const struct TimerData * (*preHookFunc) (int *tid); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_timer_get_pre[hIndex].func; @@ -99649,7 +99676,7 @@ const struct TimerData* HP_timer_get(int tid) { retVal___ = HPMHooks.source.timer.get(tid); } if (HPMHooks.count.HP_timer_get_post > 0) { - const struct TimerData* (*postHookFunc) (const struct TimerData* retVal___, int tid); + const struct TimerData * (*postHookFunc) (const struct TimerData * retVal___, int tid); for (hIndex = 0; hIndex < HPMHooks.count.HP_timer_get_post; hIndex++) { postHookFunc = HPMHooks.list.HP_timer_get_post[hIndex].func; retVal___ = postHookFunc(retVal___, tid); @@ -100243,11 +100270,11 @@ int HP_unit_final(void) { } return retVal___; } -struct unit_data* HP_unit_bl2ud(struct block_list *bl) { +struct unit_data * HP_unit_bl2ud(struct block_list *bl) { int hIndex = 0; - struct unit_data* retVal___ = NULL; + struct unit_data * retVal___ = NULL; if (HPMHooks.count.HP_unit_bl2ud_pre > 0) { - struct unit_data* (*preHookFunc) (struct block_list **bl); + struct unit_data * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_bl2ud_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_bl2ud_pre[hIndex].func; @@ -100262,7 +100289,7 @@ struct unit_data* HP_unit_bl2ud(struct block_list *bl) { retVal___ = HPMHooks.source.unit.bl2ud(bl); } if (HPMHooks.count.HP_unit_bl2ud_post > 0) { - struct unit_data* (*postHookFunc) (struct unit_data* retVal___, struct block_list *bl); + struct unit_data * (*postHookFunc) (struct unit_data * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_bl2ud_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_bl2ud_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -100270,11 +100297,11 @@ struct unit_data* HP_unit_bl2ud(struct block_list *bl) { } return retVal___; } -const struct unit_data* HP_unit_cbl2ud(const struct block_list *bl) { +const struct unit_data * HP_unit_cbl2ud(const struct block_list *bl) { int hIndex = 0; - const struct unit_data* retVal___ = NULL; + const struct unit_data * retVal___ = NULL; if (HPMHooks.count.HP_unit_cbl2ud_pre > 0) { - const struct unit_data* (*preHookFunc) (const struct block_list **bl); + const struct unit_data * (*preHookFunc) (const struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_cbl2ud_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_cbl2ud_pre[hIndex].func; @@ -100289,7 +100316,7 @@ const struct unit_data* HP_unit_cbl2ud(const struct block_list *bl) { retVal___ = HPMHooks.source.unit.cbl2ud(bl); } if (HPMHooks.count.HP_unit_cbl2ud_post > 0) { - const struct unit_data* (*postHookFunc) (const struct unit_data* retVal___, const struct block_list *bl); + const struct unit_data * (*postHookFunc) (const struct unit_data * retVal___, const struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_cbl2ud_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_cbl2ud_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); @@ -100297,11 +100324,11 @@ const struct unit_data* HP_unit_cbl2ud(const struct block_list *bl) { } return retVal___; } -struct unit_data* HP_unit_bl2ud2(struct block_list *bl) { +struct unit_data * HP_unit_bl2ud2(struct block_list *bl) { int hIndex = 0; - struct unit_data* retVal___ = NULL; + struct unit_data * retVal___ = NULL; if (HPMHooks.count.HP_unit_bl2ud2_pre > 0) { - struct unit_data* (*preHookFunc) (struct block_list **bl); + struct unit_data * (*preHookFunc) (struct block_list **bl); *HPMforce_return = false; for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_bl2ud2_pre; hIndex++) { preHookFunc = HPMHooks.list.HP_unit_bl2ud2_pre[hIndex].func; @@ -100316,7 +100343,7 @@ struct unit_data* HP_unit_bl2ud2(struct block_list *bl) { retVal___ = HPMHooks.source.unit.bl2ud2(bl); } if (HPMHooks.count.HP_unit_bl2ud2_post > 0) { - struct unit_data* (*postHookFunc) (struct unit_data* retVal___, struct block_list *bl); + struct unit_data * (*postHookFunc) (struct unit_data * retVal___, struct block_list *bl); for (hIndex = 0; hIndex < HPMHooks.count.HP_unit_bl2ud2_post; hIndex++) { postHookFunc = HPMHooks.list.HP_unit_bl2ud2_post[hIndex].func; retVal___ = postHookFunc(retVal___, bl); diff --git a/src/plugins/HPMHooking/HPMHooking_map.sources.inc b/src/plugins/HPMHooking/HPMHooking_map.sources.inc index 3f122bb3f..e5bd41b6b 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.sources.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.sources.inc @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 From 5b4f4c6422219015aa4eb9369a8acfc7f96d724f Mon Sep 17 00:00:00 2001 From: hwsapibot Date: Sat, 1 Feb 2025 00:18:03 +0000 Subject: [PATCH 3/6] Update item_db SQL data Signed-off-by: hwsapibot --- sql-files/item_db.sql | 2 +- sql-files/item_db2.sql | 2 +- sql-files/item_db_re.sql | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sql-files/item_db.sql b/sql-files/item_db.sql index f4dc23046..914304a3e 100644 --- a/sql-files/item_db.sql +++ b/sql-files/item_db.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/item_db2.sql b/sql-files/item_db2.sql index a0b929b8b..35ad8a512 100644 --- a/sql-files/item_db2.sql +++ b/sql-files/item_db2.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql index 53150a6f7..5e31fb447 100644 --- a/sql-files/item_db_re.sql +++ b/sql-files/item_db_re.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 From c929ff8f6de06ae2ab1866a203a46c1b64d70da7 Mon Sep 17 00:00:00 2001 From: hwsapibot Date: Sat, 1 Feb 2025 00:19:10 +0000 Subject: [PATCH 4/6] Update mob_db SQL data Signed-off-by: hwsapibot --- sql-files/mob_db.sql | 2 +- sql-files/mob_db2.sql | 2 +- sql-files/mob_db_re.sql | 2 +- sql-files/mob_skill_db.sql | 2 +- sql-files/mob_skill_db2.sql | 2 +- sql-files/mob_skill_db_re.sql | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sql-files/mob_db.sql b/sql-files/mob_db.sql index de982d631..be8822c8f 100644 --- a/sql-files/mob_db.sql +++ b/sql-files/mob_db.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/mob_db2.sql b/sql-files/mob_db2.sql index e19697da4..58d1e834a 100644 --- a/sql-files/mob_db2.sql +++ b/sql-files/mob_db2.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/mob_db_re.sql b/sql-files/mob_db_re.sql index b4effaaf5..687dca868 100644 --- a/sql-files/mob_db_re.sql +++ b/sql-files/mob_db_re.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/mob_skill_db.sql b/sql-files/mob_skill_db.sql index f2cfcca27..4bb0edfd5 100644 --- a/sql-files/mob_skill_db.sql +++ b/sql-files/mob_skill_db.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/mob_skill_db2.sql b/sql-files/mob_skill_db2.sql index 05acb0233..28252b1bb 100644 --- a/sql-files/mob_skill_db2.sql +++ b/sql-files/mob_skill_db2.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/mob_skill_db_re.sql b/sql-files/mob_skill_db_re.sql index 71b13140b..1102c0c98 100644 --- a/sql-files/mob_skill_db_re.sql +++ b/sql-files/mob_skill_db_re.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 From 2c181a6d4addd2d02401608541a11dc2e3fddb3f Mon Sep 17 00:00:00 2001 From: Haru Date: Sat, 1 Feb 2025 00:26:41 +0000 Subject: [PATCH 5/6] Update copyrights for year 2025 Signed-off-by: Haru --- 3rdparty/cJSON/Makefile.in | 2 +- 3rdparty/http-parser/Makefile.in | 2 +- 3rdparty/libbacktrace/Makefile.in | 2 +- 3rdparty/libconfig/Makefile.in | 2 +- 3rdparty/libconfig/extra/gen/grammar.y | 2 +- 3rdparty/libconfig/extra/gen/scanner.l | 2 +- 3rdparty/libconfig/libconfig.c | 2 +- 3rdparty/libconfig/libconfig.h | 2 +- 3rdparty/libconfig/parsectx.h | 2 +- 3rdparty/libconfig/scanctx.c | 2 +- 3rdparty/libconfig/scanctx.h | 2 +- 3rdparty/libconfig/scanner.c | 2 +- 3rdparty/libconfig/strbuf.c | 2 +- 3rdparty/libconfig/strbuf.h | 2 +- 3rdparty/libconfig/wincompat.h | 2 +- 3rdparty/libgif/Makefile.in | 2 +- 3rdparty/llhttp/Makefile.in | 2 +- 3rdparty/mt19937ar/Makefile.in | 2 +- 3rdparty/multipart-parser/Makefile.in | 2 +- Makefile.in | 2 +- conf/api/api-server.conf | 2 +- conf/char/char-server.conf | 2 +- conf/clans.conf | 2 +- conf/common/emblems.conf | 2 +- conf/common/inter-server.conf | 2 +- conf/common/map-index.conf | 2 +- conf/common/socket.conf | 2 +- conf/emotes.conf | 2 +- conf/global/console.conf | 2 +- conf/global/sql_connection.conf | 2 +- conf/import-tmpl/api-server.conf | 2 +- conf/import-tmpl/battle.conf | 2 +- conf/import-tmpl/char-server.conf | 2 +- conf/import-tmpl/emblems.conf | 2 +- conf/import-tmpl/inter-server.conf | 2 +- conf/import-tmpl/login-server.conf | 2 +- conf/import-tmpl/logs.conf | 2 +- conf/import-tmpl/map-server.conf | 2 +- conf/import-tmpl/script.conf | 2 +- conf/import-tmpl/socket.conf | 2 +- conf/login/login-server.conf | 2 +- conf/map/battle.conf | 2 +- conf/map/battle/battle.conf | 2 +- conf/map/battle/battleground.conf | 2 +- conf/map/battle/client.conf | 2 +- conf/map/battle/drops.conf | 2 +- conf/map/battle/elemental.conf | 2 +- conf/map/battle/exp.conf | 2 +- conf/map/battle/feature.conf | 2 +- conf/map/battle/gm.conf | 2 +- conf/map/battle/guild.conf | 2 +- conf/map/battle/homunc.conf | 2 +- conf/map/battle/items.conf | 2 +- conf/map/battle/limits.conf | 2 +- conf/map/battle/mercenary.conf | 2 +- conf/map/battle/misc.conf | 2 +- conf/map/battle/monster.conf | 2 +- conf/map/battle/party.conf | 2 +- conf/map/battle/pet.conf | 2 +- conf/map/battle/player.conf | 2 +- conf/map/battle/roulette.conf | 2 +- conf/map/battle/skill.conf | 2 +- conf/map/battle/status.conf | 2 +- conf/map/logs.conf | 2 +- conf/map/map-server.conf | 2 +- conf/map/maps.conf | 2 +- conf/map/script.conf | 2 +- configure.ac | 2 +- db/achievement_rank_db.conf | 2 +- db/attendance_db.conf | 2 +- db/captcha_db.conf | 2 +- db/cashshop_db.conf | 2 +- db/castle_db.conf | 2 +- db/clans.conf | 2 +- db/constants.conf | 2 +- db/goldpc_db.conf | 2 +- db/homunculus_db2.conf | 2 +- db/item_db2.conf | 2 +- db/item_options.conf | 2 +- db/mob_db2.conf | 2 +- db/mob_group2.conf | 2 +- db/mob_skill_db2.conf | 2 +- db/option_drop_groups.conf | 2 +- db/pet_db2.conf | 2 +- db/pre-re/achievement_db.conf | 2 +- db/pre-re/attr_fix.conf | 2 +- db/pre-re/autospell_db.conf | 2 +- db/pre-re/enchant_db.conf | 2 +- db/pre-re/exp_group_db.conf | 2 +- db/pre-re/grade_db.conf | 2 +- db/pre-re/homunculus_db.conf | 2 +- db/pre-re/item_chain.conf | 2 +- db/pre-re/item_combo_db.conf | 2 +- db/pre-re/item_db.conf | 2 +- db/pre-re/item_group.conf | 2 +- db/pre-re/item_lapineddukddak.conf | 2 +- db/pre-re/item_lapineupgrade.conf | 2 +- db/pre-re/item_packages.conf | 2 +- db/pre-re/item_reform_info.conf | 2 +- db/pre-re/item_reform_list.conf | 2 +- db/pre-re/job_db.conf | 2 +- db/pre-re/map_zone_db.conf | 2 +- db/pre-re/mob_db.conf | 2 +- db/pre-re/mob_group.conf | 2 +- db/pre-re/mob_skill_db.conf | 2 +- db/pre-re/pet_db.conf | 2 +- db/pre-re/refine_db.conf | 2 +- db/pre-re/sc_config.conf | 2 +- db/pre-re/skill_db.conf | 2 +- db/pre-re/skill_tree.conf | 2 +- db/pre-re/unit_parameters_db.conf | 2 +- db/quest_db.conf | 2 +- db/re/achievement_db.conf | 2 +- db/re/attr_fix.conf | 2 +- db/re/autospell_db.conf | 2 +- db/re/enchant_db.conf | 2 +- db/re/exp_group_db.conf | 2 +- db/re/grade_db.conf | 2 +- db/re/homunculus_db.conf | 2 +- db/re/item_chain.conf | 2 +- db/re/item_combo_db.conf | 2 +- db/re/item_db.conf | 2 +- db/re/item_group.conf | 2 +- db/re/item_lapineddukddak.conf | 2 +- db/re/item_lapineupgrade.conf | 2 +- db/re/item_packages.conf | 2 +- db/re/item_reform_info.conf | 2 +- db/re/item_reform_list.conf | 2 +- db/re/job_db.conf | 2 +- db/re/map_zone_db.conf | 2 +- db/re/mob_db.conf | 2 +- db/re/mob_group.conf | 2 +- db/re/mob_skill_db.conf | 2 +- db/re/pet_db.conf | 2 +- db/re/refine_db.conf | 2 +- db/re/sc_config.conf | 2 +- db/re/skill_db.conf | 2 +- db/re/skill_tree.conf | 2 +- db/re/unit_parameters_db.conf | 2 +- db/roulette_db.conf | 2 +- db/skill_db2.conf | 2 +- db/stylist_db.conf | 2 +- db/translations.conf | 2 +- db2sql.bat | 2 +- doc/effect_list.md | 2 +- doc/goldpc.md | 2 +- doc/item_bonus.md | 2 +- doc/map_cache.md | 2 +- doc/mob_db_mode_list.md | 2 +- doc/mob_skill_db.md | 2 +- doc/permissions.md | 2 +- doc/quest_variables.md | 2 +- doc/unit_parameters_db.md | 2 +- npc/MOTD.txt | 2 +- npc/airports/airships.txt | 2 +- npc/airports/einbroch.txt | 2 +- npc/airports/hugel.txt | 2 +- npc/airports/izlude.txt | 2 +- npc/airports/lighthalzen.txt | 2 +- npc/airports/rachel.txt | 2 +- npc/airports/yuno.txt | 2 +- npc/battleground/bg_common.txt | 2 +- npc/battleground/flavius/flavius01.txt | 2 +- npc/battleground/flavius/flavius02.txt | 2 +- npc/battleground/flavius/flavius_enter.txt | 2 +- npc/battleground/kvm/kvm01.txt | 2 +- npc/battleground/kvm/kvm02.txt | 2 +- npc/battleground/kvm/kvm03.txt | 2 +- npc/battleground/kvm/kvm_enter.txt | 2 +- npc/battleground/kvm/kvm_item_pay.txt | 2 +- npc/battleground/tierra/tierra01.txt | 2 +- npc/battleground/tierra/tierra02.txt | 2 +- npc/battleground/tierra/tierra_enter.txt | 2 +- npc/cities/alberta.txt | 2 +- npc/cities/aldebaran.txt | 2 +- npc/cities/amatsu.txt | 2 +- npc/cities/ayothaya.txt | 2 +- npc/cities/comodo.txt | 2 +- npc/cities/einbech.txt | 2 +- npc/cities/einbroch.txt | 2 +- npc/cities/geffen.txt | 2 +- npc/cities/gonryun.txt | 2 +- npc/cities/hugel.txt | 2 +- npc/cities/izlude.txt | 2 +- npc/cities/jawaii.txt | 2 +- npc/cities/lighthalzen.txt | 2 +- npc/cities/louyang.txt | 2 +- npc/cities/lutie.txt | 2 +- npc/cities/manuk.txt | 2 +- npc/cities/morocc.txt | 2 +- npc/cities/moscovia.txt | 2 +- npc/cities/niflheim.txt | 2 +- npc/cities/payon.txt | 2 +- npc/cities/prontera.txt | 2 +- npc/cities/rachel.txt | 2 +- npc/cities/splendide.txt | 2 +- npc/cities/umbala.txt | 2 +- npc/cities/veins.txt | 2 +- npc/cities/yuno.txt | 2 +- npc/dev/ci_test.txt | 2 +- npc/dev/test.txt | 2 +- npc/events/MemorialDay_2008.txt | 2 +- npc/events/RWC_2011.txt | 2 +- npc/events/RWC_2012.txt | 2 +- npc/events/StPatrick_2008.txt | 2 +- npc/events/bossnia.txt | 2 +- npc/events/children_week.txt | 2 +- npc/events/christmas_2005.txt | 2 +- npc/events/christmas_2008.txt | 2 +- npc/events/dumplingfestival.txt | 2 +- npc/events/easter_2008.txt | 2 +- npc/events/easter_2010.txt | 2 +- npc/events/event_skill_reset.txt | 2 +- npc/events/gdevent_aru.txt | 2 +- npc/events/gdevent_sch.txt | 2 +- npc/events/god_se_festival.txt | 2 +- npc/events/halloween_2006.txt | 2 +- npc/events/halloween_2008.txt | 2 +- npc/events/halloween_2009.txt | 2 +- npc/events/idul_fitri.txt | 2 +- npc/events/lunar_2008.txt | 2 +- npc/events/nguild/nguild_dunsw.txt | 2 +- npc/events/nguild/nguild_ev_agit.txt | 2 +- npc/events/nguild/nguild_flags.txt | 2 +- npc/events/nguild/nguild_guardians.txt | 2 +- npc/events/nguild/nguild_kafras.txt | 2 +- npc/events/nguild/nguild_managers.txt | 2 +- npc/events/nguild/nguild_treas.txt | 2 +- npc/events/nguild/nguild_warper.txt | 2 +- npc/events/twintowers.txt | 2 +- npc/events/valentinesday.txt | 2 +- npc/events/valentinesday_2009.txt | 2 +- npc/events/valentinesday_2012.txt | 2 +- npc/events/whiteday.txt | 2 +- npc/events/xmas.txt | 2 +- npc/instances/EndlessTower.txt | 2 +- npc/instances/NydhoggsNest.txt | 2 +- npc/instances/OrcsMemory.txt | 2 +- npc/instances/SealedShrine.txt | 2 +- npc/jobs/1-1e/gunslinger.txt | 2 +- npc/jobs/1-1e/ninja.txt | 2 +- npc/jobs/1-1e/taekwon.txt | 2 +- npc/jobs/2-1/assassin.txt | 2 +- npc/jobs/2-1/blacksmith.txt | 2 +- npc/jobs/2-1/hunter.txt | 2 +- npc/jobs/2-1/knight.txt | 2 +- npc/jobs/2-1/priest.txt | 2 +- npc/jobs/2-1/wizard.txt | 2 +- npc/jobs/2-1a/AssassinCross.txt | 2 +- npc/jobs/2-1a/HighPriest.txt | 2 +- npc/jobs/2-1a/HighWizard.txt | 2 +- npc/jobs/2-1a/LordKnight.txt | 2 +- npc/jobs/2-1a/Sniper.txt | 2 +- npc/jobs/2-1a/WhiteSmith.txt | 2 +- npc/jobs/2-1e/StarGladiator.txt | 2 +- npc/jobs/2-2/alchemist.txt | 2 +- npc/jobs/2-2/bard.txt | 2 +- npc/jobs/2-2/crusader.txt | 2 +- npc/jobs/2-2/dancer.txt | 2 +- npc/jobs/2-2/monk.txt | 2 +- npc/jobs/2-2/rogue.txt | 2 +- npc/jobs/2-2/sage.txt | 2 +- npc/jobs/2-2a/Champion.txt | 2 +- npc/jobs/2-2a/Clown.txt | 2 +- npc/jobs/2-2a/Creator.txt | 2 +- npc/jobs/2-2a/Gypsy.txt | 2 +- npc/jobs/2-2a/Paladin.txt | 2 +- npc/jobs/2-2a/Professor.txt | 2 +- npc/jobs/2-2a/Stalker.txt | 2 +- npc/jobs/2-2e/SoulLinker.txt | 2 +- npc/jobs/novice/supernovice.txt | 2 +- npc/jobs/valkyrie.txt | 2 +- npc/kafras/cool_event_corp.txt | 2 +- npc/kafras/dts_warper.txt | 2 +- npc/kafras/functions_kafras.txt | 2 +- npc/kafras/kafras.txt | 2 +- npc/mapflag/battleground.txt | 2 +- npc/mapflag/gvg.txt | 2 +- npc/mapflag/jail.txt | 2 +- npc/mapflag/night.txt | 2 +- npc/mapflag/nightmare.txt | 2 +- npc/mapflag/nobranch.txt | 2 +- npc/mapflag/noexp.txt | 2 +- npc/mapflag/noicewall.txt | 2 +- npc/mapflag/noloot.txt | 2 +- npc/mapflag/nomemo.txt | 2 +- npc/mapflag/nopenalty.txt | 2 +- npc/mapflag/nopet.txt | 2 +- npc/mapflag/nopvp.txt | 2 +- npc/mapflag/noreturn.txt | 2 +- npc/mapflag/nosave.txt | 2 +- npc/mapflag/noskill.txt | 2 +- npc/mapflag/noteleport.txt | 2 +- npc/mapflag/notomb.txt | 2 +- npc/mapflag/novending.txt | 2 +- npc/mapflag/nowarp.txt | 2 +- npc/mapflag/nowarpto.txt | 2 +- npc/mapflag/partylock.txt | 2 +- npc/mapflag/private_airship.txt | 2 +- npc/mapflag/pvp.txt | 2 +- npc/mapflag/pvp_noguild.txt | 2 +- npc/mapflag/pvp_noparty.txt | 2 +- npc/mapflag/reset.txt | 2 +- npc/mapflag/skillduration.txt | 2 +- npc/mapflag/skillmodifier.txt | 2 +- npc/mapflag/town.txt | 2 +- npc/mapflag/zone.txt | 2 +- npc/merchants/advanced_refiner.txt | 2 +- npc/merchants/alchemist.txt | 2 +- npc/merchants/ammo_boxes.txt | 2 +- npc/merchants/ammo_dealer.txt | 2 +- npc/merchants/buying_shops.txt | 2 +- npc/merchants/cash_hair.txt | 2 +- npc/merchants/cash_trader.txt | 2 +- npc/merchants/cashheadgear_dye.txt | 2 +- npc/merchants/clothes_dyer.txt | 2 +- npc/merchants/coin_exchange.txt | 2 +- npc/merchants/dye_maker.txt | 2 +- npc/merchants/elemental_trader.txt | 2 +- npc/merchants/enchan_arm.txt | 2 +- npc/merchants/gemstone.txt | 2 +- npc/merchants/hair_dyer.txt | 2 +- npc/merchants/hair_style.txt | 2 +- npc/merchants/hd_refine.txt | 2 +- npc/merchants/icecream.txt | 2 +- npc/merchants/inn.txt | 2 +- npc/merchants/kunai_maker.txt | 2 +- npc/merchants/milk_trader.txt | 2 +- npc/merchants/novice_exchange.txt | 2 +- npc/merchants/old_pharmacist.txt | 2 +- npc/merchants/quivers.txt | 2 +- npc/merchants/refine.txt | 2 +- npc/merchants/renters.txt | 2 +- npc/merchants/shops.txt | 2 +- npc/merchants/socket_enchant.txt | 2 +- npc/merchants/socket_enchant2.txt | 2 +- npc/merchants/wander_pet_food.txt | 2 +- npc/mobs/citycleaners.txt | 2 +- npc/mobs/jail.txt | 2 +- npc/mobs/pvp.txt | 2 +- npc/mobs/towns.txt | 2 +- npc/other/CashShop_Functions.txt | 2 +- npc/other/Global_Functions.txt | 2 +- npc/other/acolyte_warp.txt | 2 +- npc/other/arena/arena_aco.txt | 2 +- npc/other/arena/arena_lvl50.txt | 2 +- npc/other/arena/arena_lvl60.txt | 2 +- npc/other/arena/arena_lvl70.txt | 2 +- npc/other/arena/arena_lvl80.txt | 2 +- npc/other/arena/arena_party.txt | 2 +- npc/other/arena/arena_point.txt | 2 +- npc/other/arena/arena_room.txt | 2 +- npc/other/auction.txt | 2 +- npc/other/books.txt | 2 +- npc/other/bulletin_boards.txt | 2 +- npc/other/card_trader.txt | 2 +- npc/other/comodo_gambling.txt | 2 +- npc/other/divorce.txt | 2 +- npc/other/dynamicnpc_create.txt | 2 +- npc/other/fortune.txt | 2 +- npc/other/gm_npcs.txt | 2 +- npc/other/goldpc.txt | 2 +- npc/other/guildpvp.txt | 2 +- npc/other/gympass.txt | 2 +- npc/other/hugel_bingo.txt | 2 +- npc/other/inventory_expansion.txt | 2 +- npc/other/item_merge.txt | 2 +- npc/other/mail.txt | 2 +- npc/other/marriage.txt | 2 +- npc/other/mercenary_rent.txt | 2 +- npc/other/monster_museum.txt | 2 +- npc/other/monster_race.txt | 2 +- npc/other/msg_boards.txt | 2 +- npc/other/poring_war.txt | 2 +- npc/other/powernpc.txt | 2 +- npc/other/private_airship.txt | 2 +- npc/other/pvp.txt | 2 +- npc/other/turbo_track.txt | 2 +- npc/pre-re/airports/izlude.txt | 2 +- npc/pre-re/cities/alberta.txt | 2 +- npc/pre-re/cities/izlude.txt | 2 +- npc/pre-re/cities/jawaii.txt | 2 +- npc/pre-re/cities/yuno.txt | 2 +- npc/pre-re/guides/guides_alberta.txt | 2 +- npc/pre-re/guides/guides_aldebaran.txt | 2 +- npc/pre-re/guides/guides_amatsu.txt | 2 +- npc/pre-re/guides/guides_ayothaya.txt | 2 +- npc/pre-re/guides/guides_comodo.txt | 2 +- npc/pre-re/guides/guides_einbroch.txt | 2 +- npc/pre-re/guides/guides_geffen.txt | 2 +- npc/pre-re/guides/guides_gonryun.txt | 2 +- npc/pre-re/guides/guides_hugel.txt | 2 +- npc/pre-re/guides/guides_izlude.txt | 2 +- npc/pre-re/guides/guides_juno.txt | 2 +- npc/pre-re/guides/guides_lighthalzen.txt | 2 +- npc/pre-re/guides/guides_louyang.txt | 2 +- npc/pre-re/guides/guides_morroc.txt | 2 +- npc/pre-re/guides/guides_moscovia.txt | 2 +- npc/pre-re/guides/guides_niflheim.txt | 2 +- npc/pre-re/guides/guides_payon.txt | 2 +- npc/pre-re/guides/guides_prontera.txt | 2 +- npc/pre-re/guides/guides_rachel.txt | 2 +- npc/pre-re/guides/guides_umbala.txt | 2 +- npc/pre-re/guides/guides_veins.txt | 2 +- npc/pre-re/jobs/1-1/acolyte.txt | 2 +- npc/pre-re/jobs/1-1/archer.txt | 2 +- npc/pre-re/jobs/1-1/mage.txt | 2 +- npc/pre-re/jobs/1-1/merchant.txt | 2 +- npc/pre-re/jobs/1-1/swordman.txt | 2 +- npc/pre-re/jobs/1-1/thief.txt | 2 +- npc/pre-re/jobs/1-1e/taekwon.txt | 2 +- npc/pre-re/jobs/novice/novice.txt | 2 +- npc/pre-re/kafras/kafras.txt | 2 +- npc/pre-re/mapflag/gvg.txt | 2 +- npc/pre-re/merchants/ammo_boxes.txt | 2 +- npc/pre-re/merchants/ammo_dealer.txt | 2 +- npc/pre-re/merchants/shops.txt | 2 +- npc/pre-re/mobs/citycleaners.txt | 2 +- npc/pre-re/mobs/dungeons/abbey.txt | 2 +- npc/pre-re/mobs/dungeons/abyss.txt | 2 +- npc/pre-re/mobs/dungeons/alde_dun.txt | 2 +- npc/pre-re/mobs/dungeons/ama_dun.txt | 2 +- npc/pre-re/mobs/dungeons/anthell.txt | 2 +- npc/pre-re/mobs/dungeons/ayo_dun.txt | 2 +- npc/pre-re/mobs/dungeons/beach_dun.txt | 2 +- npc/pre-re/mobs/dungeons/c_tower.txt | 2 +- npc/pre-re/mobs/dungeons/ein_dun.txt | 2 +- npc/pre-re/mobs/dungeons/gef_dun.txt | 2 +- npc/pre-re/mobs/dungeons/gefenia.txt | 2 +- npc/pre-re/mobs/dungeons/glastheim.txt | 2 +- npc/pre-re/mobs/dungeons/gld_dun.txt | 2 +- npc/pre-re/mobs/dungeons/gld_dunSE.txt | 2 +- npc/pre-re/mobs/dungeons/gon_dun.txt | 2 +- npc/pre-re/mobs/dungeons/ice_dun.txt | 2 +- npc/pre-re/mobs/dungeons/in_sphinx.txt | 2 +- npc/pre-re/mobs/dungeons/iz_dun.txt | 2 +- npc/pre-re/mobs/dungeons/juperos.txt | 2 +- npc/pre-re/mobs/dungeons/kh_dun.txt | 2 +- npc/pre-re/mobs/dungeons/lhz_dun.txt | 2 +- npc/pre-re/mobs/dungeons/lou_dun.txt | 2 +- npc/pre-re/mobs/dungeons/mag_dun.txt | 2 +- npc/pre-re/mobs/dungeons/mjo_dun.txt | 2 +- npc/pre-re/mobs/dungeons/moc_pryd.txt | 2 +- npc/pre-re/mobs/dungeons/mosk_dun.txt | 2 +- npc/pre-re/mobs/dungeons/nyd_dun.txt | 2 +- npc/pre-re/mobs/dungeons/odin.txt | 2 +- npc/pre-re/mobs/dungeons/orcsdun.txt | 2 +- npc/pre-re/mobs/dungeons/pay_dun.txt | 2 +- npc/pre-re/mobs/dungeons/prt_maze.txt | 2 +- npc/pre-re/mobs/dungeons/prt_sew.txt | 2 +- npc/pre-re/mobs/dungeons/ra_san.txt | 2 +- npc/pre-re/mobs/dungeons/tha_t.txt | 2 +- npc/pre-re/mobs/dungeons/thor_v.txt | 2 +- npc/pre-re/mobs/dungeons/treasure.txt | 2 +- npc/pre-re/mobs/dungeons/tur_dun.txt | 2 +- npc/pre-re/mobs/dungeons/um_dun.txt | 2 +- npc/pre-re/mobs/dungeons/xmas_dun.txt | 2 +- npc/pre-re/mobs/dungeons/yggdrasil.txt | 2 +- npc/pre-re/mobs/fields/amatsu.txt | 2 +- npc/pre-re/mobs/fields/ayothaya.txt | 2 +- npc/pre-re/mobs/fields/comodo.txt | 2 +- npc/pre-re/mobs/fields/einbroch.txt | 2 +- npc/pre-re/mobs/fields/geffen.txt | 2 +- npc/pre-re/mobs/fields/gonryun.txt | 2 +- npc/pre-re/mobs/fields/hugel.txt | 2 +- npc/pre-re/mobs/fields/lighthalzen.txt | 2 +- npc/pre-re/mobs/fields/louyang.txt | 2 +- npc/pre-re/mobs/fields/lutie.txt | 2 +- npc/pre-re/mobs/fields/manuk.txt | 2 +- npc/pre-re/mobs/fields/mjolnir.txt | 2 +- npc/pre-re/mobs/fields/morocc.txt | 2 +- npc/pre-re/mobs/fields/moscovia.txt | 2 +- npc/pre-re/mobs/fields/niflheim.txt | 2 +- npc/pre-re/mobs/fields/payon.txt | 2 +- npc/pre-re/mobs/fields/prontera.txt | 2 +- npc/pre-re/mobs/fields/rachel.txt | 2 +- npc/pre-re/mobs/fields/splendide.txt | 2 +- npc/pre-re/mobs/fields/umbala.txt | 2 +- npc/pre-re/mobs/fields/veins.txt | 2 +- npc/pre-re/mobs/fields/yuno.txt | 2 +- npc/pre-re/other/bulletin_boards.txt | 2 +- npc/pre-re/other/mercenary_rent.txt | 2 +- npc/pre-re/other/msg_boards.txt | 2 +- npc/pre-re/other/pvp.txt | 2 +- npc/pre-re/other/resetskill.txt | 2 +- npc/pre-re/other/turbo_track.txt | 2 +- npc/pre-re/quests/collection/quest_alligator.txt | 2 +- npc/pre-re/quests/collection/quest_caramel.txt | 2 +- npc/pre-re/quests/collection/quest_coco.txt | 2 +- npc/pre-re/quests/collection/quest_creamy.txt | 2 +- npc/pre-re/quests/collection/quest_demonpungus.txt | 2 +- npc/pre-re/quests/collection/quest_disguiseloliruri.txt | 2 +- npc/pre-re/quests/collection/quest_dokebi.txt | 2 +- npc/pre-re/quests/collection/quest_dryad.txt | 2 +- npc/pre-re/quests/collection/quest_fabre.txt | 2 +- npc/pre-re/quests/collection/quest_frilldora.txt | 2 +- npc/pre-re/quests/collection/quest_goat.txt | 2 +- npc/pre-re/quests/collection/quest_golem.txt | 2 +- npc/pre-re/quests/collection/quest_hode.txt | 2 +- npc/pre-re/quests/collection/quest_leafcat.txt | 2 +- npc/pre-re/quests/collection/quest_mantis.txt | 2 +- npc/pre-re/quests/collection/quest_pecopeco.txt | 2 +- npc/pre-re/quests/collection/quest_pupa.txt | 2 +- npc/pre-re/quests/collection/quest_zhupolong.txt | 2 +- npc/pre-re/quests/first_class/tu_archer.txt | 2 +- npc/pre-re/quests/monstertamers.txt | 2 +- npc/pre-re/quests/mrsmile.txt | 2 +- npc/pre-re/quests/quests_13_1.txt | 2 +- npc/pre-re/quests/quests_izlude.txt | 2 +- npc/pre-re/quests/quests_lighthalzen.txt | 2 +- npc/pre-re/quests/quests_nameless.txt | 2 +- npc/pre-re/quests/quests_payon.txt | 2 +- npc/pre-re/quests/quests_veins.txt | 2 +- npc/pre-re/quests/skills/novice_skills.txt | 2 +- npc/pre-re/scripts.conf | 2 +- npc/pre-re/scripts_jobs.conf | 2 +- npc/pre-re/scripts_main.conf | 2 +- npc/pre-re/scripts_mapflags.conf | 2 +- npc/pre-re/scripts_monsters.conf | 2 +- npc/pre-re/scripts_warps.conf | 2 +- npc/pre-re/warps/cities/izlude.txt | 2 +- npc/pre-re/warps/cities/rachel.txt | 2 +- npc/pre-re/warps/cities/yggdrasil.txt | 2 +- npc/pre-re/warps/fields/com_fild.txt | 2 +- npc/pre-re/warps/fields/geffen_fild.txt | 2 +- npc/pre-re/warps/fields/hugel_fild.txt | 2 +- npc/pre-re/warps/fields/morroc_fild.txt | 2 +- npc/pre-re/warps/fields/payon_fild.txt | 2 +- npc/pre-re/warps/fields/prontera_fild.txt | 2 +- npc/pre-re/warps/fields/rachel_fild.txt | 2 +- npc/pre-re/warps/fields/veins_fild.txt | 2 +- npc/pre-re/warps/fields/yuno_fild.txt | 2 +- npc/pre-re/warps/other/arena.txt | 2 +- npc/pre-re/warps/other/sign.txt | 2 +- npc/quests/bard_quest.txt | 2 +- npc/quests/bunnyband.txt | 2 +- npc/quests/cooking_quest.txt | 2 +- npc/quests/counteragent_mixture.txt | 2 +- npc/quests/dandelion_request.txt | 2 +- npc/quests/doomed_swords.txt | 2 +- npc/quests/doomed_swords_quest.txt | 2 +- npc/quests/eye_of_hellion.txt | 2 +- npc/quests/first_class/tu_acolyte.txt | 2 +- npc/quests/first_class/tu_archer.txt | 2 +- npc/quests/first_class/tu_ma_th01.txt | 2 +- npc/quests/first_class/tu_magician01.txt | 2 +- npc/quests/first_class/tu_merchant.txt | 2 +- npc/quests/first_class/tu_sword.txt | 2 +- npc/quests/first_class/tu_thief01.txt | 2 +- npc/quests/guildrelay.txt | 2 +- npc/quests/gunslinger_quests.txt | 2 +- npc/quests/juice_maker.txt | 2 +- npc/quests/kiel_hyre_quest.txt | 2 +- npc/quests/lvl4_weapon_quest.txt | 2 +- npc/quests/mage_solution.txt | 2 +- npc/quests/monstertamers.txt | 2 +- npc/quests/mrsmile.txt | 2 +- npc/quests/newgears/2004_headgears.txt | 2 +- npc/quests/newgears/2005_headgears.txt | 2 +- npc/quests/newgears/2006_headgears.txt | 2 +- npc/quests/newgears/2008_headgears.txt | 2 +- npc/quests/newgears/2010_headgears.txt | 2 +- npc/quests/ninja_quests.txt | 2 +- npc/quests/obb_quest.txt | 2 +- npc/quests/okolnir.txt | 2 +- npc/quests/partyrelay.txt | 2 +- npc/quests/quests_13_1.txt | 2 +- npc/quests/quests_13_2.txt | 2 +- npc/quests/quests_airship.txt | 2 +- npc/quests/quests_alberta.txt | 2 +- npc/quests/quests_aldebaran.txt | 2 +- npc/quests/quests_amatsu.txt | 2 +- npc/quests/quests_ayothaya.txt | 2 +- npc/quests/quests_comodo.txt | 2 +- npc/quests/quests_ein.txt | 2 +- npc/quests/quests_geffen.txt | 2 +- npc/quests/quests_gonryun.txt | 2 +- npc/quests/quests_hugel.txt | 2 +- npc/quests/quests_izlude.txt | 2 +- npc/quests/quests_juperos.txt | 2 +- npc/quests/quests_lighthalzen.txt | 2 +- npc/quests/quests_louyang.txt | 2 +- npc/quests/quests_lutie.txt | 2 +- npc/quests/quests_morocc.txt | 2 +- npc/quests/quests_moscovia.txt | 2 +- npc/quests/quests_nameless.txt | 2 +- npc/quests/quests_niflheim.txt | 2 +- npc/quests/quests_payon.txt | 2 +- npc/quests/quests_prontera.txt | 2 +- npc/quests/quests_rachel.txt | 2 +- npc/quests/quests_umbala.txt | 2 +- npc/quests/quests_veins.txt | 2 +- npc/quests/quests_yuno.txt | 2 +- npc/quests/seals/brisingamen_seal.txt | 2 +- npc/quests/seals/god_global.txt | 2 +- npc/quests/seals/god_weapon_creation.txt | 2 +- npc/quests/seals/megingard_seal.txt | 2 +- npc/quests/seals/mjolnir_seal.txt | 2 +- npc/quests/seals/seal_status.txt | 2 +- npc/quests/seals/sleipnir_seal.txt | 2 +- npc/quests/skills/acolyte_skills.txt | 2 +- npc/quests/skills/alchemist_skills.txt | 2 +- npc/quests/skills/archer_skills.txt | 2 +- npc/quests/skills/assassin_skills.txt | 2 +- npc/quests/skills/bard_skills.txt | 2 +- npc/quests/skills/blacksmith_skills.txt | 2 +- npc/quests/skills/crusader_skills.txt | 2 +- npc/quests/skills/dancer_skills.txt | 2 +- npc/quests/skills/hunter_skills.txt | 2 +- npc/quests/skills/knight_skills.txt | 2 +- npc/quests/skills/mage_skills.txt | 2 +- npc/quests/skills/merchant_skills.txt | 2 +- npc/quests/skills/monk_skills.txt | 2 +- npc/quests/skills/priest_skills.txt | 2 +- npc/quests/skills/rogue_skills.txt | 2 +- npc/quests/skills/sage_skills.txt | 2 +- npc/quests/skills/swordman_skills.txt | 2 +- npc/quests/skills/thief_skills.txt | 2 +- npc/quests/skills/wizard_skills.txt | 2 +- npc/quests/thana_quest.txt | 2 +- npc/quests/the_sign_quest.txt | 2 +- npc/re/airports/izlude.txt | 2 +- npc/re/battleground/bg_common.txt | 2 +- npc/re/cities/alberta.txt | 2 +- npc/re/cities/brasilis.txt | 2 +- npc/re/cities/dewata.txt | 2 +- npc/re/cities/dicastes.txt | 2 +- npc/re/cities/eclage.txt | 2 +- npc/re/cities/izlude.txt | 2 +- npc/re/cities/jawaii.txt | 2 +- npc/re/cities/malangdo.txt | 2 +- npc/re/cities/malaya.txt | 2 +- npc/re/cities/mora.txt | 2 +- npc/re/cities/yuno.txt | 2 +- npc/re/events/christmas_2013.txt | 2 +- npc/re/events/halloween_2013.txt | 2 +- npc/re/events/halloween_2014.txt | 2 +- npc/re/guides/guides_alberta.txt | 2 +- npc/re/guides/guides_aldebaran.txt | 2 +- npc/re/guides/guides_amatsu.txt | 2 +- npc/re/guides/guides_ayothaya.txt | 2 +- npc/re/guides/guides_brasilis.txt | 2 +- npc/re/guides/guides_comodo.txt | 2 +- npc/re/guides/guides_dewata.txt | 2 +- npc/re/guides/guides_dicastes.txt | 2 +- npc/re/guides/guides_eclage.txt | 2 +- npc/re/guides/guides_einbroch.txt | 2 +- npc/re/guides/guides_geffen.txt | 2 +- npc/re/guides/guides_gonryun.txt | 2 +- npc/re/guides/guides_hugel.txt | 2 +- npc/re/guides/guides_izlude.txt | 2 +- npc/re/guides/guides_juno.txt | 2 +- npc/re/guides/guides_lighthalzen.txt | 2 +- npc/re/guides/guides_louyang.txt | 2 +- npc/re/guides/guides_lutie.txt | 2 +- npc/re/guides/guides_malaya.txt | 2 +- npc/re/guides/guides_mora.txt | 2 +- npc/re/guides/guides_morroc.txt | 2 +- npc/re/guides/guides_moscovia.txt | 2 +- npc/re/guides/guides_niflheim.txt | 2 +- npc/re/guides/guides_payon.txt | 2 +- npc/re/guides/guides_prontera.txt | 2 +- npc/re/guides/guides_rachel.txt | 2 +- npc/re/guides/guides_umbala.txt | 2 +- npc/re/guides/guides_veins.txt | 2 +- npc/re/guides/navigation.txt | 2 +- npc/re/instances/BakonawaLake.txt | 2 +- npc/re/instances/BangungotHospital.txt | 2 +- npc/re/instances/BuwayaCave.txt | 2 +- npc/re/instances/EclageInterior.txt | 2 +- npc/re/instances/HazyForest.txt | 2 +- npc/re/instances/MalangdoCulvert.txt | 2 +- npc/re/instances/OldGlastHeim.txt | 2 +- npc/re/instances/WolfchevLaboratory.txt | 2 +- npc/re/instances/ghost_palace.txt | 2 +- npc/re/instances/octopus_cave.txt | 2 +- npc/re/instances/saras_memory.txt | 2 +- npc/re/jobs/1-1/acolyte.txt | 2 +- npc/re/jobs/1-1/archer.txt | 2 +- npc/re/jobs/1-1/mage.txt | 2 +- npc/re/jobs/1-1/merchant.txt | 2 +- npc/re/jobs/1-1/swordman.txt | 2 +- npc/re/jobs/1-1/thief.txt | 2 +- npc/re/jobs/1-1e/taekwon.txt | 2 +- npc/re/jobs/2e/kagerou_oboro.txt | 2 +- npc/re/jobs/2e/rebellion.txt | 2 +- npc/re/jobs/3-1/archbishop.txt | 2 +- npc/re/jobs/3-1/guillotine_cross.txt | 2 +- npc/re/jobs/3-1/mechanic.txt | 2 +- npc/re/jobs/3-1/ranger.txt | 2 +- npc/re/jobs/3-1/rune_knight.txt | 2 +- npc/re/jobs/3-1/warlock.txt | 2 +- npc/re/jobs/3-2/genetic.txt | 2 +- npc/re/jobs/3-2/minstrel.txt | 2 +- npc/re/jobs/3-2/royal_guard.txt | 2 +- npc/re/jobs/3-2/shadow_chaser.txt | 2 +- npc/re/jobs/3-2/sorcerer.txt | 2 +- npc/re/jobs/3-2/sura.txt | 2 +- npc/re/jobs/3-2/wanderer.txt | 2 +- npc/re/jobs/novice/academy.txt | 2 +- npc/re/jobs/novice/novice.txt | 2 +- npc/re/jobs/novice/supernovice_ex.txt | 2 +- npc/re/jobs/repair.txt | 2 +- npc/re/kafras/kafras.txt | 2 +- npc/re/mapflag/gvg.txt | 2 +- npc/re/mapflag/zone.txt | 2 +- npc/re/merchants/3rd_trader.txt | 2 +- npc/re/merchants/advanced_refiner.txt | 2 +- npc/re/merchants/alchemist.txt | 2 +- npc/re/merchants/ammo_boxes.txt | 2 +- npc/re/merchants/ammo_dealer.txt | 2 +- npc/re/merchants/blessed_refiner.txt | 2 +- npc/re/merchants/card_separation.txt | 2 +- npc/re/merchants/catalog.txt | 2 +- npc/re/merchants/coin_exchange.txt | 2 +- npc/re/merchants/diamond.txt | 2 +- npc/re/merchants/enchan_ko.txt | 2 +- npc/re/merchants/enchan_mal.txt | 2 +- npc/re/merchants/enchan_mora.txt | 2 +- npc/re/merchants/enchan_upg.txt | 2 +- npc/re/merchants/flute.txt | 2 +- npc/re/merchants/hd_refiner.txt | 2 +- npc/re/merchants/inn.txt | 2 +- npc/re/merchants/ninja_craftsman.txt | 2 +- npc/re/merchants/quivers.txt | 2 +- npc/re/merchants/refine.txt | 2 +- npc/re/merchants/renters.txt | 2 +- npc/re/merchants/shadow_refiner.txt | 2 +- npc/re/merchants/shops.txt | 2 +- npc/re/merchants/ticket_refiner.txt | 2 +- npc/re/mobs/champion.txt | 2 +- npc/re/mobs/citycleaners.txt | 2 +- npc/re/mobs/dungeons/abbey.txt | 2 +- npc/re/mobs/dungeons/abyss.txt | 2 +- npc/re/mobs/dungeons/alde_dun.txt | 2 +- npc/re/mobs/dungeons/ama_dun.txt | 2 +- npc/re/mobs/dungeons/anthell.txt | 2 +- npc/re/mobs/dungeons/ayo_dun.txt | 2 +- npc/re/mobs/dungeons/beach_dun.txt | 2 +- npc/re/mobs/dungeons/bra_dun.txt | 2 +- npc/re/mobs/dungeons/c_tower.txt | 2 +- npc/re/mobs/dungeons/dew_dun.txt | 2 +- npc/re/mobs/dungeons/dic_dun.txt | 2 +- npc/re/mobs/dungeons/ecl_tdun.txt | 2 +- npc/re/mobs/dungeons/ein_dun.txt | 2 +- npc/re/mobs/dungeons/gef_dun.txt | 2 +- npc/re/mobs/dungeons/gefenia.txt | 2 +- npc/re/mobs/dungeons/glastheim.txt | 2 +- npc/re/mobs/dungeons/gld_dunSE.txt | 2 +- npc/re/mobs/dungeons/gld_re.txt | 2 +- npc/re/mobs/dungeons/gon_dun.txt | 2 +- npc/re/mobs/dungeons/ice_dun.txt | 2 +- npc/re/mobs/dungeons/in_sphinx.txt | 2 +- npc/re/mobs/dungeons/iz_dun.txt | 2 +- npc/re/mobs/dungeons/juperos.txt | 2 +- npc/re/mobs/dungeons/kh_dun.txt | 2 +- npc/re/mobs/dungeons/lhz_dun.txt | 2 +- npc/re/mobs/dungeons/lou_dun.txt | 2 +- npc/re/mobs/dungeons/ma_dun.txt | 2 +- npc/re/mobs/dungeons/mag_dun.txt | 2 +- npc/re/mobs/dungeons/mal_dun.txt | 2 +- npc/re/mobs/dungeons/mjo_dun.txt | 2 +- npc/re/mobs/dungeons/moc_pryd.txt | 2 +- npc/re/mobs/dungeons/mosk_dun.txt | 2 +- npc/re/mobs/dungeons/nyd_dun.txt | 2 +- npc/re/mobs/dungeons/odin.txt | 2 +- npc/re/mobs/dungeons/orcsdun.txt | 2 +- npc/re/mobs/dungeons/pay_dun.txt | 2 +- npc/re/mobs/dungeons/prt_maze.txt | 2 +- npc/re/mobs/dungeons/prt_sew.txt | 2 +- npc/re/mobs/dungeons/ra_san.txt | 2 +- npc/re/mobs/dungeons/tha_t.txt | 2 +- npc/re/mobs/dungeons/thor_v.txt | 2 +- npc/re/mobs/dungeons/treasure.txt | 2 +- npc/re/mobs/dungeons/tur_dun.txt | 2 +- npc/re/mobs/dungeons/xmas_dun.txt | 2 +- npc/re/mobs/dungeons/yggdrasil.txt | 2 +- npc/re/mobs/fields/amatsu.txt | 2 +- npc/re/mobs/fields/ayothaya.txt | 2 +- npc/re/mobs/fields/bifrost.txt | 2 +- npc/re/mobs/fields/brasilis.txt | 2 +- npc/re/mobs/fields/comodo.txt | 2 +- npc/re/mobs/fields/dewata.txt | 2 +- npc/re/mobs/fields/dicastes.txt | 2 +- npc/re/mobs/fields/eclage.txt | 2 +- npc/re/mobs/fields/einbroch.txt | 2 +- npc/re/mobs/fields/geffen.txt | 2 +- npc/re/mobs/fields/gonryun.txt | 2 +- npc/re/mobs/fields/hugel.txt | 2 +- npc/re/mobs/fields/lighthalzen.txt | 2 +- npc/re/mobs/fields/louyang.txt | 2 +- npc/re/mobs/fields/lutie.txt | 2 +- npc/re/mobs/fields/malaya.txt | 2 +- npc/re/mobs/fields/manuk.txt | 2 +- npc/re/mobs/fields/mjolnir.txt | 2 +- npc/re/mobs/fields/morocc.txt | 2 +- npc/re/mobs/fields/moscovia.txt | 2 +- npc/re/mobs/fields/niflheim.txt | 2 +- npc/re/mobs/fields/payon.txt | 2 +- npc/re/mobs/fields/prontera.txt | 2 +- npc/re/mobs/fields/rachel.txt | 2 +- npc/re/mobs/fields/splendide.txt | 2 +- npc/re/mobs/fields/umbala.txt | 2 +- npc/re/mobs/fields/veins.txt | 2 +- npc/re/mobs/fields/yuno.txt | 2 +- npc/re/mobs/int_land.txt | 2 +- npc/re/mobs/towns.txt | 2 +- npc/re/other/achievement_treasures.txt | 2 +- npc/re/other/bulletin_boards.txt | 2 +- npc/re/other/clans.txt | 2 +- npc/re/other/dimensional_gap.txt | 2 +- npc/re/other/grader.txt | 2 +- npc/re/other/mail.txt | 2 +- npc/re/other/mercenary_rent.txt | 2 +- npc/re/other/pvp.txt | 2 +- npc/re/other/resetskill.txt | 2 +- npc/re/other/stone_change.txt | 2 +- npc/re/other/turbo_track.txt | 2 +- npc/re/quests/cupet.txt | 2 +- npc/re/quests/eden/100-110.txt | 2 +- npc/re/quests/eden/11-25.txt | 2 +- npc/re/quests/eden/111-120.txt | 2 +- npc/re/quests/eden/121-130.txt | 2 +- npc/re/quests/eden/131-140.txt | 2 +- npc/re/quests/eden/26-40.txt | 2 +- npc/re/quests/eden/41-55.txt | 2 +- npc/re/quests/eden/56-70.txt | 2 +- npc/re/quests/eden/71-85.txt | 2 +- npc/re/quests/eden/86-90.txt | 2 +- npc/re/quests/eden/91-99.txt | 2 +- npc/re/quests/eden/eden_common.txt | 2 +- npc/re/quests/eden/eden_iro.txt | 2 +- npc/re/quests/eden/eden_quests.txt | 2 +- npc/re/quests/eden/eden_service.txt | 2 +- npc/re/quests/eden/eden_tutorial.txt | 2 +- npc/re/quests/first_class/tu_archer.txt | 2 +- npc/re/quests/homun_s.txt | 2 +- npc/re/quests/magic_books.txt | 2 +- npc/re/quests/monstertamers.txt | 2 +- npc/re/quests/mrsmile.txt | 2 +- npc/re/quests/newgears/2012_headgears.txt | 2 +- npc/re/quests/pile_bunker.txt | 2 +- npc/re/quests/quests_13_1.txt | 2 +- npc/re/quests/quests_aldebaran.txt | 2 +- npc/re/quests/quests_brasilis.txt | 2 +- npc/re/quests/quests_dewata.txt | 2 +- npc/re/quests/quests_dicastes.txt | 2 +- npc/re/quests/quests_eclage.txt | 2 +- npc/re/quests/quests_glastheim.txt | 2 +- npc/re/quests/quests_izlude.txt | 2 +- npc/re/quests/quests_lighthalzen.txt | 2 +- npc/re/quests/quests_malangdo.txt | 2 +- npc/re/quests/quests_malaya.txt | 2 +- npc/re/quests/quests_mora.txt | 2 +- npc/re/quests/quests_morocc.txt | 2 +- npc/re/quests/quests_nameless.txt | 2 +- npc/re/quests/quests_payon.txt | 2 +- npc/re/quests/quests_veins.txt | 2 +- npc/re/quests/rebuilding_morroc.txt | 2 +- npc/re/quests/rebuilding_morroc_rewards.txt | 2 +- npc/re/scripts.conf | 2 +- npc/re/scripts_jobs.conf | 2 +- npc/re/scripts_main.conf | 2 +- npc/re/scripts_mapflags.conf | 2 +- npc/re/scripts_monsters.conf | 2 +- npc/re/scripts_warps.conf | 2 +- npc/re/scripts_woe.conf | 2 +- npc/re/warps/cities/brasilis.txt | 2 +- npc/re/warps/cities/dewata.txt | 2 +- npc/re/warps/cities/dicastes.txt | 2 +- npc/re/warps/cities/eclage.txt | 2 +- npc/re/warps/cities/izlude.txt | 2 +- npc/re/warps/cities/malangdo.txt | 2 +- npc/re/warps/cities/malaya.txt | 2 +- npc/re/warps/cities/rachel.txt | 2 +- npc/re/warps/cities/yggdrasil.txt | 2 +- npc/re/warps/dungeons/bra_dun.txt | 2 +- npc/re/warps/dungeons/dic_dun.txt | 2 +- npc/re/warps/dungeons/ecl_dun.txt | 2 +- npc/re/warps/dungeons/iz_dun.txt | 2 +- npc/re/warps/dungeons/moc_pryd.txt | 2 +- npc/re/warps/fields/bif_fild.txt | 2 +- npc/re/warps/fields/bra_fild.txt | 2 +- npc/re/warps/fields/com_fild.txt | 2 +- npc/re/warps/fields/dic_fild.txt | 2 +- npc/re/warps/fields/geffen_fild.txt | 2 +- npc/re/warps/fields/hugel_fild.txt | 2 +- npc/re/warps/fields/morroc_fild.txt | 2 +- npc/re/warps/fields/payon_fild.txt | 2 +- npc/re/warps/fields/prontera_fild.txt | 2 +- npc/re/warps/fields/rachel_fild.txt | 2 +- npc/re/warps/fields/veins_fild.txt | 2 +- npc/re/warps/fields/yuno_fild.txt | 2 +- npc/re/warps/guildcastles.txt | 2 +- npc/re/warps/other/arena.txt | 2 +- npc/re/warps/other/dimensional_gap.txt | 2 +- npc/re/warps/other/jobquests.txt | 2 +- npc/re/warps/other/paradise.txt | 2 +- npc/re/warps/other/s_workshop.txt | 2 +- npc/re/warps/other/sign.txt | 2 +- npc/re/woe-fe/invest_main.txt | 2 +- npc/re/woe-fe/invest_npc.txt | 2 +- npc/scripts.conf | 2 +- npc/scripts_custom.conf | 2 +- npc/scripts_dev.conf | 2 +- npc/scripts_jobs.conf | 2 +- npc/scripts_mapflags.conf | 2 +- npc/scripts_monsters.conf | 2 +- npc/scripts_removed.conf | 2 +- npc/scripts_warps.conf | 2 +- npc/scripts_woe.conf | 2 +- npc/warps/cities/alberta.txt | 2 +- npc/warps/cities/aldebaran.txt | 2 +- npc/warps/cities/amatsu.txt | 2 +- npc/warps/cities/ayothaya.txt | 2 +- npc/warps/cities/comodo.txt | 2 +- npc/warps/cities/einbech.txt | 2 +- npc/warps/cities/einbroch.txt | 2 +- npc/warps/cities/geffen.txt | 2 +- npc/warps/cities/gonryun.txt | 2 +- npc/warps/cities/hugel.txt | 2 +- npc/warps/cities/lighthalzen.txt | 2 +- npc/warps/cities/louyang.txt | 2 +- npc/warps/cities/lutie.txt | 2 +- npc/warps/cities/manuk.txt | 2 +- npc/warps/cities/mid_camp.txt | 2 +- npc/warps/cities/morroc.txt | 2 +- npc/warps/cities/moscovia.txt | 2 +- npc/warps/cities/nameless.txt | 2 +- npc/warps/cities/niflheim.txt | 2 +- npc/warps/cities/payon.txt | 2 +- npc/warps/cities/prontera.txt | 2 +- npc/warps/cities/splendide.txt | 2 +- npc/warps/cities/umbala.txt | 2 +- npc/warps/cities/veins.txt | 2 +- npc/warps/cities/yuno.txt | 2 +- npc/warps/dungeons/abbey.txt | 2 +- npc/warps/dungeons/abyss.txt | 2 +- npc/warps/dungeons/alde_dun.txt | 2 +- npc/warps/dungeons/ama_dun.txt | 2 +- npc/warps/dungeons/anthell.txt | 2 +- npc/warps/dungeons/ayo_dun.txt | 2 +- npc/warps/dungeons/beach_dun.txt | 2 +- npc/warps/dungeons/c_tower.txt | 2 +- npc/warps/dungeons/ein_dun.txt | 2 +- npc/warps/dungeons/gef_dun.txt | 2 +- npc/warps/dungeons/gon_dun.txt | 2 +- npc/warps/dungeons/ice_dun.txt | 2 +- npc/warps/dungeons/in_sphinx.txt | 2 +- npc/warps/dungeons/iz_dun.txt | 2 +- npc/warps/dungeons/juperos.txt | 2 +- npc/warps/dungeons/kh_dun.txt | 2 +- npc/warps/dungeons/lhz_dun.txt | 2 +- npc/warps/dungeons/lou_dun.txt | 2 +- npc/warps/dungeons/mag_dun.txt | 2 +- npc/warps/dungeons/mjo_dun.txt | 2 +- npc/warps/dungeons/moc_pryd.txt | 2 +- npc/warps/dungeons/mosk_dun.txt | 2 +- npc/warps/dungeons/odin.txt | 2 +- npc/warps/dungeons/orcsdun.txt | 2 +- npc/warps/dungeons/pay_dun.txt | 2 +- npc/warps/dungeons/prt_maze.txt | 2 +- npc/warps/dungeons/ra_san.txt | 2 +- npc/warps/dungeons/tha_t.txt | 2 +- npc/warps/dungeons/thor_v.txt | 2 +- npc/warps/dungeons/treasure.txt | 2 +- npc/warps/dungeons/tur_dun.txt | 2 +- npc/warps/dungeons/um_dun.txt | 2 +- npc/warps/dungeons/xmas_dun.txt | 2 +- npc/warps/fields/abyss_warper.txt | 2 +- npc/warps/fields/amatsu_fild.txt | 2 +- npc/warps/fields/ein_fild.txt | 2 +- npc/warps/fields/gefenia.txt | 2 +- npc/warps/fields/glastheim.txt | 2 +- npc/warps/fields/jawaii.txt | 2 +- npc/warps/fields/lhalzen_fild.txt | 2 +- npc/warps/fields/lutie_fild.txt | 2 +- npc/warps/fields/man_fild.txt | 2 +- npc/warps/fields/mtmjolnir.txt | 2 +- npc/warps/fields/spl_fild.txt | 2 +- npc/warps/fields/umbala_fild.txt | 2 +- npc/warps/guildcastles.txt | 2 +- npc/warps/other/airplane.txt | 2 +- npc/warps/other/arena.txt | 2 +- npc/warps/other/god.txt | 2 +- npc/warps/other/jobquests.txt | 2 +- npc/warps/other/kiel.txt | 2 +- npc/warps/other/other.txt | 2 +- npc/warps/pvp.txt | 2 +- npc/woe-fe/agit_controller.txt | 2 +- npc/woe-fe/agit_main.txt | 2 +- npc/woe-fe/aldeg_cas01.txt | 2 +- npc/woe-fe/aldeg_cas02.txt | 2 +- npc/woe-fe/aldeg_cas03.txt | 2 +- npc/woe-fe/aldeg_cas04.txt | 2 +- npc/woe-fe/aldeg_cas05.txt | 2 +- npc/woe-fe/gefg_cas01.txt | 2 +- npc/woe-fe/gefg_cas02.txt | 2 +- npc/woe-fe/gefg_cas03.txt | 2 +- npc/woe-fe/gefg_cas04.txt | 2 +- npc/woe-fe/gefg_cas05.txt | 2 +- npc/woe-fe/payg_cas01.txt | 2 +- npc/woe-fe/payg_cas02.txt | 2 +- npc/woe-fe/payg_cas03.txt | 2 +- npc/woe-fe/payg_cas04.txt | 2 +- npc/woe-fe/payg_cas05.txt | 2 +- npc/woe-fe/prtg_cas01.txt | 2 +- npc/woe-fe/prtg_cas02.txt | 2 +- npc/woe-fe/prtg_cas03.txt | 2 +- npc/woe-fe/prtg_cas04.txt | 2 +- npc/woe-fe/prtg_cas05.txt | 2 +- npc/woe-fe/trs_rp.txt | 2 +- npc/woe-se/agit_main_se.txt | 2 +- npc/woe-se/agit_start_se.txt | 2 +- npc/woe-se/arug_cas01.txt | 2 +- npc/woe-se/arug_cas02.txt | 2 +- npc/woe-se/arug_cas03.txt | 2 +- npc/woe-se/arug_cas04.txt | 2 +- npc/woe-se/arug_cas05.txt | 2 +- npc/woe-se/guild_flags.txt | 2 +- npc/woe-se/schg_cas01.txt | 2 +- npc/woe-se/schg_cas02.txt | 2 +- npc/woe-se/schg_cas03.txt | 2 +- npc/woe-se/schg_cas04.txt | 2 +- npc/woe-se/schg_cas05.txt | 2 +- script-checker | 2 +- script-checker.bat | 2 +- sql-files/logs.sql | 2 +- sql-files/main.sql | 2 +- sql-files/tools/convert_engine_innodb.sql | 2 +- sql-files/tools/convert_engine_myisam.sql | 2 +- sql-files/tools/convert_passwords.sql | 2 +- sql-files/upgrades/2013-02-14--16-15.sql | 2 +- sql-files/upgrades/2013-02-15--18-06.sql | 2 +- sql-files/upgrades/2013-03-05--01-05.sql | 2 +- sql-files/upgrades/2013-03-06--00-00.sql | 2 +- sql-files/upgrades/2013-03-09--01-56.sql | 2 +- sql-files/upgrades/2013-03-27--18-35.sql | 2 +- sql-files/upgrades/2013-04-16--01-24.sql | 2 +- sql-files/upgrades/2013-04-16--02-15.sql | 2 +- sql-files/upgrades/2013-10-09--21-38.sql | 2 +- sql-files/upgrades/2013-10-10--16-36.sql | 2 +- sql-files/upgrades/2013-10-27--16-47.sql | 2 +- sql-files/upgrades/2013-10-30--19-53.sql | 2 +- sql-files/upgrades/2013-10-30--21-12.sql | 2 +- sql-files/upgrades/2013-10-31--07-49.sql | 2 +- sql-files/upgrades/2013-11-09--00-03.sql | 2 +- sql-files/upgrades/2013-11-15--00-06.sql | 2 +- sql-files/upgrades/2013-11-15--19-57.sql | 2 +- sql-files/upgrades/2013-11-16--07-49.sql | 2 +- sql-files/upgrades/2013-11-18--08-23.sql | 2 +- sql-files/upgrades/2013-12-24--00-15.sql | 2 +- sql-files/upgrades/2014-01-04--16-47.sql | 2 +- sql-files/upgrades/2014-01-06--17-22.sql | 2 +- sql-files/upgrades/2014-02-19--17-57.sql | 2 +- sql-files/upgrades/2014-03-25--23-57.sql | 2 +- sql-files/upgrades/2014-04-07--22-04.sql | 2 +- sql-files/upgrades/2014-04-26--10-00.sql | 2 +- sql-files/upgrades/2014-05-17--00-06.sql | 2 +- sql-files/upgrades/2014-09-01--16-53.sql | 2 +- sql-files/upgrades/2014-11-03--00-45.sql | 2 +- sql-files/upgrades/2015-07-02--18-14.sql | 2 +- sql-files/upgrades/2015-07-08--13-08.sql | 2 +- sql-files/upgrades/2015-08-27--20-42.sql | 2 +- sql-files/upgrades/2015-12-16--12-57.sql | 2 +- sql-files/upgrades/2015-12-17--15-58.sql | 2 +- sql-files/upgrades/2016-03-10--22-18.sql | 2 +- sql-files/upgrades/2016-07-08--02-42.sql | 2 +- sql-files/upgrades/2016-07-08--02-51.sql | 2 +- sql-files/upgrades/2016-10-03--20-27.sql | 2 +- sql-files/upgrades/2016-10-26--10-29.sql | 2 +- sql-files/upgrades/2017-03-02--11-40.sql | 2 +- sql-files/upgrades/2017-03-15--14-29.sql | 2 +- sql-files/upgrades/2017-06-04--15-04.sql | 2 +- sql-files/upgrades/2017-06-04--15-05.sql | 2 +- sql-files/upgrades/2018-03-10--04-06.sql | 2 +- sql-files/upgrades/2018-06-03--00-10.sql | 2 +- sql-files/upgrades/2018-06-03--17-16.sql | 2 +- sql-files/upgrades/2018-06-05--12-02.sql | 2 +- sql-files/upgrades/2018-07-24--03-23.sql | 2 +- sql-files/upgrades/2018-09-01--05-22.sql | 2 +- sql-files/upgrades/2018-12-14--01-02.sql | 2 +- sql-files/upgrades/2018-12-29--07-51.sql | 2 +- sql-files/upgrades/2019-04-08--21-52.sql | 2 +- sql-files/upgrades/2019-04-25--02-12.sql | 2 +- sql-files/upgrades/2019-05-09--18-07.sql | 2 +- sql-files/upgrades/2019-08-08--19-43.sql | 2 +- sql-files/upgrades/2019-10-05--19-01.sql | 2 +- sql-files/upgrades/2019-10-12--14-21.sql | 2 +- sql-files/upgrades/2019-11-22--23-58.sql | 2 +- sql-files/upgrades/2020-01-24--01-09.sql | 2 +- sql-files/upgrades/2020-03-22--01-56.sql | 2 +- sql-files/upgrades/2020-03-22--03-09.sql | 2 +- sql-files/upgrades/2020-05-01--04-44.sql | 2 +- sql-files/upgrades/2020-05-10--23-11.sql | 2 +- sql-files/upgrades/2020-08-15--13-00.sql | 2 +- sql-files/upgrades/2020-09-12--14-02.sql | 2 +- sql-files/upgrades/2021-02-20--19-57.sql | 2 +- sql-files/upgrades/2021-04-10--15-36.sql | 2 +- sql-files/upgrades/2021-05-03--10-19.sql | 2 +- sql-files/upgrades/2021-10-21--18-49.sql | 2 +- sql-files/upgrades/2022-01-05--19-00.sql | 2 +- sql-files/upgrades/2022-05-21--29-49.sql | 2 +- sql-files/upgrades/2022-10-08--08-35.sql | 2 +- sql-files/upgrades/eAthena-logs-upgrade.sql | 2 +- sql-files/upgrades/eAthena-main-upgrade.sql | 2 +- sql-files/upgrades/rAthena-logs-upgrade.sql | 2 +- sql-files/upgrades/rAthena-main-upgrade.sql | 2 +- src/api/HPMapi.c | 2 +- src/api/HPMapi.h | 2 +- src/api/Makefile.in | 2 +- src/api/aclif.c | 2 +- src/api/aclif.h | 2 +- src/api/aloginif.c | 2 +- src/api/aloginif.h | 2 +- src/api/api.c | 2 +- src/api/api.h | 2 +- src/api/apipackets.h | 2 +- src/api/apisessiondata.h | 2 +- src/api/handlerfunc.h | 2 +- src/api/handlers.c | 2 +- src/api/handlers.h | 2 +- src/api/http_include.h | 2 +- src/api/httphandler.h | 2 +- src/api/httpparsehandler.h | 2 +- src/api/httpparser.c | 2 +- src/api/httpparser.h | 2 +- src/api/httpsender.c | 2 +- src/api/httpsender.h | 2 +- src/api/imageparser.c | 2 +- src/api/imageparser.h | 2 +- src/api/jsonparser.c | 2 +- src/api/jsonparser.h | 2 +- src/api/jsonwriter.c | 2 +- src/api/jsonwriter.h | 2 +- src/api/mimepart.h | 2 +- src/api/postconst.h | 2 +- src/api/postheader.c | 2 +- src/api/postheader.h | 2 +- src/api/urlhandlers.h | 2 +- src/char/HPMchar.c | 2 +- src/char/HPMchar.h | 2 +- src/char/Makefile.in | 2 +- src/char/apipackets.h | 2 +- src/char/capiif.c | 2 +- src/char/capiif.h | 2 +- src/char/char.c | 2 +- src/char/char.h | 2 +- src/char/geoip.c | 2 +- src/char/geoip.h | 2 +- src/char/int_achievement.c | 2 +- src/char/int_achievement.h | 2 +- src/char/int_adventurer_agency.c | 2 +- src/char/int_adventurer_agency.h | 2 +- src/char/int_auction.c | 2 +- src/char/int_auction.h | 2 +- src/char/int_clan.c | 2 +- src/char/int_clan.h | 2 +- src/char/int_elemental.c | 2 +- src/char/int_elemental.h | 2 +- src/char/int_guild.c | 2 +- src/char/int_guild.h | 2 +- src/char/int_homun.c | 2 +- src/char/int_homun.h | 2 +- src/char/int_mail.c | 2 +- src/char/int_mail.h | 2 +- src/char/int_mercenary.c | 2 +- src/char/int_mercenary.h | 2 +- src/char/int_party.c | 2 +- src/char/int_party.h | 2 +- src/char/int_pet.c | 2 +- src/char/int_pet.h | 2 +- src/char/int_quest.c | 2 +- src/char/int_quest.h | 2 +- src/char/int_rodex.c | 2 +- src/char/int_rodex.h | 2 +- src/char/int_storage.c | 2 +- src/char/int_storage.h | 2 +- src/char/int_userconfig.c | 2 +- src/char/int_userconfig.h | 2 +- src/char/inter.c | 2 +- src/char/inter.h | 2 +- src/char/loginif.c | 2 +- src/char/loginif.h | 2 +- src/char/mapif.c | 2 +- src/char/mapif.h | 2 +- src/char/packets_hc_struct.h | 2 +- src/char/pincode.c | 2 +- src/char/pincode.h | 2 +- src/common/HPM.c | 2 +- src/common/HPM.h | 2 +- src/common/HPMi.h | 2 +- src/common/Makefile.in | 2 +- src/common/api.h | 2 +- src/common/apipackets.h | 2 +- src/common/atomic.h | 2 +- src/common/base62.c | 2 +- src/common/base62.h | 2 +- src/common/cbasetypes.h | 2 +- src/common/charloginpackets.h | 2 +- src/common/charmappackets.h | 2 +- src/common/chunked/rfifo.h | 2 +- src/common/chunked/wfifo.h | 2 +- src/common/class.h | 2 +- src/common/class_hidden.h | 2 +- src/common/class_special.h | 2 +- src/common/conf.c | 2 +- src/common/conf.h | 2 +- src/common/config/defc.h | 2 +- src/common/config/defh.h | 2 +- src/common/config/emblems.h | 2 +- src/common/config/undefc.h | 2 +- src/common/config/undefh.h | 2 +- src/common/console.c | 4 ++-- src/common/console.h | 2 +- src/common/core.c | 2 +- src/common/core.h | 2 +- src/common/db.c | 2 +- src/common/db.h | 2 +- src/common/des.c | 2 +- src/common/des.h | 2 +- src/common/ers.c | 2 +- src/common/ers.h | 2 +- src/common/extraconf.c | 2 +- src/common/extraconf.h | 2 +- src/common/grfio.c | 2 +- src/common/grfio.h | 2 +- src/common/hercules.h | 2 +- src/common/mapcharpackets.h | 2 +- src/common/mapindex.c | 2 +- src/common/mapindex.h | 2 +- src/common/md5calc.c | 2 +- src/common/md5calc.h | 2 +- src/common/memmgr.c | 2 +- src/common/memmgr.h | 2 +- src/common/memmgr_inc.h | 2 +- src/common/mmo.h | 2 +- src/common/mutex.c | 2 +- src/common/mutex.h | 2 +- src/common/nullpo.c | 2 +- src/common/nullpo.h | 2 +- src/common/packets.c | 2 +- src/common/packets.h | 2 +- src/common/packets/packets2003_len_main.h | 2 +- src/common/packets/packets2003_len_sak.h | 2 +- src/common/packets/packets2004_len_ad.h | 2 +- src/common/packets/packets2004_len_main.h | 2 +- src/common/packets/packets2004_len_sak.h | 2 +- src/common/packets/packets2005_len_ad.h | 2 +- src/common/packets/packets2005_len_main.h | 2 +- src/common/packets/packets2005_len_sak.h | 2 +- src/common/packets/packets2006_len_ad.h | 2 +- src/common/packets/packets2006_len_main.h | 2 +- src/common/packets/packets2006_len_sak.h | 2 +- src/common/packets/packets2007_len_ad.h | 2 +- src/common/packets/packets2007_len_main.h | 2 +- src/common/packets/packets2007_len_sak.h | 2 +- src/common/packets/packets2008_len_ad.h | 2 +- src/common/packets/packets2008_len_main.h | 2 +- src/common/packets/packets2008_len_re.h | 2 +- src/common/packets/packets2008_len_sak.h | 2 +- src/common/packets/packets2009_len_main.h | 2 +- src/common/packets/packets2009_len_re.h | 2 +- src/common/packets/packets2009_len_sak.h | 2 +- src/common/packets/packets2010_len_main.h | 2 +- src/common/packets/packets2010_len_re.h | 2 +- src/common/packets/packets2011_len_main.h | 2 +- src/common/packets/packets2011_len_re.h | 2 +- src/common/packets/packets2012_len_main.h | 2 +- src/common/packets/packets2012_len_re.h | 2 +- src/common/packets/packets2013_len_main.h | 2 +- src/common/packets/packets2013_len_re.h | 2 +- src/common/packets/packets2014_len_main.h | 2 +- src/common/packets/packets2014_len_re.h | 2 +- src/common/packets/packets2015_len_main.h | 2 +- src/common/packets/packets2015_len_re.h | 2 +- src/common/packets/packets2016_len_main.h | 2 +- src/common/packets/packets2016_len_re.h | 2 +- src/common/packets/packets2017_len_main.h | 2 +- src/common/packets/packets2017_len_re.h | 2 +- src/common/packets/packets2017_len_zero.h | 2 +- src/common/packets/packets2018_len_main.h | 2 +- src/common/packets/packets2018_len_re.h | 2 +- src/common/packets/packets2018_len_zero.h | 2 +- src/common/packets/packets2019_len_main.h | 2 +- src/common/packets/packets2019_len_re.h | 2 +- src/common/packets/packets2019_len_zero.h | 2 +- src/common/packets/packets2020_len_main.h | 2 +- src/common/packets/packets2020_len_re.h | 2 +- src/common/packets/packets2020_len_zero.h | 2 +- src/common/packets/packets2021_len_main.h | 2 +- src/common/packets/packets2021_len_re.h | 2 +- src/common/packets/packets2021_len_zero.h | 2 +- src/common/packets/packets2022_len_main.h | 2 +- src/common/packets/packets2022_len_zero.h | 2 +- src/common/packets/packets_len_ad.h | 2 +- src/common/packets/packets_len_main.h | 2 +- src/common/packets/packets_len_re.h | 2 +- src/common/packets/packets_len_sak.h | 2 +- src/common/packets/packets_len_zero.h | 2 +- src/common/packets_chrif_len.h | 2 +- src/common/packets_inter_len.h | 2 +- src/common/packets_intif_len.h | 2 +- src/common/packets_len.h | 2 +- src/common/packets_struct.h | 2 +- src/common/packetsmacro.h | 2 +- src/common/packetsstatic_len.h | 2 +- src/common/random.c | 2 +- src/common/random.h | 2 +- src/common/showmsg.c | 2 +- src/common/showmsg.h | 2 +- src/common/socket.c | 2 +- src/common/socket.h | 2 +- src/common/spinlock.h | 2 +- src/common/sql.c | 2 +- src/common/sql.h | 2 +- src/common/strlib.c | 2 +- src/common/strlib.h | 2 +- src/common/sysinfo.c | 2 +- src/common/sysinfo.h | 2 +- src/common/thread.c | 2 +- src/common/thread.h | 2 +- src/common/timer.c | 2 +- src/common/timer.h | 2 +- src/common/utils.c | 2 +- src/common/utils.h | 2 +- src/common/winapi.h | 2 +- src/config/classes/general.h | 2 +- src/config/const.h | 2 +- src/config/core.h | 2 +- src/config/renewal.h | 2 +- src/config/secure.h | 2 +- src/login/HPMlogin.c | 2 +- src/login/HPMlogin.h | 2 +- src/login/Makefile.in | 2 +- src/login/account.c | 2 +- src/login/account.h | 2 +- src/login/apipackets.h | 2 +- src/login/ipban.c | 2 +- src/login/ipban.h | 2 +- src/login/lapiif.c | 2 +- src/login/lapiif.h | 2 +- src/login/lclif.c | 2 +- src/login/lclif.h | 2 +- src/login/lclif.p.h | 2 +- src/login/login.c | 2 +- src/login/login.h | 2 +- src/login/loginlog.c | 2 +- src/login/loginlog.h | 2 +- src/login/packets_ac_struct.h | 2 +- src/login/packets_ca_struct.h | 2 +- src/map/HPMmap.c | 2 +- src/map/HPMmap.h | 2 +- src/map/Makefile.in | 2 +- src/map/achievement.c | 2 +- src/map/achievement.h | 2 +- src/map/apipackets.h | 2 +- src/map/atcommand.c | 2 +- src/map/atcommand.h | 2 +- src/map/battle.c | 2 +- src/map/battle.h | 2 +- src/map/battleground.c | 2 +- src/map/battleground.h | 2 +- src/map/buyingstore.c | 2 +- src/map/buyingstore.h | 2 +- src/map/channel.c | 2 +- src/map/channel.h | 2 +- src/map/chat.c | 2 +- src/map/chat.h | 2 +- src/map/chrif.c | 2 +- src/map/chrif.h | 2 +- src/map/clan.c | 2 +- src/map/clan.h | 2 +- src/map/clif.c | 2 +- src/map/clif.h | 2 +- src/map/date.c | 2 +- src/map/date.h | 2 +- src/map/duel.c | 2 +- src/map/duel.h | 2 +- src/map/elemental.c | 2 +- src/map/elemental.h | 2 +- src/map/enchantui.c | 2 +- src/map/enchantui.h | 2 +- src/map/goldpc.c | 2 +- src/map/goldpc.h | 2 +- src/map/grader.c | 2 +- src/map/grader.h | 2 +- src/map/guild.c | 2 +- src/map/guild.h | 2 +- src/map/homunculus.c | 2 +- src/map/homunculus.h | 2 +- src/map/instance.c | 2 +- src/map/instance.h | 2 +- src/map/intif.c | 2 +- src/map/intif.h | 2 +- src/map/irc-bot.c | 2 +- src/map/irc-bot.h | 2 +- src/map/itemdb.c | 2 +- src/map/itemdb.h | 2 +- src/map/log.c | 2 +- src/map/log.h | 2 +- src/map/macro.c | 2 +- src/map/macro.h | 2 +- src/map/mail.c | 2 +- src/map/mail.h | 2 +- src/map/map.c | 2 +- src/map/map.h | 2 +- src/map/mapdefines.h | 2 +- src/map/mapiif.c | 2 +- src/map/mapiif.h | 2 +- src/map/mapreg.h | 2 +- src/map/mapreg_sql.c | 2 +- src/map/mercenary.c | 2 +- src/map/mercenary.h | 2 +- src/map/messages.h | 2 +- src/map/messages_ad.h | 2 +- src/map/messages_main.h | 2 +- src/map/messages_re.h | 2 +- src/map/messages_sak.h | 2 +- src/map/messages_zero.h | 2 +- src/map/mob.c | 2 +- src/map/mob.h | 2 +- src/map/npc.c | 2 +- src/map/npc.h | 2 +- src/map/npc_chat.c | 2 +- src/map/packets.h | 2 +- src/map/packets_keys_main.h | 2 +- src/map/packets_keys_zero.h | 2 +- src/map/packets_shuffle_main.h | 2 +- src/map/packets_shuffle_re.h | 2 +- src/map/packets_shuffle_zero.h | 2 +- src/map/packets_struct.h | 2 +- src/map/party.c | 2 +- src/map/party.h | 2 +- src/map/path.c | 2 +- src/map/path.h | 2 +- src/map/pc.c | 2 +- src/map/pc.h | 2 +- src/map/pc_groups.c | 2 +- src/map/pc_groups.h | 2 +- src/map/pet.c | 2 +- src/map/pet.h | 2 +- src/map/quest.c | 2 +- src/map/quest.h | 2 +- src/map/refine.c | 2 +- src/map/refine.h | 2 +- src/map/refine.p.h | 2 +- src/map/rodex.c | 2 +- src/map/rodex.h | 2 +- src/map/script.c | 2 +- src/map/script.h | 2 +- src/map/searchstore.c | 2 +- src/map/searchstore.h | 2 +- src/map/skill.c | 2 +- src/map/skill.h | 2 +- src/map/status.c | 2 +- src/map/status.h | 2 +- src/map/storage.c | 2 +- src/map/storage.h | 2 +- src/map/stylist.c | 2 +- src/map/stylist.h | 2 +- src/map/trade.c | 2 +- src/map/trade.h | 2 +- src/map/unit.c | 2 +- src/map/unit.h | 2 +- src/map/unitdefines.h | 2 +- src/map/vending.c | 2 +- src/map/vending.h | 2 +- src/plugins/HPMHooking.c | 2 +- src/plugins/HPMHooking.h | 2 +- src/plugins/Makefile.in | 2 +- src/plugins/constdb2doc.c | 2 +- src/plugins/db2sql.c | 2 +- src/plugins/dbghelpplug.c | 2 +- src/plugins/generate-translations.c | 2 +- src/plugins/httpsample.c | 2 +- src/plugins/mapcache.c | 2 +- src/plugins/sample.c | 2 +- src/plugins/script_mapquit.c | 2 +- src/test/Makefile.in | 2 +- src/test/test_base62.c | 2 +- src/test/test_chunked.c | 2 +- src/test/test_libconfig.c | 2 +- src/test/test_spinlock.c | 2 +- sysinfogen.sh | 2 +- tools/HPMHookGen/HPMDataCheckGen.pl | 2 +- tools/HPMHookGen/HPMHookGen.pl | 2 +- tools/HPMHookGen/Makefile.in | 2 +- tools/HPMHookGen/preprocess.py | 2 +- tools/Script-Checker.applescript | 2 +- tools/attr_fix_converter.php | 4 ++-- tools/check-doc | 2 +- tools/checksql.py | 2 +- tools/ci/retry.sh | 2 +- tools/ci/travis.sh | 2 +- tools/ci/windows.ps1 | 2 +- tools/configconverter.pl | 2 +- tools/constdbconverter.pl | 2 +- tools/doxygen/Makefile.in | 2 +- tools/homundbconverter.py | 2 +- tools/item_merge.lua | 2 +- tools/itemcombodbconverter.py | 4 ++-- tools/itemdb_jobmask_converter.pl | 2 +- tools/itemdbconverter.pl | 2 +- tools/mobavailconverter.py | 2 +- tools/mobdbconvall.sh | 2 +- tools/mobdbconverter.py | 2 +- tools/mobgroupconverter.py | 2 +- tools/mobskilldbconverter.py | 2 +- tools/petdbconverter.py | 2 +- tools/petevolutionconverter.py | 4 ++-- tools/questdbconverter.pl | 2 +- tools/scconfigconverter.py | 4 ++-- tools/skilldbconverter.php | 6 +++--- tools/utils/common.py | 2 +- tools/utils/libconf.py | 2 +- tools/validateinterfaces.py | 2 +- 1517 files changed, 1524 insertions(+), 1524 deletions(-) diff --git a/3rdparty/cJSON/Makefile.in b/3rdparty/cJSON/Makefile.in index 631245b52..921b97201 100644 --- a/3rdparty/cJSON/Makefile.in +++ b/3rdparty/cJSON/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/http-parser/Makefile.in b/3rdparty/http-parser/Makefile.in index 42d79bbe4..3724fc627 100644 --- a/3rdparty/http-parser/Makefile.in +++ b/3rdparty/http-parser/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/libbacktrace/Makefile.in b/3rdparty/libbacktrace/Makefile.in index ab2f28930..ebf769e16 100644 --- a/3rdparty/libbacktrace/Makefile.in +++ b/3rdparty/libbacktrace/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/libconfig/Makefile.in b/3rdparty/libconfig/Makefile.in index ee5d0c8b3..58f5ccfc4 100644 --- a/3rdparty/libconfig/Makefile.in +++ b/3rdparty/libconfig/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/libconfig/extra/gen/grammar.y b/3rdparty/libconfig/extra/gen/grammar.y index bb399ce03..84834d988 100644 --- a/3rdparty/libconfig/extra/gen/grammar.y +++ b/3rdparty/libconfig/extra/gen/grammar.y @@ -1,7 +1,7 @@ /* -*- mode: C -*- */ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/extra/gen/scanner.l b/3rdparty/libconfig/extra/gen/scanner.l index 99c8e87cb..7c7e0a888 100644 --- a/3rdparty/libconfig/extra/gen/scanner.l +++ b/3rdparty/libconfig/extra/gen/scanner.l @@ -1,7 +1,7 @@ /* -*- mode: C -*- */ /* -------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/libconfig.c b/3rdparty/libconfig/libconfig.c index 1c93ae015..c86682c30 100644 --- a/3rdparty/libconfig/libconfig.c +++ b/3rdparty/libconfig/libconfig.c @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/libconfig.h b/3rdparty/libconfig/libconfig.h index f3eed32a2..9c3eff1f9 100644 --- a/3rdparty/libconfig/libconfig.h +++ b/3rdparty/libconfig/libconfig.h @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/parsectx.h b/3rdparty/libconfig/parsectx.h index e27f67d79..c0ad743b2 100644 --- a/3rdparty/libconfig/parsectx.h +++ b/3rdparty/libconfig/parsectx.h @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/scanctx.c b/3rdparty/libconfig/scanctx.c index ef3fc47ec..f2da52287 100644 --- a/3rdparty/libconfig/scanctx.c +++ b/3rdparty/libconfig/scanctx.c @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/scanctx.h b/3rdparty/libconfig/scanctx.h index a42b607bd..a6c969ad6 100644 --- a/3rdparty/libconfig/scanctx.h +++ b/3rdparty/libconfig/scanctx.h @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/scanner.c b/3rdparty/libconfig/scanner.c index 5c6a73cf3..89be54693 100644 --- a/3rdparty/libconfig/scanner.c +++ b/3rdparty/libconfig/scanner.c @@ -805,7 +805,7 @@ static const flex_int32_t yy_rule_can_match_eol[50] = /* -*- mode: C -*- */ /* -------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/strbuf.c b/3rdparty/libconfig/strbuf.c index f842ad7ad..24af38d9f 100644 --- a/3rdparty/libconfig/strbuf.c +++ b/3rdparty/libconfig/strbuf.c @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/strbuf.h b/3rdparty/libconfig/strbuf.h index 65d435cac..de7d5a23b 100644 --- a/3rdparty/libconfig/strbuf.h +++ b/3rdparty/libconfig/strbuf.h @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libconfig/wincompat.h b/3rdparty/libconfig/wincompat.h index 99b9234b1..53bbb7612 100644 --- a/3rdparty/libconfig/wincompat.h +++ b/3rdparty/libconfig/wincompat.h @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- libconfig - A library for processing structured configuration files - Copyright (C) 2013-2024 Hercules Dev Team + Copyright (C) 2013-2025 Hercules Dev Team Copyright (C) 2005-2014 Mark A Lindner This file is part of libconfig. diff --git a/3rdparty/libgif/Makefile.in b/3rdparty/libgif/Makefile.in index 436a82476..da8fa64ec 100644 --- a/3rdparty/libgif/Makefile.in +++ b/3rdparty/libgif/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/llhttp/Makefile.in b/3rdparty/llhttp/Makefile.in index 27ae58a11..118bd73b3 100644 --- a/3rdparty/llhttp/Makefile.in +++ b/3rdparty/llhttp/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/mt19937ar/Makefile.in b/3rdparty/mt19937ar/Makefile.in index 9740563aa..830d47368 100644 --- a/3rdparty/mt19937ar/Makefile.in +++ b/3rdparty/mt19937ar/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/3rdparty/multipart-parser/Makefile.in b/3rdparty/multipart-parser/Makefile.in index 264a0aa0f..2441df882 100644 --- a/3rdparty/multipart-parser/Makefile.in +++ b/3rdparty/multipart-parser/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/Makefile.in b/Makefile.in index 4d6eab106..588f1367c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/conf/api/api-server.conf b/conf/api/api-server.conf index 03d632d19..79b756fc4 100644 --- a/conf/api/api-server.conf +++ b/conf/api/api-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/char/char-server.conf b/conf/char/char-server.conf index 16f511159..9184552e4 100644 --- a/conf/char/char-server.conf +++ b/conf/char/char-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/clans.conf b/conf/clans.conf index cc2b44d48..0e328130c 100644 --- a/conf/clans.conf +++ b/conf/clans.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 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 diff --git a/conf/common/emblems.conf b/conf/common/emblems.conf index a2c26b84e..e0f06527e 100644 --- a/conf/common/emblems.conf +++ b/conf/common/emblems.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/common/inter-server.conf b/conf/common/inter-server.conf index 8ec3f9437..d63b68872 100644 --- a/conf/common/inter-server.conf +++ b/conf/common/inter-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/common/map-index.conf b/conf/common/map-index.conf index 809561fea..a225e2017 100644 --- a/conf/common/map-index.conf +++ b/conf/common/map-index.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/common/socket.conf b/conf/common/socket.conf index 933e5188f..f105428d4 100644 --- a/conf/common/socket.conf +++ b/conf/common/socket.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/emotes.conf b/conf/emotes.conf index 9ceca2a63..841c48a9c 100644 --- a/conf/emotes.conf +++ b/conf/emotes.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/global/console.conf b/conf/global/console.conf index 16565e54e..fdcbee6de 100644 --- a/conf/global/console.conf +++ b/conf/global/console.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/global/sql_connection.conf b/conf/global/sql_connection.conf index 50dac77ca..97758d1b8 100644 --- a/conf/global/sql_connection.conf +++ b/conf/global/sql_connection.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/api-server.conf b/conf/import-tmpl/api-server.conf index 39bfc33b3..538ea88a0 100644 --- a/conf/import-tmpl/api-server.conf +++ b/conf/import-tmpl/api-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/battle.conf b/conf/import-tmpl/battle.conf index 74d51f306..745b079ad 100644 --- a/conf/import-tmpl/battle.conf +++ b/conf/import-tmpl/battle.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/char-server.conf b/conf/import-tmpl/char-server.conf index c535c2026..cd05f818b 100644 --- a/conf/import-tmpl/char-server.conf +++ b/conf/import-tmpl/char-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/emblems.conf b/conf/import-tmpl/emblems.conf index 287a3b9f9..d6dc9b316 100644 --- a/conf/import-tmpl/emblems.conf +++ b/conf/import-tmpl/emblems.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/inter-server.conf b/conf/import-tmpl/inter-server.conf index 5fb7a4974..5e8102d5f 100644 --- a/conf/import-tmpl/inter-server.conf +++ b/conf/import-tmpl/inter-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/login-server.conf b/conf/import-tmpl/login-server.conf index 48255e1c9..b0eeed316 100644 --- a/conf/import-tmpl/login-server.conf +++ b/conf/import-tmpl/login-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/logs.conf b/conf/import-tmpl/logs.conf index f5a1d464d..13b29fb9d 100644 --- a/conf/import-tmpl/logs.conf +++ b/conf/import-tmpl/logs.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/map-server.conf b/conf/import-tmpl/map-server.conf index 9dee145f0..27aacd174 100644 --- a/conf/import-tmpl/map-server.conf +++ b/conf/import-tmpl/map-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/script.conf b/conf/import-tmpl/script.conf index 51ef2ff55..6fae44b12 100644 --- a/conf/import-tmpl/script.conf +++ b/conf/import-tmpl/script.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/import-tmpl/socket.conf b/conf/import-tmpl/socket.conf index 44ded731e..2dea7f5d5 100644 --- a/conf/import-tmpl/socket.conf +++ b/conf/import-tmpl/socket.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/login/login-server.conf b/conf/login/login-server.conf index 3d8ca6862..f2e7a5b3a 100644 --- a/conf/login/login-server.conf +++ b/conf/login/login-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle.conf b/conf/map/battle.conf index 404488af6..c72c26a4e 100644 --- a/conf/map/battle.conf +++ b/conf/map/battle.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/battle.conf b/conf/map/battle/battle.conf index 5a6996090..f330fefbf 100644 --- a/conf/map/battle/battle.conf +++ b/conf/map/battle/battle.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/battleground.conf b/conf/map/battle/battleground.conf index 49595140b..9f75a5342 100644 --- a/conf/map/battle/battleground.conf +++ b/conf/map/battle/battleground.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/client.conf b/conf/map/battle/client.conf index 747fa225a..30d6b313d 100644 --- a/conf/map/battle/client.conf +++ b/conf/map/battle/client.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/drops.conf b/conf/map/battle/drops.conf index 19de41031..775992485 100644 --- a/conf/map/battle/drops.conf +++ b/conf/map/battle/drops.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/elemental.conf b/conf/map/battle/elemental.conf index 677b5c889..b4cabc26f 100644 --- a/conf/map/battle/elemental.conf +++ b/conf/map/battle/elemental.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/exp.conf b/conf/map/battle/exp.conf index 1e80174af..174381a37 100644 --- a/conf/map/battle/exp.conf +++ b/conf/map/battle/exp.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/feature.conf b/conf/map/battle/feature.conf index 3a7fdd529..7fa908057 100644 --- a/conf/map/battle/feature.conf +++ b/conf/map/battle/feature.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/gm.conf b/conf/map/battle/gm.conf index f2967e92a..1a9febf47 100644 --- a/conf/map/battle/gm.conf +++ b/conf/map/battle/gm.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/guild.conf b/conf/map/battle/guild.conf index a8d992630..17a573fd0 100644 --- a/conf/map/battle/guild.conf +++ b/conf/map/battle/guild.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/homunc.conf b/conf/map/battle/homunc.conf index 2e819ca67..a504a9ec7 100644 --- a/conf/map/battle/homunc.conf +++ b/conf/map/battle/homunc.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/items.conf b/conf/map/battle/items.conf index bd3fd6342..d5a87dbf0 100644 --- a/conf/map/battle/items.conf +++ b/conf/map/battle/items.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/limits.conf b/conf/map/battle/limits.conf index 60b6b3511..610daf923 100644 --- a/conf/map/battle/limits.conf +++ b/conf/map/battle/limits.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/mercenary.conf b/conf/map/battle/mercenary.conf index 4339effc3..e9688193e 100644 --- a/conf/map/battle/mercenary.conf +++ b/conf/map/battle/mercenary.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/misc.conf b/conf/map/battle/misc.conf index 5e72b027d..b30e1858c 100644 --- a/conf/map/battle/misc.conf +++ b/conf/map/battle/misc.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/monster.conf b/conf/map/battle/monster.conf index 62cbbf669..8e18cca6c 100644 --- a/conf/map/battle/monster.conf +++ b/conf/map/battle/monster.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/party.conf b/conf/map/battle/party.conf index bc094773c..1c9900b3a 100644 --- a/conf/map/battle/party.conf +++ b/conf/map/battle/party.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/pet.conf b/conf/map/battle/pet.conf index ff25800d2..a74fffa59 100644 --- a/conf/map/battle/pet.conf +++ b/conf/map/battle/pet.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/player.conf b/conf/map/battle/player.conf index ebd28ed60..348c659d6 100644 --- a/conf/map/battle/player.conf +++ b/conf/map/battle/player.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/roulette.conf b/conf/map/battle/roulette.conf index 7e396893f..415c17cf6 100644 --- a/conf/map/battle/roulette.conf +++ b/conf/map/battle/roulette.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/skill.conf b/conf/map/battle/skill.conf index b48ce8b35..e2a31fece 100644 --- a/conf/map/battle/skill.conf +++ b/conf/map/battle/skill.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/battle/status.conf b/conf/map/battle/status.conf index 1dd421a42..6b877e4f4 100644 --- a/conf/map/battle/status.conf +++ b/conf/map/battle/status.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/logs.conf b/conf/map/logs.conf index 3d1d9e6b9..5df4cc32f 100644 --- a/conf/map/logs.conf +++ b/conf/map/logs.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/map-server.conf b/conf/map/map-server.conf index 8d58183ba..e07e40289 100644 --- a/conf/map/map-server.conf +++ b/conf/map/map-server.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/maps.conf b/conf/map/maps.conf index fe588aabd..16228ea1c 100644 --- a/conf/map/maps.conf +++ b/conf/map/maps.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/conf/map/script.conf b/conf/map/script.conf index eb71b630a..38f2b743b 100644 --- a/conf/map/script.conf +++ b/conf/map/script.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/configure.ac b/configure.ac index c67777e95..6e1e70e75 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/db/achievement_rank_db.conf b/db/achievement_rank_db.conf index 54ee0c6b1..feb06a97e 100644 --- a/db/achievement_rank_db.conf +++ b/db/achievement_rank_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/attendance_db.conf b/db/attendance_db.conf index 84d45a225..c6ad940fc 100644 --- a/db/attendance_db.conf +++ b/db/attendance_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) 2018 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/captcha_db.conf b/db/captcha_db.conf index 7b1e82188..264bcc73a 100644 --- a/db/captcha_db.conf +++ b/db/captcha_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/cashshop_db.conf b/db/cashshop_db.conf index a29e90b06..466587005 100644 --- a/db/cashshop_db.conf +++ b/db/cashshop_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/castle_db.conf b/db/castle_db.conf index f036c92fc..93cbcf2b8 100644 --- a/db/castle_db.conf +++ b/db/castle_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 Hercules Dev Team //= Copyright (C) 2019 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/clans.conf b/db/clans.conf index 519352174..f02f03233 100644 --- a/db/clans.conf +++ b/db/clans.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 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 diff --git a/db/constants.conf b/db/constants.conf index eb16c1bbf..e53f482d2 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 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 diff --git a/db/goldpc_db.conf b/db/goldpc_db.conf index c20301022..7ded113e2 100644 --- a/db/goldpc_db.conf +++ b/db/goldpc_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 Hercules Dev Team //= Copyright (C) 2023 KirieZ //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/homunculus_db2.conf b/db/homunculus_db2.conf index 23fe8fdd4..0c71acfc6 100644 --- a/db/homunculus_db2.conf +++ b/db/homunculus_db2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/item_db2.conf b/db/item_db2.conf index 02b5119a6..f56465f8d 100644 --- a/db/item_db2.conf +++ b/db/item_db2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/db/item_options.conf b/db/item_options.conf index 9eebbb9e2..330949e97 100644 --- a/db/item_options.conf +++ b/db/item_options.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 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 diff --git a/db/mob_db2.conf b/db/mob_db2.conf index ed6c2ef30..3b79d5a33 100644 --- a/db/mob_db2.conf +++ b/db/mob_db2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/mob_group2.conf b/db/mob_group2.conf index 41c7e9118..8fd35e40d 100644 --- a/db/mob_group2.conf +++ b/db/mob_group2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 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 diff --git a/db/mob_skill_db2.conf b/db/mob_skill_db2.conf index 3214878c7..e5e13db00 100644 --- a/db/mob_skill_db2.conf +++ b/db/mob_skill_db2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/option_drop_groups.conf b/db/option_drop_groups.conf index 7354411d0..3e2d9ecc3 100644 --- a/db/option_drop_groups.conf +++ b/db/option_drop_groups.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/pet_db2.conf b/db/pet_db2.conf index d1fb74aac..43e8a5ab8 100644 --- a/db/pet_db2.conf +++ b/db/pet_db2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/pre-re/achievement_db.conf b/db/pre-re/achievement_db.conf index c86384be5..427d20ab1 100644 --- a/db/pre-re/achievement_db.conf +++ b/db/pre-re/achievement_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/pre-re/attr_fix.conf b/db/pre-re/attr_fix.conf index 0deaf45ca..29c2c143e 100644 --- a/db/pre-re/attr_fix.conf +++ b/db/pre-re/attr_fix.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/pre-re/autospell_db.conf b/db/pre-re/autospell_db.conf index 05d3b4377..b6c9ca1a7 100644 --- a/db/pre-re/autospell_db.conf +++ b/db/pre-re/autospell_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 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 diff --git a/db/pre-re/enchant_db.conf b/db/pre-re/enchant_db.conf index 63c6b4482..5fd45781c 100644 --- a/db/pre-re/enchant_db.conf +++ b/db/pre-re/enchant_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021-2022 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/exp_group_db.conf b/db/pre-re/exp_group_db.conf index f2e4fdad4..79840298e 100644 --- a/db/pre-re/exp_group_db.conf +++ b/db/pre-re/exp_group_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/pre-re/grade_db.conf b/db/pre-re/grade_db.conf index 80fbbde85..ba5e7faf1 100644 --- a/db/pre-re/grade_db.conf +++ b/db/pre-re/grade_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/homunculus_db.conf b/db/pre-re/homunculus_db.conf index 403dd8134..790d5733d 100644 --- a/db/pre-re/homunculus_db.conf +++ b/db/pre-re/homunculus_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/pre-re/item_chain.conf b/db/pre-re/item_chain.conf index 8dbbea28e..d1b0d23e9 100644 --- a/db/pre-re/item_chain.conf +++ b/db/pre-re/item_chain.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/pre-re/item_combo_db.conf b/db/pre-re/item_combo_db.conf index 04480e401..4324a59d6 100644 --- a/db/pre-re/item_combo_db.conf +++ b/db/pre-re/item_combo_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index 7e1cf2a60..afa65b20b 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/db/pre-re/item_group.conf b/db/pre-re/item_group.conf index 11dc01dca..2e032b014 100644 --- a/db/pre-re/item_group.conf +++ b/db/pre-re/item_group.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/pre-re/item_lapineddukddak.conf b/db/pre-re/item_lapineddukddak.conf index bd6a5916f..47b7b3ccc 100644 --- a/db/pre-re/item_lapineddukddak.conf +++ b/db/pre-re/item_lapineddukddak.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) 2018-2019 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/item_lapineupgrade.conf b/db/pre-re/item_lapineupgrade.conf index 7c2014e4d..44e2e1213 100644 --- a/db/pre-re/item_lapineupgrade.conf +++ b/db/pre-re/item_lapineupgrade.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2020 Ragnarok: Project Zero //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/item_packages.conf b/db/pre-re/item_packages.conf index cad726648..a44391c9e 100644 --- a/db/pre-re/item_packages.conf +++ b/db/pre-re/item_packages.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/pre-re/item_reform_info.conf b/db/pre-re/item_reform_info.conf index d33618b68..68e23662d 100644 --- a/db/pre-re/item_reform_info.conf +++ b/db/pre-re/item_reform_info.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021-2022 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/item_reform_list.conf b/db/pre-re/item_reform_list.conf index 81e8e05f8..8c5a08012 100644 --- a/db/pre-re/item_reform_list.conf +++ b/db/pre-re/item_reform_list.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021-2022 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/job_db.conf b/db/pre-re/job_db.conf index faf5b07eb..b65b597e5 100644 --- a/db/pre-re/job_db.conf +++ b/db/pre-re/job_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/pre-re/map_zone_db.conf b/db/pre-re/map_zone_db.conf index 4e863962c..939bea2bf 100644 --- a/db/pre-re/map_zone_db.conf +++ b/db/pre-re/map_zone_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) 2013 Ind //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/pre-re/mob_db.conf b/db/pre-re/mob_db.conf index 8dbb7e019..2a860bd51 100644 --- a/db/pre-re/mob_db.conf +++ b/db/pre-re/mob_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/pre-re/mob_group.conf b/db/pre-re/mob_group.conf index bc3389446..ede37d5a6 100644 --- a/db/pre-re/mob_group.conf +++ b/db/pre-re/mob_group.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 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 diff --git a/db/pre-re/mob_skill_db.conf b/db/pre-re/mob_skill_db.conf index 082708e0a..d4a7d6f2c 100644 --- a/db/pre-re/mob_skill_db.conf +++ b/db/pre-re/mob_skill_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/pre-re/pet_db.conf b/db/pre-re/pet_db.conf index b38c60d6d..0474ee33a 100644 --- a/db/pre-re/pet_db.conf +++ b/db/pre-re/pet_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/pre-re/refine_db.conf b/db/pre-re/refine_db.conf index 8fb0182c1..42174219c 100644 --- a/db/pre-re/refine_db.conf +++ b/db/pre-re/refine_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/pre-re/sc_config.conf b/db/pre-re/sc_config.conf index d0a3d39bd..70f305922 100644 --- a/db/pre-re/sc_config.conf +++ b/db/pre-re/sc_config.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/pre-re/skill_db.conf b/db/pre-re/skill_db.conf index b1f0707d8..89ad8d68f 100644 --- a/db/pre-re/skill_db.conf +++ b/db/pre-re/skill_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/db/pre-re/skill_tree.conf b/db/pre-re/skill_tree.conf index d8396b684..029e11cd1 100644 --- a/db/pre-re/skill_tree.conf +++ b/db/pre-re/skill_tree.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/pre-re/unit_parameters_db.conf b/db/pre-re/unit_parameters_db.conf index 4f290141b..bf668b0eb 100644 --- a/db/pre-re/unit_parameters_db.conf +++ b/db/pre-re/unit_parameters_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 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 diff --git a/db/quest_db.conf b/db/quest_db.conf index 26b0c05fc..ed5c2ee9e 100644 --- a/db/quest_db.conf +++ b/db/quest_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/re/achievement_db.conf b/db/re/achievement_db.conf index c0f8d9f6e..fc119d9f9 100644 --- a/db/re/achievement_db.conf +++ b/db/re/achievement_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/re/attr_fix.conf b/db/re/attr_fix.conf index a95aa95db..0b6ae96f6 100644 --- a/db/re/attr_fix.conf +++ b/db/re/attr_fix.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/re/autospell_db.conf b/db/re/autospell_db.conf index 05d3b4377..b6c9ca1a7 100644 --- a/db/re/autospell_db.conf +++ b/db/re/autospell_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 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 diff --git a/db/re/enchant_db.conf b/db/re/enchant_db.conf index 42b982a18..ceb3eb5f3 100644 --- a/db/re/enchant_db.conf +++ b/db/re/enchant_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021-2022 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/exp_group_db.conf b/db/re/exp_group_db.conf index 7163898b6..ed3f7c61a 100644 --- a/db/re/exp_group_db.conf +++ b/db/re/exp_group_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/re/grade_db.conf b/db/re/grade_db.conf index 80fbbde85..ba5e7faf1 100644 --- a/db/re/grade_db.conf +++ b/db/re/grade_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/homunculus_db.conf b/db/re/homunculus_db.conf index fd5c31c8b..b4e97e7de 100644 --- a/db/re/homunculus_db.conf +++ b/db/re/homunculus_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/re/item_chain.conf b/db/re/item_chain.conf index 8dbbea28e..d1b0d23e9 100644 --- a/db/re/item_chain.conf +++ b/db/re/item_chain.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/re/item_combo_db.conf b/db/re/item_combo_db.conf index 58cbca8bc..393d5da31 100644 --- a/db/re/item_combo_db.conf +++ b/db/re/item_combo_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 626d2e1e5..56304cd52 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/db/re/item_group.conf b/db/re/item_group.conf index f16d4cfe1..d6fdae3be 100644 --- a/db/re/item_group.conf +++ b/db/re/item_group.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/re/item_lapineddukddak.conf b/db/re/item_lapineddukddak.conf index f50ac433b..4b0eca8d4 100644 --- a/db/re/item_lapineddukddak.conf +++ b/db/re/item_lapineddukddak.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) 2018-2019 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/item_lapineupgrade.conf b/db/re/item_lapineupgrade.conf index 94806bdfd..d8344127a 100644 --- a/db/re/item_lapineupgrade.conf +++ b/db/re/item_lapineupgrade.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2020 Ragnarok: Project Zero //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/item_packages.conf b/db/re/item_packages.conf index 68c49eb08..830566153 100644 --- a/db/re/item_packages.conf +++ b/db/re/item_packages.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/re/item_reform_info.conf b/db/re/item_reform_info.conf index 555755ed8..3582cc2aa 100644 --- a/db/re/item_reform_info.conf +++ b/db/re/item_reform_info.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021-2022 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/item_reform_list.conf b/db/re/item_reform_list.conf index edef43bc2..12c62b561 100644 --- a/db/re/item_reform_list.conf +++ b/db/re/item_reform_list.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021-2022 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/job_db.conf b/db/re/job_db.conf index 35409acf3..1ce89c229 100644 --- a/db/re/job_db.conf +++ b/db/re/job_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/re/map_zone_db.conf b/db/re/map_zone_db.conf index c5191de61..becba8027 100644 --- a/db/re/map_zone_db.conf +++ b/db/re/map_zone_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) 2013 Ind //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 5be0706b9..6c878b0d4 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/re/mob_group.conf b/db/re/mob_group.conf index ee56d3e0d..5c6a6bdfa 100644 --- a/db/re/mob_group.conf +++ b/db/re/mob_group.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 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 diff --git a/db/re/mob_skill_db.conf b/db/re/mob_skill_db.conf index dd47cee36..194c0a32c 100644 --- a/db/re/mob_skill_db.conf +++ b/db/re/mob_skill_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/re/pet_db.conf b/db/re/pet_db.conf index 2bfd38cfe..0038b05fd 100644 --- a/db/re/pet_db.conf +++ b/db/re/pet_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/db/re/refine_db.conf b/db/re/refine_db.conf index f56febdde..3ce53b39c 100644 --- a/db/re/refine_db.conf +++ b/db/re/refine_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db/re/sc_config.conf b/db/re/sc_config.conf index 2f760d38f..20e1195f8 100644 --- a/db/re/sc_config.conf +++ b/db/re/sc_config.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/db/re/skill_db.conf b/db/re/skill_db.conf index 1c6424691..7a3fddc16 100644 --- a/db/re/skill_db.conf +++ b/db/re/skill_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/db/re/skill_tree.conf b/db/re/skill_tree.conf index 890285803..97bc8e71b 100644 --- a/db/re/skill_tree.conf +++ b/db/re/skill_tree.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/db/re/unit_parameters_db.conf b/db/re/unit_parameters_db.conf index 66ca409ae..bae80a09c 100644 --- a/db/re/unit_parameters_db.conf +++ b/db/re/unit_parameters_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 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 diff --git a/db/roulette_db.conf b/db/roulette_db.conf index 642181be2..b61d9e0c0 100644 --- a/db/roulette_db.conf +++ b/db/roulette_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/db/skill_db2.conf b/db/skill_db2.conf index 231f1e287..189804ac6 100644 --- a/db/skill_db2.conf +++ b/db/skill_db2.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 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 diff --git a/db/stylist_db.conf b/db/stylist_db.conf index 47a7be1b7..12774b9ae 100644 --- a/db/stylist_db.conf +++ b/db/stylist_db.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) 2018 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/db/translations.conf b/db/translations.conf index e960fe44f..88b670702 100644 --- a/db/translations.conf +++ b/db/translations.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/db2sql.bat b/db2sql.bat index 620f0ac29..8daf3709f 100644 --- a/db2sql.bat +++ b/db2sql.bat @@ -3,7 +3,7 @@ REM This file is part of Hercules. REM http://herc.ws - http://github.com/HerculesWS/Hercules REM -REM Copyright (C) 2013-2024 Hercules Dev Team +REM Copyright (C) 2013-2025 Hercules Dev Team REM REM Hercules is free software: you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by diff --git a/doc/effect_list.md b/doc/effect_list.md index 1c48bb617..5074eaf99 100644 --- a/doc/effect_list.md +++ b/doc/effect_list.md @@ -5,7 +5,7 @@ A list of client-side effects sorted by ID in ascending order. > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2012-2024 Hercules Dev Team +> Copyright (C) 2012-2025 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. diff --git a/doc/goldpc.md b/doc/goldpc.md index 6fba1f11a..8252b2174 100644 --- a/doc/goldpc.md +++ b/doc/goldpc.md @@ -2,7 +2,7 @@ > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2023-2024 Hercules Dev Team +> Copyright (C) 2023-2025 Hercules Dev Team > Copyright (C) KirieZ > > 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. diff --git a/doc/item_bonus.md b/doc/item_bonus.md index e870535c2..6ae5c6360 100644 --- a/doc/item_bonus.md +++ b/doc/item_bonus.md @@ -5,7 +5,7 @@ > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2012-2024 Hercules Dev Team +> Copyright (C) 2012-2025 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. diff --git a/doc/map_cache.md b/doc/map_cache.md index b2ecb92cb..456cd90cd 100644 --- a/doc/map_cache.md +++ b/doc/map_cache.md @@ -2,7 +2,7 @@ Copyright This file is part of Hercules. http://herc.ws - http://github.com/HerculesWS/Hercules -Copyright (C) 2012-2024 Hercules Dev Team +Copyright (C) 2012-2025 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. diff --git a/doc/mob_db_mode_list.md b/doc/mob_db_mode_list.md index 5a19cf3fd..5baa35941 100644 --- a/doc/mob_db_mode_list.md +++ b/doc/mob_db_mode_list.md @@ -5,7 +5,7 @@ > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2012-2024 Hercules Dev Team +> Copyright (C) 2012-2025 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. diff --git a/doc/mob_skill_db.md b/doc/mob_skill_db.md index 7866a2ecd..c90cd9722 100644 --- a/doc/mob_skill_db.md +++ b/doc/mob_skill_db.md @@ -5,7 +5,7 @@ > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2020-2024 Hercules Dev Team +> Copyright (C) 2020-2025 Hercules Dev Team > Copyright (C) Zarbony > Copyright (C) Kenpachi > diff --git a/doc/permissions.md b/doc/permissions.md index e0f2b7080..fda81e9ab 100644 --- a/doc/permissions.md +++ b/doc/permissions.md @@ -5,7 +5,7 @@ A list of player group permission, configured in `conf/groups.conf`. > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2012-2024 Hercules Dev Team +> Copyright (C) 2012-2025 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. diff --git a/doc/quest_variables.md b/doc/quest_variables.md index 2b6291cb1..311ac0819 100644 --- a/doc/quest_variables.md +++ b/doc/quest_variables.md @@ -5,7 +5,7 @@ > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2012-2024 Hercules Dev Team +> Copyright (C) 2012-2025 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. diff --git a/doc/unit_parameters_db.md b/doc/unit_parameters_db.md index 00a47ea46..03764768a 100644 --- a/doc/unit_parameters_db.md +++ b/doc/unit_parameters_db.md @@ -5,7 +5,7 @@ > This file is part of Hercules. > http://herc.ws - http://github.com/HerculesWS/Hercules > -> Copyright (C) 2023-2024 Hercules Dev Team +> Copyright (C) 2023-2025 Hercules Dev Team > Copyright (C) KirieZ > > 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. diff --git a/npc/MOTD.txt b/npc/MOTD.txt index 07323aad3..a784831f1 100644 --- a/npc/MOTD.txt +++ b/npc/MOTD.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/npc/airports/airships.txt b/npc/airports/airships.txt index b0dbeee2f..abe1db413 100644 --- a/npc/airports/airships.txt +++ b/npc/airports/airships.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/airports/einbroch.txt b/npc/airports/einbroch.txt index 867b14d88..baf3a82f0 100644 --- a/npc/airports/einbroch.txt +++ b/npc/airports/einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Muad_Dib //= Copyright (C) L0ne_W0lf //= diff --git a/npc/airports/hugel.txt b/npc/airports/hugel.txt index bf898dc03..2257e0c00 100644 --- a/npc/airports/hugel.txt +++ b/npc/airports/hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 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 diff --git a/npc/airports/izlude.txt b/npc/airports/izlude.txt index 9b8794610..5b91de6ad 100644 --- a/npc/airports/izlude.txt +++ b/npc/airports/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/airports/lighthalzen.txt b/npc/airports/lighthalzen.txt index 32e51ef19..75fb45b7a 100644 --- a/npc/airports/lighthalzen.txt +++ b/npc/airports/lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Muad_Dib //= Copyright (C) L0ne_W0lf //= diff --git a/npc/airports/rachel.txt b/npc/airports/rachel.txt index 263a1aa69..5fc45cf22 100644 --- a/npc/airports/rachel.txt +++ b/npc/airports/rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/airports/yuno.txt b/npc/airports/yuno.txt index a32f6cbc1..795110f5b 100644 --- a/npc/airports/yuno.txt +++ b/npc/airports/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Muad_Dib //= Copyright (C) L0ne_W0lf //= diff --git a/npc/battleground/bg_common.txt b/npc/battleground/bg_common.txt index e31c14326..23b857c2a 100644 --- a/npc/battleground/bg_common.txt +++ b/npc/battleground/bg_common.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/battleground/flavius/flavius01.txt b/npc/battleground/flavius/flavius01.txt index cec108060..48aec4d7e 100644 --- a/npc/battleground/flavius/flavius01.txt +++ b/npc/battleground/flavius/flavius01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/battleground/flavius/flavius02.txt b/npc/battleground/flavius/flavius02.txt index eef16b5d2..afac78581 100644 --- a/npc/battleground/flavius/flavius02.txt +++ b/npc/battleground/flavius/flavius02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/battleground/flavius/flavius_enter.txt b/npc/battleground/flavius/flavius_enter.txt index 067de6e5e..a1ceeaa0a 100644 --- a/npc/battleground/flavius/flavius_enter.txt +++ b/npc/battleground/flavius/flavius_enter.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/battleground/kvm/kvm01.txt b/npc/battleground/kvm/kvm01.txt index 1baa69b1e..3abbfb892 100644 --- a/npc/battleground/kvm/kvm01.txt +++ b/npc/battleground/kvm/kvm01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/battleground/kvm/kvm02.txt b/npc/battleground/kvm/kvm02.txt index b007578d8..7957ec187 100644 --- a/npc/battleground/kvm/kvm02.txt +++ b/npc/battleground/kvm/kvm02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Ai4rei //= Copyright (C) L0ne_W0lf //= diff --git a/npc/battleground/kvm/kvm03.txt b/npc/battleground/kvm/kvm03.txt index 2231b42eb..4fe1df6d3 100644 --- a/npc/battleground/kvm/kvm03.txt +++ b/npc/battleground/kvm/kvm03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Ai4rei //= Copyright (C) L0ne_W0lf //= diff --git a/npc/battleground/kvm/kvm_enter.txt b/npc/battleground/kvm/kvm_enter.txt index 661b55ede..4e32c0502 100644 --- a/npc/battleground/kvm/kvm_enter.txt +++ b/npc/battleground/kvm/kvm_enter.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/battleground/kvm/kvm_item_pay.txt b/npc/battleground/kvm/kvm_item_pay.txt index a9a3b3d89..e37c76b5d 100644 --- a/npc/battleground/kvm/kvm_item_pay.txt +++ b/npc/battleground/kvm/kvm_item_pay.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/battleground/tierra/tierra01.txt b/npc/battleground/tierra/tierra01.txt index eb960296c..958638b01 100644 --- a/npc/battleground/tierra/tierra01.txt +++ b/npc/battleground/tierra/tierra01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/battleground/tierra/tierra02.txt b/npc/battleground/tierra/tierra02.txt index c317429df..faa591ef5 100644 --- a/npc/battleground/tierra/tierra02.txt +++ b/npc/battleground/tierra/tierra02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/battleground/tierra/tierra_enter.txt b/npc/battleground/tierra/tierra_enter.txt index 4548f7fcd..d01a2c198 100644 --- a/npc/battleground/tierra/tierra_enter.txt +++ b/npc/battleground/tierra/tierra_enter.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/cities/alberta.txt b/npc/cities/alberta.txt index 1988b6412..134e69234 100644 --- a/npc/cities/alberta.txt +++ b/npc/cities/alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/cities/aldebaran.txt b/npc/cities/aldebaran.txt index 22b304515..7733e20cd 100644 --- a/npc/cities/aldebaran.txt +++ b/npc/cities/aldebaran.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) DZeroX diff --git a/npc/cities/amatsu.txt b/npc/cities/amatsu.txt index ccc8f042c..5a055d8be 100644 --- a/npc/cities/amatsu.txt +++ b/npc/cities/amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/cities/ayothaya.txt b/npc/cities/ayothaya.txt index 9094d09cc..f8555a2ba 100644 --- a/npc/cities/ayothaya.txt +++ b/npc/cities/ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf diff --git a/npc/cities/comodo.txt b/npc/cities/comodo.txt index aa0378da6..9a153bbc2 100644 --- a/npc/cities/comodo.txt +++ b/npc/cities/comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/cities/einbech.txt b/npc/cities/einbech.txt index ec9d81fe2..43d970fa3 100644 --- a/npc/cities/einbech.txt +++ b/npc/cities/einbech.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) DZeroX //= Copyright (C) Evera diff --git a/npc/cities/einbroch.txt b/npc/cities/einbroch.txt index 0f01171e7..1552ea3d9 100644 --- a/npc/cities/einbroch.txt +++ b/npc/cities/einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) DZeroX //= Copyright (C) Samuray22 diff --git a/npc/cities/geffen.txt b/npc/cities/geffen.txt index 012ee9e7b..8bfdbdbe9 100644 --- a/npc/cities/geffen.txt +++ b/npc/cities/geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) DeadlySilence //= Copyright (C) Samuray22 //= Copyright (C) Lupus diff --git a/npc/cities/gonryun.txt b/npc/cities/gonryun.txt index a60154ce5..fedd50f24 100644 --- a/npc/cities/gonryun.txt +++ b/npc/cities/gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) x[tsk] diff --git a/npc/cities/hugel.txt b/npc/cities/hugel.txt index 887f8355d..4ca6b3c94 100644 --- a/npc/cities/hugel.txt +++ b/npc/cities/hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) DZeroX diff --git a/npc/cities/izlude.txt b/npc/cities/izlude.txt index bf40bd295..53bbcc565 100644 --- a/npc/cities/izlude.txt +++ b/npc/cities/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Paradox924X //= Copyright (C) Evera diff --git a/npc/cities/jawaii.txt b/npc/cities/jawaii.txt index afa403bad..3bbb6ea8d 100644 --- a/npc/cities/jawaii.txt +++ b/npc/cities/jawaii.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) Evera diff --git a/npc/cities/lighthalzen.txt b/npc/cities/lighthalzen.txt index f9a760bdc..2a72a0591 100644 --- a/npc/cities/lighthalzen.txt +++ b/npc/cities/lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Gepard //= Copyright (C) $ephiroth diff --git a/npc/cities/louyang.txt b/npc/cities/louyang.txt index 3536ed928..709cf4f83 100644 --- a/npc/cities/louyang.txt +++ b/npc/cities/louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/cities/lutie.txt b/npc/cities/lutie.txt index d544a4379..af15f078b 100644 --- a/npc/cities/lutie.txt +++ b/npc/cities/lutie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Kisuka diff --git a/npc/cities/manuk.txt b/npc/cities/manuk.txt index 08c2868b9..5ae3f3892 100644 --- a/npc/cities/manuk.txt +++ b/npc/cities/manuk.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/cities/morocc.txt b/npc/cities/morocc.txt index d00b2763d..d7a195f13 100644 --- a/npc/cities/morocc.txt +++ b/npc/cities/morocc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) Silent //= Copyright (C) Vicious_Pucca diff --git a/npc/cities/moscovia.txt b/npc/cities/moscovia.txt index f14bacc16..532da9917 100644 --- a/npc/cities/moscovia.txt +++ b/npc/cities/moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= diff --git a/npc/cities/niflheim.txt b/npc/cities/niflheim.txt index 4bc488f7c..21ce317bc 100644 --- a/npc/cities/niflheim.txt +++ b/npc/cities/niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Evera //= Copyright (C) Silent diff --git a/npc/cities/payon.txt b/npc/cities/payon.txt index b73db8526..a29637cb7 100644 --- a/npc/cities/payon.txt +++ b/npc/cities/payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Evera //= Copyright (C) Silent diff --git a/npc/cities/prontera.txt b/npc/cities/prontera.txt index b3b031309..17bb75007 100644 --- a/npc/cities/prontera.txt +++ b/npc/cities/prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Silent //= Copyright (C) MasterOfMuppets diff --git a/npc/cities/rachel.txt b/npc/cities/rachel.txt index f7e49ccab..5a4840544 100644 --- a/npc/cities/rachel.txt +++ b/npc/cities/rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf diff --git a/npc/cities/splendide.txt b/npc/cities/splendide.txt index 560c20e07..186d798e1 100644 --- a/npc/cities/splendide.txt +++ b/npc/cities/splendide.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/cities/umbala.txt b/npc/cities/umbala.txt index 3cfbf023e..6ab8466be 100644 --- a/npc/cities/umbala.txt +++ b/npc/cities/umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Toms //= Copyright (C) Evera diff --git a/npc/cities/veins.txt b/npc/cities/veins.txt index decd7a9a2..436edb111 100644 --- a/npc/cities/veins.txt +++ b/npc/cities/veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Muad_Dib diff --git a/npc/cities/yuno.txt b/npc/cities/yuno.txt index a23ca5c8b..bde235b01 100644 --- a/npc/cities/yuno.txt +++ b/npc/cities/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) massdriller diff --git a/npc/dev/ci_test.txt b/npc/dev/ci_test.txt index afe0ce04b..53dc62558 100644 --- a/npc/dev/ci_test.txt +++ b/npc/dev/ci_test.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) 2014 Haru //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/dev/test.txt b/npc/dev/test.txt index ed2f41a1b..f23d7f385 100644 --- a/npc/dev/test.txt +++ b/npc/dev/test.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) 2013-2021 Haru //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/MemorialDay_2008.txt b/npc/events/MemorialDay_2008.txt index c33fff97b..2e1ad2beb 100644 --- a/npc/events/MemorialDay_2008.txt +++ b/npc/events/MemorialDay_2008.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/RWC_2011.txt b/npc/events/RWC_2011.txt index 483edc1c0..3d0f973d0 100644 --- a/npc/events/RWC_2011.txt +++ b/npc/events/RWC_2011.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/RWC_2012.txt b/npc/events/RWC_2012.txt index 6b243453b..10343eb32 100644 --- a/npc/events/RWC_2012.txt +++ b/npc/events/RWC_2012.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/StPatrick_2008.txt b/npc/events/StPatrick_2008.txt index 08223926c..85d7ae167 100644 --- a/npc/events/StPatrick_2008.txt +++ b/npc/events/StPatrick_2008.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= Copyright (C) Kisuka diff --git a/npc/events/bossnia.txt b/npc/events/bossnia.txt index 7a240c626..1e57ecd5a 100644 --- a/npc/events/bossnia.txt +++ b/npc/events/bossnia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= diff --git a/npc/events/children_week.txt b/npc/events/children_week.txt index 61af1b6dc..df1235581 100644 --- a/npc/events/children_week.txt +++ b/npc/events/children_week.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/christmas_2005.txt b/npc/events/christmas_2005.txt index fd3806586..09a7cde3b 100644 --- a/npc/events/christmas_2005.txt +++ b/npc/events/christmas_2005.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Paradox924X //= Copyright (C) L0ne_W0lf //= Copyright (C) Brainstorm diff --git a/npc/events/christmas_2008.txt b/npc/events/christmas_2008.txt index 93b698014..3cccdd8ec 100644 --- a/npc/events/christmas_2008.txt +++ b/npc/events/christmas_2008.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/dumplingfestival.txt b/npc/events/dumplingfestival.txt index 43b5007e3..506507838 100644 --- a/npc/events/dumplingfestival.txt +++ b/npc/events/dumplingfestival.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) Massdriller //= diff --git a/npc/events/easter_2008.txt b/npc/events/easter_2008.txt index 96d97de66..70487c48b 100644 --- a/npc/events/easter_2008.txt +++ b/npc/events/easter_2008.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Kisuka //= diff --git a/npc/events/easter_2010.txt b/npc/events/easter_2010.txt index fab4e095e..c19e573b4 100644 --- a/npc/events/easter_2010.txt +++ b/npc/events/easter_2010.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/event_skill_reset.txt b/npc/events/event_skill_reset.txt index 827f76d47..0fb0d9450 100644 --- a/npc/events/event_skill_reset.txt +++ b/npc/events/event_skill_reset.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) $ephiroth //= diff --git a/npc/events/gdevent_aru.txt b/npc/events/gdevent_aru.txt index 6aba01a80..06ff46905 100644 --- a/npc/events/gdevent_aru.txt +++ b/npc/events/gdevent_aru.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/events/gdevent_sch.txt b/npc/events/gdevent_sch.txt index ec8b72036..29ef57fde 100644 --- a/npc/events/gdevent_sch.txt +++ b/npc/events/gdevent_sch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/events/god_se_festival.txt b/npc/events/god_se_festival.txt index a5314f001..b7afe4bf2 100644 --- a/npc/events/god_se_festival.txt +++ b/npc/events/god_se_festival.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/events/halloween_2006.txt b/npc/events/halloween_2006.txt index 7a2d954f2..e889b7606 100644 --- a/npc/events/halloween_2006.txt +++ b/npc/events/halloween_2006.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= Copyright (C) Brainstorm diff --git a/npc/events/halloween_2008.txt b/npc/events/halloween_2008.txt index 9cbfd98bb..a1a361d90 100644 --- a/npc/events/halloween_2008.txt +++ b/npc/events/halloween_2008.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/halloween_2009.txt b/npc/events/halloween_2009.txt index 4ae2a9102..d78454545 100644 --- a/npc/events/halloween_2009.txt +++ b/npc/events/halloween_2009.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) Kisuka //= diff --git a/npc/events/idul_fitri.txt b/npc/events/idul_fitri.txt index 04018d81b..28d9ef683 100644 --- a/npc/events/idul_fitri.txt +++ b/npc/events/idul_fitri.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) $ephiroth //= diff --git a/npc/events/lunar_2008.txt b/npc/events/lunar_2008.txt index 0d3187bbc..e24767c6a 100644 --- a/npc/events/lunar_2008.txt +++ b/npc/events/lunar_2008.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/nguild/nguild_dunsw.txt b/npc/events/nguild/nguild_dunsw.txt index d65bd5966..3b8268bfd 100644 --- a/npc/events/nguild/nguild_dunsw.txt +++ b/npc/events/nguild/nguild_dunsw.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) kobra_k88 //= diff --git a/npc/events/nguild/nguild_ev_agit.txt b/npc/events/nguild/nguild_ev_agit.txt index 9cc30a42a..04ad45f3a 100644 --- a/npc/events/nguild/nguild_ev_agit.txt +++ b/npc/events/nguild/nguild_ev_agit.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) kobra_k88 diff --git a/npc/events/nguild/nguild_flags.txt b/npc/events/nguild/nguild_flags.txt index 5a180eaa1..09aad473d 100644 --- a/npc/events/nguild/nguild_flags.txt +++ b/npc/events/nguild/nguild_flags.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) kobra_k88 diff --git a/npc/events/nguild/nguild_guardians.txt b/npc/events/nguild/nguild_guardians.txt index cb14d352d..ab0e11d15 100644 --- a/npc/events/nguild/nguild_guardians.txt +++ b/npc/events/nguild/nguild_guardians.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) kobra_k88 //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/nguild/nguild_kafras.txt b/npc/events/nguild/nguild_kafras.txt index 49863ed98..a1d9b48c4 100644 --- a/npc/events/nguild/nguild_kafras.txt +++ b/npc/events/nguild/nguild_kafras.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) kobra_k88 diff --git a/npc/events/nguild/nguild_managers.txt b/npc/events/nguild/nguild_managers.txt index 43888289e..c82cb87cb 100644 --- a/npc/events/nguild/nguild_managers.txt +++ b/npc/events/nguild/nguild_managers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) kobra_k88 //= diff --git a/npc/events/nguild/nguild_treas.txt b/npc/events/nguild/nguild_treas.txt index 8a6110751..1c99a1d47 100644 --- a/npc/events/nguild/nguild_treas.txt +++ b/npc/events/nguild/nguild_treas.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) brianluau //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/events/nguild/nguild_warper.txt b/npc/events/nguild/nguild_warper.txt index 5f069406e..b3a165f74 100644 --- a/npc/events/nguild/nguild_warper.txt +++ b/npc/events/nguild/nguild_warper.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/twintowers.txt b/npc/events/twintowers.txt index db3170184..d88f327f9 100644 --- a/npc/events/twintowers.txt +++ b/npc/events/twintowers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) ultramage //= Copyright (C) Silent //= Copyright (C) Lupus diff --git a/npc/events/valentinesday.txt b/npc/events/valentinesday.txt index edfddbe9e..a1eb38ced 100644 --- a/npc/events/valentinesday.txt +++ b/npc/events/valentinesday.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib (Prometheus Project) //= diff --git a/npc/events/valentinesday_2009.txt b/npc/events/valentinesday_2009.txt index 2e68fee64..647c09744 100644 --- a/npc/events/valentinesday_2009.txt +++ b/npc/events/valentinesday_2009.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) Kisuka //= diff --git a/npc/events/valentinesday_2012.txt b/npc/events/valentinesday_2012.txt index 8fd16c25e..cf36c4969 100644 --- a/npc/events/valentinesday_2012.txt +++ b/npc/events/valentinesday_2012.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Rikimaru //= diff --git a/npc/events/whiteday.txt b/npc/events/whiteday.txt index ff9b1c69d..8188f0189 100644 --- a/npc/events/whiteday.txt +++ b/npc/events/whiteday.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Muad_Dib (Prometheus Project) //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/events/xmas.txt b/npc/events/xmas.txt index 5a4006654..242490ff5 100644 --- a/npc/events/xmas.txt +++ b/npc/events/xmas.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Kayla diff --git a/npc/instances/EndlessTower.txt b/npc/instances/EndlessTower.txt index d6b9c46ac..6bbc03508 100644 --- a/npc/instances/EndlessTower.txt +++ b/npc/instances/EndlessTower.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) Gepard diff --git a/npc/instances/NydhoggsNest.txt b/npc/instances/NydhoggsNest.txt index eabdad550..bc2ba79ea 100644 --- a/npc/instances/NydhoggsNest.txt +++ b/npc/instances/NydhoggsNest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/instances/OrcsMemory.txt b/npc/instances/OrcsMemory.txt index d6d8574fb..807971db6 100644 --- a/npc/instances/OrcsMemory.txt +++ b/npc/instances/OrcsMemory.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/instances/SealedShrine.txt b/npc/instances/SealedShrine.txt index 9702633fe..74e4218ba 100644 --- a/npc/instances/SealedShrine.txt +++ b/npc/instances/SealedShrine.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) Gepard diff --git a/npc/jobs/1-1e/gunslinger.txt b/npc/jobs/1-1e/gunslinger.txt index 7ac690224..d7b6a485d 100644 --- a/npc/jobs/1-1e/gunslinger.txt +++ b/npc/jobs/1-1e/gunslinger.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth diff --git a/npc/jobs/1-1e/ninja.txt b/npc/jobs/1-1e/ninja.txt index d6aa70960..6845eba33 100644 --- a/npc/jobs/1-1e/ninja.txt +++ b/npc/jobs/1-1e/ninja.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) SinSloth //= Copyright (C) Playtester diff --git a/npc/jobs/1-1e/taekwon.txt b/npc/jobs/1-1e/taekwon.txt index 0462427cf..4044a8dfd 100644 --- a/npc/jobs/1-1e/taekwon.txt +++ b/npc/jobs/1-1e/taekwon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Kisuka //= Copyright (C) Samuray22 diff --git a/npc/jobs/2-1/assassin.txt b/npc/jobs/2-1/assassin.txt index 39b687aea..367e22e39 100644 --- a/npc/jobs/2-1/assassin.txt +++ b/npc/jobs/2-1/assassin.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) JayPee //= Copyright (C) Kisuka diff --git a/npc/jobs/2-1/blacksmith.txt b/npc/jobs/2-1/blacksmith.txt index b7056fff2..b00c0434b 100644 --- a/npc/jobs/2-1/blacksmith.txt +++ b/npc/jobs/2-1/blacksmith.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) Yommy diff --git a/npc/jobs/2-1/hunter.txt b/npc/jobs/2-1/hunter.txt index 6a9716355..18553ed7e 100644 --- a/npc/jobs/2-1/hunter.txt +++ b/npc/jobs/2-1/hunter.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vali //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/jobs/2-1/knight.txt b/npc/jobs/2-1/knight.txt index 5041520ab..76f1ce84d 100644 --- a/npc/jobs/2-1/knight.txt +++ b/npc/jobs/2-1/knight.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Vali diff --git a/npc/jobs/2-1/priest.txt b/npc/jobs/2-1/priest.txt index 9572dc96b..d15590b7f 100644 --- a/npc/jobs/2-1/priest.txt +++ b/npc/jobs/2-1/priest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/jobs/2-1/wizard.txt b/npc/jobs/2-1/wizard.txt index 049c55017..e8b2f1fd8 100644 --- a/npc/jobs/2-1/wizard.txt +++ b/npc/jobs/2-1/wizard.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Vali //= Copyright (C) Kisuka diff --git a/npc/jobs/2-1a/AssassinCross.txt b/npc/jobs/2-1a/AssassinCross.txt index 9f5066855..bc458f81f 100644 --- a/npc/jobs/2-1a/AssassinCross.txt +++ b/npc/jobs/2-1a/AssassinCross.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-1a/HighPriest.txt b/npc/jobs/2-1a/HighPriest.txt index 47d43ec7a..145c91d19 100644 --- a/npc/jobs/2-1a/HighPriest.txt +++ b/npc/jobs/2-1a/HighPriest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-1a/HighWizard.txt b/npc/jobs/2-1a/HighWizard.txt index 2d86756cd..b65bc5025 100644 --- a/npc/jobs/2-1a/HighWizard.txt +++ b/npc/jobs/2-1a/HighWizard.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-1a/LordKnight.txt b/npc/jobs/2-1a/LordKnight.txt index 615f60f7a..87cc8579d 100644 --- a/npc/jobs/2-1a/LordKnight.txt +++ b/npc/jobs/2-1a/LordKnight.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-1a/Sniper.txt b/npc/jobs/2-1a/Sniper.txt index 1ecb6cbd8..8bfa80f31 100644 --- a/npc/jobs/2-1a/Sniper.txt +++ b/npc/jobs/2-1a/Sniper.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-1a/WhiteSmith.txt b/npc/jobs/2-1a/WhiteSmith.txt index 8efa36b7d..52ce8ed77 100644 --- a/npc/jobs/2-1a/WhiteSmith.txt +++ b/npc/jobs/2-1a/WhiteSmith.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-1e/StarGladiator.txt b/npc/jobs/2-1e/StarGladiator.txt index 392480ecf..661d6e274 100644 --- a/npc/jobs/2-1e/StarGladiator.txt +++ b/npc/jobs/2-1e/StarGladiator.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/jobs/2-2/alchemist.txt b/npc/jobs/2-2/alchemist.txt index a1ff9a3ad..c38ac2150 100644 --- a/npc/jobs/2-2/alchemist.txt +++ b/npc/jobs/2-2/alchemist.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Vicious diff --git a/npc/jobs/2-2/bard.txt b/npc/jobs/2-2/bard.txt index 4a34a1889..33fbcd730 100644 --- a/npc/jobs/2-2/bard.txt +++ b/npc/jobs/2-2/bard.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Vicious diff --git a/npc/jobs/2-2/crusader.txt b/npc/jobs/2-2/crusader.txt index 4f623ef48..3da32ae50 100644 --- a/npc/jobs/2-2/crusader.txt +++ b/npc/jobs/2-2/crusader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth diff --git a/npc/jobs/2-2/dancer.txt b/npc/jobs/2-2/dancer.txt index 1ddf789e2..176d6f2e7 100644 --- a/npc/jobs/2-2/dancer.txt +++ b/npc/jobs/2-2/dancer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) Brainstorm diff --git a/npc/jobs/2-2/monk.txt b/npc/jobs/2-2/monk.txt index c873b32a0..c0e868471 100644 --- a/npc/jobs/2-2/monk.txt +++ b/npc/jobs/2-2/monk.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/jobs/2-2/rogue.txt b/npc/jobs/2-2/rogue.txt index 5a0f1ed72..0cb577b05 100644 --- a/npc/jobs/2-2/rogue.txt +++ b/npc/jobs/2-2/rogue.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Brainstorm //= Copyright (C) Samuray22 diff --git a/npc/jobs/2-2/sage.txt b/npc/jobs/2-2/sage.txt index 1ee784a6f..87a994ec1 100644 --- a/npc/jobs/2-2/sage.txt +++ b/npc/jobs/2-2/sage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Brainstorm //= Copyright (C) Samuray22 diff --git a/npc/jobs/2-2a/Champion.txt b/npc/jobs/2-2a/Champion.txt index 65d94482b..057dbb56f 100644 --- a/npc/jobs/2-2a/Champion.txt +++ b/npc/jobs/2-2a/Champion.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-2a/Clown.txt b/npc/jobs/2-2a/Clown.txt index c95af1237..253f3ad0d 100644 --- a/npc/jobs/2-2a/Clown.txt +++ b/npc/jobs/2-2a/Clown.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) Vicious //= Copyright (C) Lupus diff --git a/npc/jobs/2-2a/Creator.txt b/npc/jobs/2-2a/Creator.txt index 03fadbdbe..9b91d6a3b 100644 --- a/npc/jobs/2-2a/Creator.txt +++ b/npc/jobs/2-2a/Creator.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Haru //= Copyright (C) Vicious diff --git a/npc/jobs/2-2a/Gypsy.txt b/npc/jobs/2-2a/Gypsy.txt index d21b09dfb..22e4f792d 100644 --- a/npc/jobs/2-2a/Gypsy.txt +++ b/npc/jobs/2-2a/Gypsy.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-2a/Paladin.txt b/npc/jobs/2-2a/Paladin.txt index 52ac0f897..3f181394e 100644 --- a/npc/jobs/2-2a/Paladin.txt +++ b/npc/jobs/2-2a/Paladin.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-2a/Professor.txt b/npc/jobs/2-2a/Professor.txt index 69e9cc339..5ee6d6adf 100644 --- a/npc/jobs/2-2a/Professor.txt +++ b/npc/jobs/2-2a/Professor.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-2a/Stalker.txt b/npc/jobs/2-2a/Stalker.txt index 3f21b5378..0650c1208 100644 --- a/npc/jobs/2-2a/Stalker.txt +++ b/npc/jobs/2-2a/Stalker.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/jobs/2-2e/SoulLinker.txt b/npc/jobs/2-2e/SoulLinker.txt index 9d603fa64..a1e0ad39b 100644 --- a/npc/jobs/2-2e/SoulLinker.txt +++ b/npc/jobs/2-2e/SoulLinker.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/jobs/novice/supernovice.txt b/npc/jobs/novice/supernovice.txt index ce828cd77..942d541ab 100644 --- a/npc/jobs/novice/supernovice.txt +++ b/npc/jobs/novice/supernovice.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/jobs/valkyrie.txt b/npc/jobs/valkyrie.txt index dd7963193..6b4682b2a 100644 --- a/npc/jobs/valkyrie.txt +++ b/npc/jobs/valkyrie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) Vicious //= Copyright (C) Silentdragon diff --git a/npc/kafras/cool_event_corp.txt b/npc/kafras/cool_event_corp.txt index 7a71724e2..573278fc0 100644 --- a/npc/kafras/cool_event_corp.txt +++ b/npc/kafras/cool_event_corp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Haru //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/kafras/dts_warper.txt b/npc/kafras/dts_warper.txt index 30ce6aa97..01ea62b98 100644 --- a/npc/kafras/dts_warper.txt +++ b/npc/kafras/dts_warper.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/kafras/functions_kafras.txt b/npc/kafras/functions_kafras.txt index 27697fe1e..b6dad830f 100644 --- a/npc/kafras/functions_kafras.txt +++ b/npc/kafras/functions_kafras.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Haru //= Copyright (C) rAthena Dev Team diff --git a/npc/kafras/kafras.txt b/npc/kafras/kafras.txt index 2077dbab7..ea74e25e2 100644 --- a/npc/kafras/kafras.txt +++ b/npc/kafras/kafras.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lemongrass //= Copyright (C) Euphy //= Copyright (C) Joseph diff --git a/npc/mapflag/battleground.txt b/npc/mapflag/battleground.txt index bc06bdb8f..702888702 100644 --- a/npc/mapflag/battleground.txt +++ b/npc/mapflag/battleground.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Epoque //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/gvg.txt b/npc/mapflag/gvg.txt index ca9a741d0..ded703217 100644 --- a/npc/mapflag/gvg.txt +++ b/npc/mapflag/gvg.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/jail.txt b/npc/mapflag/jail.txt index 58a00bf07..e754704b1 100644 --- a/npc/mapflag/jail.txt +++ b/npc/mapflag/jail.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/night.txt b/npc/mapflag/night.txt index 09088be50..2982a78f6 100644 --- a/npc/mapflag/night.txt +++ b/npc/mapflag/night.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Skotlex //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/nightmare.txt b/npc/mapflag/nightmare.txt index 3f908a6c7..33f767a69 100644 --- a/npc/mapflag/nightmare.txt +++ b/npc/mapflag/nightmare.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/nobranch.txt b/npc/mapflag/nobranch.txt index 1115d281f..cc8700753 100644 --- a/npc/mapflag/nobranch.txt +++ b/npc/mapflag/nobranch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/mapflag/noexp.txt b/npc/mapflag/noexp.txt index f417d8a7a..0413ce24a 100644 --- a/npc/mapflag/noexp.txt +++ b/npc/mapflag/noexp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/mapflag/noicewall.txt b/npc/mapflag/noicewall.txt index 95c25f617..636b0bd75 100644 --- a/npc/mapflag/noicewall.txt +++ b/npc/mapflag/noicewall.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/mapflag/noloot.txt b/npc/mapflag/noloot.txt index e4195210f..df2c25792 100644 --- a/npc/mapflag/noloot.txt +++ b/npc/mapflag/noloot.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Epoque //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/nomemo.txt b/npc/mapflag/nomemo.txt index 1334e6a1a..c6761d0b3 100644 --- a/npc/mapflag/nomemo.txt +++ b/npc/mapflag/nomemo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Epoque //= Copyright (C) eAthena Dev Team //= Copyright (C) Gepard diff --git a/npc/mapflag/nopenalty.txt b/npc/mapflag/nopenalty.txt index 13dfc7d8d..dafde2f84 100644 --- a/npc/mapflag/nopenalty.txt +++ b/npc/mapflag/nopenalty.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Epoque //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/mapflag/nopet.txt b/npc/mapflag/nopet.txt index e9f03f965..309ced8c5 100644 --- a/npc/mapflag/nopet.txt +++ b/npc/mapflag/nopet.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 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 diff --git a/npc/mapflag/nopvp.txt b/npc/mapflag/nopvp.txt index 5c58ea849..10f730069 100644 --- a/npc/mapflag/nopvp.txt +++ b/npc/mapflag/nopvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/noreturn.txt b/npc/mapflag/noreturn.txt index de5ce97cb..1203d7c5f 100644 --- a/npc/mapflag/noreturn.txt +++ b/npc/mapflag/noreturn.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/mapflag/nosave.txt b/npc/mapflag/nosave.txt index 54911b69a..11d712737 100644 --- a/npc/mapflag/nosave.txt +++ b/npc/mapflag/nosave.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Lupus diff --git a/npc/mapflag/noskill.txt b/npc/mapflag/noskill.txt index 9e7c5cf07..2ad7f1521 100644 --- a/npc/mapflag/noskill.txt +++ b/npc/mapflag/noskill.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/mapflag/noteleport.txt b/npc/mapflag/noteleport.txt index 8d95e5577..3f43d3c28 100644 --- a/npc/mapflag/noteleport.txt +++ b/npc/mapflag/noteleport.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Lupus diff --git a/npc/mapflag/notomb.txt b/npc/mapflag/notomb.txt index 2dab51b70..113941044 100644 --- a/npc/mapflag/notomb.txt +++ b/npc/mapflag/notomb.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) CairoLee //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/novending.txt b/npc/mapflag/novending.txt index 917a29dd8..fb2aebfdf 100644 --- a/npc/mapflag/novending.txt +++ b/npc/mapflag/novending.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Epoque //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/nowarp.txt b/npc/mapflag/nowarp.txt index bb3c6ebbd..3dabb0bb4 100644 --- a/npc/mapflag/nowarp.txt +++ b/npc/mapflag/nowarp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/nowarpto.txt b/npc/mapflag/nowarpto.txt index aaa5ed993..22ab11936 100644 --- a/npc/mapflag/nowarpto.txt +++ b/npc/mapflag/nowarpto.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/partylock.txt b/npc/mapflag/partylock.txt index 9ac632d29..d5bddf93a 100644 --- a/npc/mapflag/partylock.txt +++ b/npc/mapflag/partylock.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/private_airship.txt b/npc/mapflag/private_airship.txt index 43d7f556e..87659cfb6 100644 --- a/npc/mapflag/private_airship.txt +++ b/npc/mapflag/private_airship.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/pvp.txt b/npc/mapflag/pvp.txt index 47938ea46..27b36af97 100644 --- a/npc/mapflag/pvp.txt +++ b/npc/mapflag/pvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/pvp_noguild.txt b/npc/mapflag/pvp_noguild.txt index 476d290cf..1ddcb196f 100644 --- a/npc/mapflag/pvp_noguild.txt +++ b/npc/mapflag/pvp_noguild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/pvp_noparty.txt b/npc/mapflag/pvp_noparty.txt index 9e7c4942d..b6d9198b3 100644 --- a/npc/mapflag/pvp_noparty.txt +++ b/npc/mapflag/pvp_noparty.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mapflag/reset.txt b/npc/mapflag/reset.txt index ddf94dd89..c5d5d4388 100644 --- a/npc/mapflag/reset.txt +++ b/npc/mapflag/reset.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/skillduration.txt b/npc/mapflag/skillduration.txt index 8090906c1..2cddd8459 100644 --- a/npc/mapflag/skillduration.txt +++ b/npc/mapflag/skillduration.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/npc/mapflag/skillmodifier.txt b/npc/mapflag/skillmodifier.txt index 72a9a65af..5a1538ab3 100644 --- a/npc/mapflag/skillmodifier.txt +++ b/npc/mapflag/skillmodifier.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 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 diff --git a/npc/mapflag/town.txt b/npc/mapflag/town.txt index 5b9572ff7..9a619f88b 100644 --- a/npc/mapflag/town.txt +++ b/npc/mapflag/town.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Epoque //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mapflag/zone.txt b/npc/mapflag/zone.txt index f3a2bd69b..2db9d77d6 100644 --- a/npc/mapflag/zone.txt +++ b/npc/mapflag/zone.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Ind //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/merchants/advanced_refiner.txt b/npc/merchants/advanced_refiner.txt index 2b5135c78..44d244405 100644 --- a/npc/merchants/advanced_refiner.txt +++ b/npc/merchants/advanced_refiner.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Yommy //= Copyright (C) Zephyrus diff --git a/npc/merchants/alchemist.txt b/npc/merchants/alchemist.txt index c10baf19a..572cd92dc 100644 --- a/npc/merchants/alchemist.txt +++ b/npc/merchants/alchemist.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/merchants/ammo_boxes.txt b/npc/merchants/ammo_boxes.txt index 555824f4a..a4fdb0fd4 100644 --- a/npc/merchants/ammo_boxes.txt +++ b/npc/merchants/ammo_boxes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/merchants/ammo_dealer.txt b/npc/merchants/ammo_dealer.txt index 6e78cc782..561bdab17 100644 --- a/npc/merchants/ammo_dealer.txt +++ b/npc/merchants/ammo_dealer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Kisuka diff --git a/npc/merchants/buying_shops.txt b/npc/merchants/buying_shops.txt index c2a3d11dc..939472dcf 100644 --- a/npc/merchants/buying_shops.txt +++ b/npc/merchants/buying_shops.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= diff --git a/npc/merchants/cash_hair.txt b/npc/merchants/cash_hair.txt index 265bc9be7..01183a1ca 100644 --- a/npc/merchants/cash_hair.txt +++ b/npc/merchants/cash_hair.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/merchants/cash_trader.txt b/npc/merchants/cash_trader.txt index 8c608efe6..e60d44141 100644 --- a/npc/merchants/cash_trader.txt +++ b/npc/merchants/cash_trader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/merchants/cashheadgear_dye.txt b/npc/merchants/cashheadgear_dye.txt index b196877ba..1674f659f 100644 --- a/npc/merchants/cashheadgear_dye.txt +++ b/npc/merchants/cashheadgear_dye.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Xantara //= Copyright (C) Maud_Dib //= diff --git a/npc/merchants/clothes_dyer.txt b/npc/merchants/clothes_dyer.txt index b123386bf..15addd841 100644 --- a/npc/merchants/clothes_dyer.txt +++ b/npc/merchants/clothes_dyer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Playtester //= Copyright (C) Poki#3 diff --git a/npc/merchants/coin_exchange.txt b/npc/merchants/coin_exchange.txt index a8ce5cf33..9d8634957 100644 --- a/npc/merchants/coin_exchange.txt +++ b/npc/merchants/coin_exchange.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/merchants/dye_maker.txt b/npc/merchants/dye_maker.txt index dfe2129b7..23811b26b 100644 --- a/npc/merchants/dye_maker.txt +++ b/npc/merchants/dye_maker.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) ultramage diff --git a/npc/merchants/elemental_trader.txt b/npc/merchants/elemental_trader.txt index fe914a458..007f737aa 100644 --- a/npc/merchants/elemental_trader.txt +++ b/npc/merchants/elemental_trader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Team //= Copyright (C) Euphy //= Copyright (C) eAthena Team diff --git a/npc/merchants/enchan_arm.txt b/npc/merchants/enchan_arm.txt index 5207f8dc6..6dd3b6dee 100644 --- a/npc/merchants/enchan_arm.txt +++ b/npc/merchants/enchan_arm.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf diff --git a/npc/merchants/gemstone.txt b/npc/merchants/gemstone.txt index b31ccf453..290120775 100644 --- a/npc/merchants/gemstone.txt +++ b/npc/merchants/gemstone.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/merchants/hair_dyer.txt b/npc/merchants/hair_dyer.txt index 8872926d9..43a6cf63e 100644 --- a/npc/merchants/hair_dyer.txt +++ b/npc/merchants/hair_dyer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf diff --git a/npc/merchants/hair_style.txt b/npc/merchants/hair_style.txt index 9af904c01..8d86beb12 100644 --- a/npc/merchants/hair_style.txt +++ b/npc/merchants/hair_style.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Silent //= Copyright (C) Nexon diff --git a/npc/merchants/hd_refine.txt b/npc/merchants/hd_refine.txt index 82dac9c52..6a99ba4c9 100644 --- a/npc/merchants/hd_refine.txt +++ b/npc/merchants/hd_refine.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/merchants/icecream.txt b/npc/merchants/icecream.txt index b5db21019..4e6db5d95 100644 --- a/npc/merchants/icecream.txt +++ b/npc/merchants/icecream.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) Kisuka diff --git a/npc/merchants/inn.txt b/npc/merchants/inn.txt index 8fa65306a..cc9a01ced 100644 --- a/npc/merchants/inn.txt +++ b/npc/merchants/inn.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) Samuray22 diff --git a/npc/merchants/kunai_maker.txt b/npc/merchants/kunai_maker.txt index 4d738171c..704a55c66 100644 --- a/npc/merchants/kunai_maker.txt +++ b/npc/merchants/kunai_maker.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/merchants/milk_trader.txt b/npc/merchants/milk_trader.txt index 587ec01f4..084730285 100644 --- a/npc/merchants/milk_trader.txt +++ b/npc/merchants/milk_trader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf //= Copyright (C) kobra_k88 diff --git a/npc/merchants/novice_exchange.txt b/npc/merchants/novice_exchange.txt index 8f26062c4..e930b8efb 100644 --- a/npc/merchants/novice_exchange.txt +++ b/npc/merchants/novice_exchange.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Team //= Copyright (C) eAthena Team //= Copyright (C) L0ne_W0lf diff --git a/npc/merchants/old_pharmacist.txt b/npc/merchants/old_pharmacist.txt index a5ad24b8e..828b8e0e3 100644 --- a/npc/merchants/old_pharmacist.txt +++ b/npc/merchants/old_pharmacist.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/merchants/quivers.txt b/npc/merchants/quivers.txt index 98fe634c9..7fc473dcf 100644 --- a/npc/merchants/quivers.txt +++ b/npc/merchants/quivers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Nexon //= Copyright (C) L0ne_W0lf diff --git a/npc/merchants/refine.txt b/npc/merchants/refine.txt index 8fa63a4b3..a11d17c26 100644 --- a/npc/merchants/refine.txt +++ b/npc/merchants/refine.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Xantara diff --git a/npc/merchants/renters.txt b/npc/merchants/renters.txt index ad1c88d6e..6c8190fe9 100644 --- a/npc/merchants/renters.txt +++ b/npc/merchants/renters.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/merchants/shops.txt b/npc/merchants/shops.txt index acfbe7077..5d7f2c16a 100644 --- a/npc/merchants/shops.txt +++ b/npc/merchants/shops.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Yommy //= Copyright (C) Streusel //= Copyright (C) Euphy diff --git a/npc/merchants/socket_enchant.txt b/npc/merchants/socket_enchant.txt index e29e5ec13..bd89fe9ca 100644 --- a/npc/merchants/socket_enchant.txt +++ b/npc/merchants/socket_enchant.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/merchants/socket_enchant2.txt b/npc/merchants/socket_enchant2.txt index 575a4f540..22b7c8a07 100644 --- a/npc/merchants/socket_enchant2.txt +++ b/npc/merchants/socket_enchant2.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Gepard diff --git a/npc/merchants/wander_pet_food.txt b/npc/merchants/wander_pet_food.txt index 08fcdc0a8..6e0742f42 100644 --- a/npc/merchants/wander_pet_food.txt +++ b/npc/merchants/wander_pet_food.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= diff --git a/npc/mobs/citycleaners.txt b/npc/mobs/citycleaners.txt index 5cd3d9229..472ffe734 100644 --- a/npc/mobs/citycleaners.txt +++ b/npc/mobs/citycleaners.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Playtester //= Copyright (C) Komurka diff --git a/npc/mobs/jail.txt b/npc/mobs/jail.txt index 1333ad13a..86cbf072c 100644 --- a/npc/mobs/jail.txt +++ b/npc/mobs/jail.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mobs/pvp.txt b/npc/mobs/pvp.txt index d8f0a31f9..674ef9834 100644 --- a/npc/mobs/pvp.txt +++ b/npc/mobs/pvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/mobs/towns.txt b/npc/mobs/towns.txt index 71e15b1d7..fcde3a3d8 100644 --- a/npc/mobs/towns.txt +++ b/npc/mobs/towns.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/CashShop_Functions.txt b/npc/other/CashShop_Functions.txt index 0d236154c..d7669c81d 100644 --- a/npc/other/CashShop_Functions.txt +++ b/npc/other/CashShop_Functions.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/other/Global_Functions.txt b/npc/other/Global_Functions.txt index ddc336f20..fc9018210 100644 --- a/npc/other/Global_Functions.txt +++ b/npc/other/Global_Functions.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) AnnieRuru //= Copyright (C) Emistry //= Copyright (C) Euphy diff --git a/npc/other/acolyte_warp.txt b/npc/other/acolyte_warp.txt index 7bb313ab7..7354d58ce 100644 --- a/npc/other/acolyte_warp.txt +++ b/npc/other/acolyte_warp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/arena/arena_aco.txt b/npc/other/arena/arena_aco.txt index 81c416f75..6133a095e 100644 --- a/npc/other/arena/arena_aco.txt +++ b/npc/other/arena/arena_aco.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/other/arena/arena_lvl50.txt b/npc/other/arena/arena_lvl50.txt index 31f1516b2..39c9aa770 100644 --- a/npc/other/arena/arena_lvl50.txt +++ b/npc/other/arena/arena_lvl50.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) SinSloth diff --git a/npc/other/arena/arena_lvl60.txt b/npc/other/arena/arena_lvl60.txt index 1bc767a1b..9fafd5841 100644 --- a/npc/other/arena/arena_lvl60.txt +++ b/npc/other/arena/arena_lvl60.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/other/arena/arena_lvl70.txt b/npc/other/arena/arena_lvl70.txt index e87a9c9c2..ac1ba39f5 100644 --- a/npc/other/arena/arena_lvl70.txt +++ b/npc/other/arena/arena_lvl70.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) SinSloth diff --git a/npc/other/arena/arena_lvl80.txt b/npc/other/arena/arena_lvl80.txt index deb4599fc..a1078dd38 100644 --- a/npc/other/arena/arena_lvl80.txt +++ b/npc/other/arena/arena_lvl80.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) SinSloth diff --git a/npc/other/arena/arena_party.txt b/npc/other/arena/arena_party.txt index 91327d54e..f8d4a1b9e 100644 --- a/npc/other/arena/arena_party.txt +++ b/npc/other/arena/arena_party.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Inkfish diff --git a/npc/other/arena/arena_point.txt b/npc/other/arena/arena_point.txt index f8fe03a82..9594cfbdf 100644 --- a/npc/other/arena/arena_point.txt +++ b/npc/other/arena/arena_point.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/arena/arena_room.txt b/npc/other/arena/arena_room.txt index d0f13b261..d42e9a15f 100644 --- a/npc/other/arena/arena_room.txt +++ b/npc/other/arena/arena_room.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth diff --git a/npc/other/auction.txt b/npc/other/auction.txt index 6be1a03c4..84815febb 100644 --- a/npc/other/auction.txt +++ b/npc/other/auction.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= diff --git a/npc/other/books.txt b/npc/other/books.txt index b46fbde0a..fc46e138a 100644 --- a/npc/other/books.txt +++ b/npc/other/books.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/bulletin_boards.txt b/npc/other/bulletin_boards.txt index 66c9d6b8b..8bed15486 100644 --- a/npc/other/bulletin_boards.txt +++ b/npc/other/bulletin_boards.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/other/card_trader.txt b/npc/other/card_trader.txt index d4f134cd9..f49a40fd7 100644 --- a/npc/other/card_trader.txt +++ b/npc/other/card_trader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Elias (og2) //= diff --git a/npc/other/comodo_gambling.txt b/npc/other/comodo_gambling.txt index 94285e8a2..4fffe67ce 100644 --- a/npc/other/comodo_gambling.txt +++ b/npc/other/comodo_gambling.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Kisuka diff --git a/npc/other/divorce.txt b/npc/other/divorce.txt index 0cb262349..450a9bfa8 100644 --- a/npc/other/divorce.txt +++ b/npc/other/divorce.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf //= Copyright (C) LightFighter diff --git a/npc/other/dynamicnpc_create.txt b/npc/other/dynamicnpc_create.txt index fc98abfb7..8f10382eb 100644 --- a/npc/other/dynamicnpc_create.txt +++ b/npc/other/dynamicnpc_create.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 Hercules Dev Team //= Copyright (C) KirieZ //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/fortune.txt b/npc/other/fortune.txt index 11e72dd9e..a04372c96 100644 --- a/npc/other/fortune.txt +++ b/npc/other/fortune.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/gm_npcs.txt b/npc/other/gm_npcs.txt index 08b4da20c..66f636212 100644 --- a/npc/other/gm_npcs.txt +++ b/npc/other/gm_npcs.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/goldpc.txt b/npc/other/goldpc.txt index d7bb07bb8..876508f4b 100644 --- a/npc/other/goldpc.txt +++ b/npc/other/goldpc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2023-2024 Hercules Dev Team +//= Copyright (C) 2023-2025 Hercules Dev Team //= Copyright (C) KirieZ //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/guildpvp.txt b/npc/other/guildpvp.txt index e6e880581..835cc9a19 100644 --- a/npc/other/guildpvp.txt +++ b/npc/other/guildpvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/other/gympass.txt b/npc/other/gympass.txt index 6a313e528..c12307e9f 100644 --- a/npc/other/gympass.txt +++ b/npc/other/gympass.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= Copyright (C) Kisuka diff --git a/npc/other/hugel_bingo.txt b/npc/other/hugel_bingo.txt index 10356c7dd..dc8463087 100644 --- a/npc/other/hugel_bingo.txt +++ b/npc/other/hugel_bingo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) Samuray22 diff --git a/npc/other/inventory_expansion.txt b/npc/other/inventory_expansion.txt index 0bb882537..1c41adc41 100644 --- a/npc/other/inventory_expansion.txt +++ b/npc/other/inventory_expansion.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) 4144 //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/item_merge.txt b/npc/other/item_merge.txt index b82405b22..ac34e2909 100644 --- a/npc/other/item_merge.txt +++ b/npc/other/item_merge.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/mail.txt b/npc/other/mail.txt index 7c50c0639..3ee8e48b1 100644 --- a/npc/other/mail.txt +++ b/npc/other/mail.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= Copyright (C) Elias //= Copyright (C) Zephyrus diff --git a/npc/other/marriage.txt b/npc/other/marriage.txt index 49e5ddb64..6d749f5c1 100644 --- a/npc/other/marriage.txt +++ b/npc/other/marriage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/other/mercenary_rent.txt b/npc/other/mercenary_rent.txt index b7096f265..53c5ed199 100644 --- a/npc/other/mercenary_rent.txt +++ b/npc/other/mercenary_rent.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Zephyrus //= Copyright (C) L0ne_W0lf diff --git a/npc/other/monster_museum.txt b/npc/other/monster_museum.txt index 4204fc68e..ebaf29d7b 100644 --- a/npc/other/monster_museum.txt +++ b/npc/other/monster_museum.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Paradox924X //= Copyright (C) Samuray22 //= Copyright (C) Haplo diff --git a/npc/other/monster_race.txt b/npc/other/monster_race.txt index e890e8fcc..e4715f7d7 100644 --- a/npc/other/monster_race.txt +++ b/npc/other/monster_race.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Capuche //= Copyright (C) Joseph //= Copyright (C) Euphy diff --git a/npc/other/msg_boards.txt b/npc/other/msg_boards.txt index 36c8ba1d9..61c196b0a 100644 --- a/npc/other/msg_boards.txt +++ b/npc/other/msg_boards.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) SinSloth //= Copyright (C) Silent diff --git a/npc/other/poring_war.txt b/npc/other/poring_war.txt index 04e3d36c7..f09029b3c 100644 --- a/npc/other/poring_war.txt +++ b/npc/other/poring_war.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Slim //= Copyright (C) CalciumKid diff --git a/npc/other/powernpc.txt b/npc/other/powernpc.txt index cb4bbe302..cb949a8af 100644 --- a/npc/other/powernpc.txt +++ b/npc/other/powernpc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) KarLeada diff --git a/npc/other/private_airship.txt b/npc/other/private_airship.txt index 576020e8f..cf0c7d3d6 100644 --- a/npc/other/private_airship.txt +++ b/npc/other/private_airship.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 Hercules Dev Team //= Copyright (C) Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/other/pvp.txt b/npc/other/pvp.txt index d240baa17..4839547c1 100644 --- a/npc/other/pvp.txt +++ b/npc/other/pvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Elias (og2) diff --git a/npc/other/turbo_track.txt b/npc/other/turbo_track.txt index 94b3b009e..764cb5f7b 100644 --- a/npc/other/turbo_track.txt +++ b/npc/other/turbo_track.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) Elias diff --git a/npc/pre-re/airports/izlude.txt b/npc/pre-re/airports/izlude.txt index b24620351..c07c6b1c3 100644 --- a/npc/pre-re/airports/izlude.txt +++ b/npc/pre-re/airports/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/cities/alberta.txt b/npc/pre-re/cities/alberta.txt index 5ddb88e85..3dbe102ec 100644 --- a/npc/pre-re/cities/alberta.txt +++ b/npc/pre-re/cities/alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/cities/izlude.txt b/npc/pre-re/cities/izlude.txt index bb2f91b7e..ce40c711a 100644 --- a/npc/pre-re/cities/izlude.txt +++ b/npc/pre-re/cities/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/cities/jawaii.txt b/npc/pre-re/cities/jawaii.txt index f6af1151e..9e33ff8ec 100644 --- a/npc/pre-re/cities/jawaii.txt +++ b/npc/pre-re/cities/jawaii.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/cities/yuno.txt b/npc/pre-re/cities/yuno.txt index e599173ae..1a44e548c 100644 --- a/npc/pre-re/cities/yuno.txt +++ b/npc/pre-re/cities/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/guides/guides_alberta.txt b/npc/pre-re/guides/guides_alberta.txt index e2461ee26..010442a13 100644 --- a/npc/pre-re/guides/guides_alberta.txt +++ b/npc/pre-re/guides/guides_alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) erKURITA //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/guides/guides_aldebaran.txt b/npc/pre-re/guides/guides_aldebaran.txt index 47630adbf..ef0c7fb8d 100644 --- a/npc/pre-re/guides/guides_aldebaran.txt +++ b/npc/pre-re/guides/guides_aldebaran.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Samuray22 //= Copyright (C) Silent diff --git a/npc/pre-re/guides/guides_amatsu.txt b/npc/pre-re/guides/guides_amatsu.txt index 9fb02ce90..b8ae61fe5 100644 --- a/npc/pre-re/guides/guides_amatsu.txt +++ b/npc/pre-re/guides/guides_amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/guides/guides_ayothaya.txt b/npc/pre-re/guides/guides_ayothaya.txt index 1523b1b3b..9b7f7e4b2 100644 --- a/npc/pre-re/guides/guides_ayothaya.txt +++ b/npc/pre-re/guides/guides_ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) MasterOfMuppets //= Copyright (C) L0ne_W0lf //= diff --git a/npc/pre-re/guides/guides_comodo.txt b/npc/pre-re/guides/guides_comodo.txt index c7f27fda1..3b7184bcc 100644 --- a/npc/pre-re/guides/guides_comodo.txt +++ b/npc/pre-re/guides/guides_comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) MasterOfMuppets //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/guides/guides_einbroch.txt b/npc/pre-re/guides/guides_einbroch.txt index 8ca225b79..9bfe95e91 100644 --- a/npc/pre-re/guides/guides_einbroch.txt +++ b/npc/pre-re/guides/guides_einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) erKURITA //= Copyright (C) Lupus diff --git a/npc/pre-re/guides/guides_geffen.txt b/npc/pre-re/guides/guides_geffen.txt index b2fe684f7..352afda4f 100644 --- a/npc/pre-re/guides/guides_geffen.txt +++ b/npc/pre-re/guides/guides_geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) Silent //= Copyright (C) Poki#3 diff --git a/npc/pre-re/guides/guides_gonryun.txt b/npc/pre-re/guides/guides_gonryun.txt index f0d6b30ca..4c5442958 100644 --- a/npc/pre-re/guides/guides_gonryun.txt +++ b/npc/pre-re/guides/guides_gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) kobra_k88 //= diff --git a/npc/pre-re/guides/guides_hugel.txt b/npc/pre-re/guides/guides_hugel.txt index c180313f5..23fe49fcd 100644 --- a/npc/pre-re/guides/guides_hugel.txt +++ b/npc/pre-re/guides/guides_hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) L0ne_W0lf //= Copyright (C) erKURITA diff --git a/npc/pre-re/guides/guides_izlude.txt b/npc/pre-re/guides/guides_izlude.txt index 6827a53a2..e76966b97 100644 --- a/npc/pre-re/guides/guides_izlude.txt +++ b/npc/pre-re/guides/guides_izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) erKURITA //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/guides/guides_juno.txt b/npc/pre-re/guides/guides_juno.txt index 24ce5f612..8dab8aa26 100644 --- a/npc/pre-re/guides/guides_juno.txt +++ b/npc/pre-re/guides/guides_juno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) Musashiden //= Copyright (C) Lupus diff --git a/npc/pre-re/guides/guides_lighthalzen.txt b/npc/pre-re/guides/guides_lighthalzen.txt index fc2dd7cf5..110f18176 100644 --- a/npc/pre-re/guides/guides_lighthalzen.txt +++ b/npc/pre-re/guides/guides_lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/guides/guides_louyang.txt b/npc/pre-re/guides/guides_louyang.txt index 00fdaeaa9..b92d6b635 100644 --- a/npc/pre-re/guides/guides_louyang.txt +++ b/npc/pre-re/guides/guides_louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Athena //= Copyright (C) Tsuyuki diff --git a/npc/pre-re/guides/guides_morroc.txt b/npc/pre-re/guides/guides_morroc.txt index 0d823a056..15248668d 100644 --- a/npc/pre-re/guides/guides_morroc.txt +++ b/npc/pre-re/guides/guides_morroc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) Silent //= Copyright (C) Lupus diff --git a/npc/pre-re/guides/guides_moscovia.txt b/npc/pre-re/guides/guides_moscovia.txt index b9b886d68..72051b5c9 100644 --- a/npc/pre-re/guides/guides_moscovia.txt +++ b/npc/pre-re/guides/guides_moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/guides/guides_niflheim.txt b/npc/pre-re/guides/guides_niflheim.txt index ba93edb87..98407ab64 100644 --- a/npc/pre-re/guides/guides_niflheim.txt +++ b/npc/pre-re/guides/guides_niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf //= diff --git a/npc/pre-re/guides/guides_payon.txt b/npc/pre-re/guides/guides_payon.txt index d24a54b99..c7b19bcb2 100644 --- a/npc/pre-re/guides/guides_payon.txt +++ b/npc/pre-re/guides/guides_payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Silent //= Copyright (C) erKURITA //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/guides/guides_prontera.txt b/npc/pre-re/guides/guides_prontera.txt index 133f0a453..d9ac5ab35 100644 --- a/npc/pre-re/guides/guides_prontera.txt +++ b/npc/pre-re/guides/guides_prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) Silent //= Copyright (C) erKURITA diff --git a/npc/pre-re/guides/guides_rachel.txt b/npc/pre-re/guides/guides_rachel.txt index 434cfdd48..ba7021bde 100644 --- a/npc/pre-re/guides/guides_rachel.txt +++ b/npc/pre-re/guides/guides_rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= diff --git a/npc/pre-re/guides/guides_umbala.txt b/npc/pre-re/guides/guides_umbala.txt index 90c603000..e6f4a6fbb 100644 --- a/npc/pre-re/guides/guides_umbala.txt +++ b/npc/pre-re/guides/guides_umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) erKURITA //= Copyright (C) Lupus //= Copyright (C) Dizzy diff --git a/npc/pre-re/guides/guides_veins.txt b/npc/pre-re/guides/guides_veins.txt index 8b3718021..a69ca28ca 100644 --- a/npc/pre-re/guides/guides_veins.txt +++ b/npc/pre-re/guides/guides_veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/jobs/1-1/acolyte.txt b/npc/pre-re/jobs/1-1/acolyte.txt index f2405091f..2cb089951 100644 --- a/npc/pre-re/jobs/1-1/acolyte.txt +++ b/npc/pre-re/jobs/1-1/acolyte.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Samuray22 //= Copyright (C) massdriller diff --git a/npc/pre-re/jobs/1-1/archer.txt b/npc/pre-re/jobs/1-1/archer.txt index fcf8a91f5..17a6fce7b 100644 --- a/npc/pre-re/jobs/1-1/archer.txt +++ b/npc/pre-re/jobs/1-1/archer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) massdriller //= Copyright (C) Lupus //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/jobs/1-1/mage.txt b/npc/pre-re/jobs/1-1/mage.txt index cd5625a4c..a1e0b5499 100644 --- a/npc/pre-re/jobs/1-1/mage.txt +++ b/npc/pre-re/jobs/1-1/mage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) Samuray22 diff --git a/npc/pre-re/jobs/1-1/merchant.txt b/npc/pre-re/jobs/1-1/merchant.txt index 53f1751a7..d5503a9fd 100644 --- a/npc/pre-re/jobs/1-1/merchant.txt +++ b/npc/pre-re/jobs/1-1/merchant.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Silent //= Copyright (C) massdriller diff --git a/npc/pre-re/jobs/1-1/swordman.txt b/npc/pre-re/jobs/1-1/swordman.txt index 43ab4d4ab..f064ae4e7 100644 --- a/npc/pre-re/jobs/1-1/swordman.txt +++ b/npc/pre-re/jobs/1-1/swordman.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Yommy //= Copyright (C) ultramage //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/jobs/1-1/thief.txt b/npc/pre-re/jobs/1-1/thief.txt index 8abee62e4..3e579a0e3 100644 --- a/npc/pre-re/jobs/1-1/thief.txt +++ b/npc/pre-re/jobs/1-1/thief.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/jobs/1-1e/taekwon.txt b/npc/pre-re/jobs/1-1e/taekwon.txt index ce7398dc1..9a98506f5 100644 --- a/npc/pre-re/jobs/1-1e/taekwon.txt +++ b/npc/pre-re/jobs/1-1e/taekwon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 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 diff --git a/npc/pre-re/jobs/novice/novice.txt b/npc/pre-re/jobs/novice/novice.txt index 155e6d7ce..6a8898523 100644 --- a/npc/pre-re/jobs/novice/novice.txt +++ b/npc/pre-re/jobs/novice/novice.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Kisuka //= Copyright (C) Samuray22 diff --git a/npc/pre-re/kafras/kafras.txt b/npc/pre-re/kafras/kafras.txt index 776dd6b47..1be0b6be8 100644 --- a/npc/pre-re/kafras/kafras.txt +++ b/npc/pre-re/kafras/kafras.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/mapflag/gvg.txt b/npc/pre-re/mapflag/gvg.txt index 64f6c02e7..1fb3ff793 100644 --- a/npc/pre-re/mapflag/gvg.txt +++ b/npc/pre-re/mapflag/gvg.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 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 diff --git a/npc/pre-re/merchants/ammo_boxes.txt b/npc/pre-re/merchants/ammo_boxes.txt index d7c3c41da..1ded9771a 100644 --- a/npc/pre-re/merchants/ammo_boxes.txt +++ b/npc/pre-re/merchants/ammo_boxes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/merchants/ammo_dealer.txt b/npc/pre-re/merchants/ammo_dealer.txt index a343d01a0..bed7be9be 100644 --- a/npc/pre-re/merchants/ammo_dealer.txt +++ b/npc/pre-re/merchants/ammo_dealer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/merchants/shops.txt b/npc/pre-re/merchants/shops.txt index ebc500d1a..b4abdb7a3 100644 --- a/npc/pre-re/merchants/shops.txt +++ b/npc/pre-re/merchants/shops.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Frost //= Copyright (C) Streusel //= Copyright (C) Daegaladh diff --git a/npc/pre-re/mobs/citycleaners.txt b/npc/pre-re/mobs/citycleaners.txt index 6e8852c54..b39586df8 100644 --- a/npc/pre-re/mobs/citycleaners.txt +++ b/npc/pre-re/mobs/citycleaners.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/mobs/dungeons/abbey.txt b/npc/pre-re/mobs/dungeons/abbey.txt index 956f353a7..d44008a70 100644 --- a/npc/pre-re/mobs/dungeons/abbey.txt +++ b/npc/pre-re/mobs/dungeons/abbey.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) $ephiroth //= diff --git a/npc/pre-re/mobs/dungeons/abyss.txt b/npc/pre-re/mobs/dungeons/abyss.txt index a637a7749..983b8a5f6 100644 --- a/npc/pre-re/mobs/dungeons/abyss.txt +++ b/npc/pre-re/mobs/dungeons/abyss.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Nexon diff --git a/npc/pre-re/mobs/dungeons/alde_dun.txt b/npc/pre-re/mobs/dungeons/alde_dun.txt index fb9a781d6..9fc404525 100644 --- a/npc/pre-re/mobs/dungeons/alde_dun.txt +++ b/npc/pre-re/mobs/dungeons/alde_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/ama_dun.txt b/npc/pre-re/mobs/dungeons/ama_dun.txt index f90899c58..c688055aa 100644 --- a/npc/pre-re/mobs/dungeons/ama_dun.txt +++ b/npc/pre-re/mobs/dungeons/ama_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/anthell.txt b/npc/pre-re/mobs/dungeons/anthell.txt index f576eed4b..01ef66f4f 100644 --- a/npc/pre-re/mobs/dungeons/anthell.txt +++ b/npc/pre-re/mobs/dungeons/anthell.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/ayo_dun.txt b/npc/pre-re/mobs/dungeons/ayo_dun.txt index c2d061887..13bb288d5 100644 --- a/npc/pre-re/mobs/dungeons/ayo_dun.txt +++ b/npc/pre-re/mobs/dungeons/ayo_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Lupus diff --git a/npc/pre-re/mobs/dungeons/beach_dun.txt b/npc/pre-re/mobs/dungeons/beach_dun.txt index 523339e6a..6a2a196be 100644 --- a/npc/pre-re/mobs/dungeons/beach_dun.txt +++ b/npc/pre-re/mobs/dungeons/beach_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/c_tower.txt b/npc/pre-re/mobs/dungeons/c_tower.txt index 19368c772..f0be2a052 100644 --- a/npc/pre-re/mobs/dungeons/c_tower.txt +++ b/npc/pre-re/mobs/dungeons/c_tower.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/ein_dun.txt b/npc/pre-re/mobs/dungeons/ein_dun.txt index 93458dd45..fb653b105 100644 --- a/npc/pre-re/mobs/dungeons/ein_dun.txt +++ b/npc/pre-re/mobs/dungeons/ein_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/mobs/dungeons/gef_dun.txt b/npc/pre-re/mobs/dungeons/gef_dun.txt index f61b2367b..6a0236d3b 100644 --- a/npc/pre-re/mobs/dungeons/gef_dun.txt +++ b/npc/pre-re/mobs/dungeons/gef_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/gefenia.txt b/npc/pre-re/mobs/dungeons/gefenia.txt index 532324b1a..f7ea50c46 100644 --- a/npc/pre-re/mobs/dungeons/gefenia.txt +++ b/npc/pre-re/mobs/dungeons/gefenia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/mobs/dungeons/glastheim.txt b/npc/pre-re/mobs/dungeons/glastheim.txt index 84415e9d8..98675c54a 100644 --- a/npc/pre-re/mobs/dungeons/glastheim.txt +++ b/npc/pre-re/mobs/dungeons/glastheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets diff --git a/npc/pre-re/mobs/dungeons/gld_dun.txt b/npc/pre-re/mobs/dungeons/gld_dun.txt index a8d0143e2..27b17c4a0 100644 --- a/npc/pre-re/mobs/dungeons/gld_dun.txt +++ b/npc/pre-re/mobs/dungeons/gld_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Gepard //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/gld_dunSE.txt b/npc/pre-re/mobs/dungeons/gld_dunSE.txt index 9d8dd084a..d82fe3aee 100644 --- a/npc/pre-re/mobs/dungeons/gld_dunSE.txt +++ b/npc/pre-re/mobs/dungeons/gld_dunSE.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/gon_dun.txt b/npc/pre-re/mobs/dungeons/gon_dun.txt index 237f415e7..b49931baf 100644 --- a/npc/pre-re/mobs/dungeons/gon_dun.txt +++ b/npc/pre-re/mobs/dungeons/gon_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/ice_dun.txt b/npc/pre-re/mobs/dungeons/ice_dun.txt index b8520c9c6..72fed52ff 100644 --- a/npc/pre-re/mobs/dungeons/ice_dun.txt +++ b/npc/pre-re/mobs/dungeons/ice_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/in_sphinx.txt b/npc/pre-re/mobs/dungeons/in_sphinx.txt index d9c8295df..f123237a3 100644 --- a/npc/pre-re/mobs/dungeons/in_sphinx.txt +++ b/npc/pre-re/mobs/dungeons/in_sphinx.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/iz_dun.txt b/npc/pre-re/mobs/dungeons/iz_dun.txt index 38d4ed2e8..bb6d7a647 100644 --- a/npc/pre-re/mobs/dungeons/iz_dun.txt +++ b/npc/pre-re/mobs/dungeons/iz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/juperos.txt b/npc/pre-re/mobs/dungeons/juperos.txt index 9080aa169..0968c6cee 100644 --- a/npc/pre-re/mobs/dungeons/juperos.txt +++ b/npc/pre-re/mobs/dungeons/juperos.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/mobs/dungeons/kh_dun.txt b/npc/pre-re/mobs/dungeons/kh_dun.txt index f82eefec3..613990d63 100644 --- a/npc/pre-re/mobs/dungeons/kh_dun.txt +++ b/npc/pre-re/mobs/dungeons/kh_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/lhz_dun.txt b/npc/pre-re/mobs/dungeons/lhz_dun.txt index d06e56e29..3a82ef291 100644 --- a/npc/pre-re/mobs/dungeons/lhz_dun.txt +++ b/npc/pre-re/mobs/dungeons/lhz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/mobs/dungeons/lou_dun.txt b/npc/pre-re/mobs/dungeons/lou_dun.txt index 723878cab..926c85cca 100644 --- a/npc/pre-re/mobs/dungeons/lou_dun.txt +++ b/npc/pre-re/mobs/dungeons/lou_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/mag_dun.txt b/npc/pre-re/mobs/dungeons/mag_dun.txt index 47dbb79a3..9d12e5c04 100644 --- a/npc/pre-re/mobs/dungeons/mag_dun.txt +++ b/npc/pre-re/mobs/dungeons/mag_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Lupus //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/mjo_dun.txt b/npc/pre-re/mobs/dungeons/mjo_dun.txt index a05a3f6a8..a1d2ddd64 100644 --- a/npc/pre-re/mobs/dungeons/mjo_dun.txt +++ b/npc/pre-re/mobs/dungeons/mjo_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/moc_pryd.txt b/npc/pre-re/mobs/dungeons/moc_pryd.txt index bfc5b2d87..109bf539c 100644 --- a/npc/pre-re/mobs/dungeons/moc_pryd.txt +++ b/npc/pre-re/mobs/dungeons/moc_pryd.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/mosk_dun.txt b/npc/pre-re/mobs/dungeons/mosk_dun.txt index 50a5ba985..b673df75a 100644 --- a/npc/pre-re/mobs/dungeons/mosk_dun.txt +++ b/npc/pre-re/mobs/dungeons/mosk_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/pre-re/mobs/dungeons/nyd_dun.txt b/npc/pre-re/mobs/dungeons/nyd_dun.txt index a73d74181..c4d5cec35 100644 --- a/npc/pre-re/mobs/dungeons/nyd_dun.txt +++ b/npc/pre-re/mobs/dungeons/nyd_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/mobs/dungeons/odin.txt b/npc/pre-re/mobs/dungeons/odin.txt index 0ec772617..08b713043 100644 --- a/npc/pre-re/mobs/dungeons/odin.txt +++ b/npc/pre-re/mobs/dungeons/odin.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Vicious diff --git a/npc/pre-re/mobs/dungeons/orcsdun.txt b/npc/pre-re/mobs/dungeons/orcsdun.txt index 496a8b1fd..e62aca52a 100644 --- a/npc/pre-re/mobs/dungeons/orcsdun.txt +++ b/npc/pre-re/mobs/dungeons/orcsdun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/pay_dun.txt b/npc/pre-re/mobs/dungeons/pay_dun.txt index 1b4d61212..ff9a886fc 100644 --- a/npc/pre-re/mobs/dungeons/pay_dun.txt +++ b/npc/pre-re/mobs/dungeons/pay_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/prt_maze.txt b/npc/pre-re/mobs/dungeons/prt_maze.txt index 23d99ec7d..e883c7a79 100644 --- a/npc/pre-re/mobs/dungeons/prt_maze.txt +++ b/npc/pre-re/mobs/dungeons/prt_maze.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/prt_sew.txt b/npc/pre-re/mobs/dungeons/prt_sew.txt index fae948709..3fdf72e62 100644 --- a/npc/pre-re/mobs/dungeons/prt_sew.txt +++ b/npc/pre-re/mobs/dungeons/prt_sew.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/ra_san.txt b/npc/pre-re/mobs/dungeons/ra_san.txt index c6f5c575c..804ae7487 100644 --- a/npc/pre-re/mobs/dungeons/ra_san.txt +++ b/npc/pre-re/mobs/dungeons/ra_san.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/tha_t.txt b/npc/pre-re/mobs/dungeons/tha_t.txt index 80da6a2a7..a7da98521 100644 --- a/npc/pre-re/mobs/dungeons/tha_t.txt +++ b/npc/pre-re/mobs/dungeons/tha_t.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Playtester //= Copyright (C) Nexon diff --git a/npc/pre-re/mobs/dungeons/thor_v.txt b/npc/pre-re/mobs/dungeons/thor_v.txt index 5205c0db3..96487ea90 100644 --- a/npc/pre-re/mobs/dungeons/thor_v.txt +++ b/npc/pre-re/mobs/dungeons/thor_v.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= diff --git a/npc/pre-re/mobs/dungeons/treasure.txt b/npc/pre-re/mobs/dungeons/treasure.txt index b3f03332d..37368c888 100644 --- a/npc/pre-re/mobs/dungeons/treasure.txt +++ b/npc/pre-re/mobs/dungeons/treasure.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/tur_dun.txt b/npc/pre-re/mobs/dungeons/tur_dun.txt index 82d2106c8..ccff7611d 100644 --- a/npc/pre-re/mobs/dungeons/tur_dun.txt +++ b/npc/pre-re/mobs/dungeons/tur_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/um_dun.txt b/npc/pre-re/mobs/dungeons/um_dun.txt index 6ad53cd1a..974c0df9e 100644 --- a/npc/pre-re/mobs/dungeons/um_dun.txt +++ b/npc/pre-re/mobs/dungeons/um_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/dungeons/xmas_dun.txt b/npc/pre-re/mobs/dungeons/xmas_dun.txt index 1c0196a21..869b33818 100644 --- a/npc/pre-re/mobs/dungeons/xmas_dun.txt +++ b/npc/pre-re/mobs/dungeons/xmas_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/dungeons/yggdrasil.txt b/npc/pre-re/mobs/dungeons/yggdrasil.txt index bfe784420..d11ac58b9 100644 --- a/npc/pre-re/mobs/dungeons/yggdrasil.txt +++ b/npc/pre-re/mobs/dungeons/yggdrasil.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) DracoRPG //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/fields/amatsu.txt b/npc/pre-re/mobs/fields/amatsu.txt index 005b0dd09..a0295fc47 100644 --- a/npc/pre-re/mobs/fields/amatsu.txt +++ b/npc/pre-re/mobs/fields/amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Lupus //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/fields/ayothaya.txt b/npc/pre-re/mobs/fields/ayothaya.txt index e8cfa9baf..c2cf32d6b 100644 --- a/npc/pre-re/mobs/fields/ayothaya.txt +++ b/npc/pre-re/mobs/fields/ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) VP //= Copyright (C) Lupus diff --git a/npc/pre-re/mobs/fields/comodo.txt b/npc/pre-re/mobs/fields/comodo.txt index ef9a458d3..5293fe280 100644 --- a/npc/pre-re/mobs/fields/comodo.txt +++ b/npc/pre-re/mobs/fields/comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/fields/einbroch.txt b/npc/pre-re/mobs/fields/einbroch.txt index a5fa1fa89..703b7c0b9 100644 --- a/npc/pre-re/mobs/fields/einbroch.txt +++ b/npc/pre-re/mobs/fields/einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Vicious //= Copyright (C) Poki#3 diff --git a/npc/pre-re/mobs/fields/geffen.txt b/npc/pre-re/mobs/fields/geffen.txt index 0baf0388d..f1bfb4bc9 100644 --- a/npc/pre-re/mobs/fields/geffen.txt +++ b/npc/pre-re/mobs/fields/geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Lupus diff --git a/npc/pre-re/mobs/fields/gonryun.txt b/npc/pre-re/mobs/fields/gonryun.txt index 37eaf6d60..529353022 100644 --- a/npc/pre-re/mobs/fields/gonryun.txt +++ b/npc/pre-re/mobs/fields/gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/fields/hugel.txt b/npc/pre-re/mobs/fields/hugel.txt index 52e41f630..744ad1608 100644 --- a/npc/pre-re/mobs/fields/hugel.txt +++ b/npc/pre-re/mobs/fields/hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Vicious //= Copyright (C) Poki#3 diff --git a/npc/pre-re/mobs/fields/lighthalzen.txt b/npc/pre-re/mobs/fields/lighthalzen.txt index 8ad675799..de3d52a8e 100644 --- a/npc/pre-re/mobs/fields/lighthalzen.txt +++ b/npc/pre-re/mobs/fields/lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Playtester diff --git a/npc/pre-re/mobs/fields/louyang.txt b/npc/pre-re/mobs/fields/louyang.txt index 0f061d6a3..caaaad1eb 100644 --- a/npc/pre-re/mobs/fields/louyang.txt +++ b/npc/pre-re/mobs/fields/louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets //= Copyright (C) Evera diff --git a/npc/pre-re/mobs/fields/lutie.txt b/npc/pre-re/mobs/fields/lutie.txt index 57d8455bc..2ca28c93f 100644 --- a/npc/pre-re/mobs/fields/lutie.txt +++ b/npc/pre-re/mobs/fields/lutie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/fields/manuk.txt b/npc/pre-re/mobs/fields/manuk.txt index 38e0d052f..06d2aa4ba 100644 --- a/npc/pre-re/mobs/fields/manuk.txt +++ b/npc/pre-re/mobs/fields/manuk.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) scriptor //= Copyright (C) alexx //= Copyright (C) MaC diff --git a/npc/pre-re/mobs/fields/mjolnir.txt b/npc/pre-re/mobs/fields/mjolnir.txt index 09ff5694b..6693019e1 100644 --- a/npc/pre-re/mobs/fields/mjolnir.txt +++ b/npc/pre-re/mobs/fields/mjolnir.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/fields/morocc.txt b/npc/pre-re/mobs/fields/morocc.txt index e5df6a2d2..5c56a0e7e 100644 --- a/npc/pre-re/mobs/fields/morocc.txt +++ b/npc/pre-re/mobs/fields/morocc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/pre-re/mobs/fields/moscovia.txt b/npc/pre-re/mobs/fields/moscovia.txt index 01426a14c..3b4194775 100644 --- a/npc/pre-re/mobs/fields/moscovia.txt +++ b/npc/pre-re/mobs/fields/moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/pre-re/mobs/fields/niflheim.txt b/npc/pre-re/mobs/fields/niflheim.txt index a45f9432e..098f27c23 100644 --- a/npc/pre-re/mobs/fields/niflheim.txt +++ b/npc/pre-re/mobs/fields/niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets //= Copyright (C) DracoRPG diff --git a/npc/pre-re/mobs/fields/payon.txt b/npc/pre-re/mobs/fields/payon.txt index 2e6a3cdc1..eea14aefb 100644 --- a/npc/pre-re/mobs/fields/payon.txt +++ b/npc/pre-re/mobs/fields/payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/fields/prontera.txt b/npc/pre-re/mobs/fields/prontera.txt index b858b1493..b29557684 100644 --- a/npc/pre-re/mobs/fields/prontera.txt +++ b/npc/pre-re/mobs/fields/prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Lupus //= Copyright (C) Athena diff --git a/npc/pre-re/mobs/fields/rachel.txt b/npc/pre-re/mobs/fields/rachel.txt index c6952aeb4..cc0ea214f 100644 --- a/npc/pre-re/mobs/fields/rachel.txt +++ b/npc/pre-re/mobs/fields/rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Sepheus diff --git a/npc/pre-re/mobs/fields/splendide.txt b/npc/pre-re/mobs/fields/splendide.txt index 4cee163db..4620ab8d4 100644 --- a/npc/pre-re/mobs/fields/splendide.txt +++ b/npc/pre-re/mobs/fields/splendide.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) scriptor //= Copyright (C) alexx //= Copyright (C) MaC diff --git a/npc/pre-re/mobs/fields/umbala.txt b/npc/pre-re/mobs/fields/umbala.txt index 8296ecd9f..05729c223 100644 --- a/npc/pre-re/mobs/fields/umbala.txt +++ b/npc/pre-re/mobs/fields/umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Darkchild //= diff --git a/npc/pre-re/mobs/fields/veins.txt b/npc/pre-re/mobs/fields/veins.txt index 767b6a7d8..8d9c00a7b 100644 --- a/npc/pre-re/mobs/fields/veins.txt +++ b/npc/pre-re/mobs/fields/veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Gepard //= Copyright (C) Playtester //= Copyright (C) $ephiroth diff --git a/npc/pre-re/mobs/fields/yuno.txt b/npc/pre-re/mobs/fields/yuno.txt index 903f4726e..c29849512 100644 --- a/npc/pre-re/mobs/fields/yuno.txt +++ b/npc/pre-re/mobs/fields/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Vicious //= Copyright (C) Poki#3 diff --git a/npc/pre-re/other/bulletin_boards.txt b/npc/pre-re/other/bulletin_boards.txt index 190f116fb..201903acb 100644 --- a/npc/pre-re/other/bulletin_boards.txt +++ b/npc/pre-re/other/bulletin_boards.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/other/mercenary_rent.txt b/npc/pre-re/other/mercenary_rent.txt index 4a0425bfc..b754ba7c1 100644 --- a/npc/pre-re/other/mercenary_rent.txt +++ b/npc/pre-re/other/mercenary_rent.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/other/msg_boards.txt b/npc/pre-re/other/msg_boards.txt index 091c92622..1421b2bb8 100644 --- a/npc/pre-re/other/msg_boards.txt +++ b/npc/pre-re/other/msg_boards.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/other/pvp.txt b/npc/pre-re/other/pvp.txt index 474108710..f5868976d 100644 --- a/npc/pre-re/other/pvp.txt +++ b/npc/pre-re/other/pvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/other/resetskill.txt b/npc/pre-re/other/resetskill.txt index 516c134d8..2e5ee1d0d 100644 --- a/npc/pre-re/other/resetskill.txt +++ b/npc/pre-re/other/resetskill.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/other/turbo_track.txt b/npc/pre-re/other/turbo_track.txt index 2bf5d27a4..d4d30eb78 100644 --- a/npc/pre-re/other/turbo_track.txt +++ b/npc/pre-re/other/turbo_track.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_alligator.txt b/npc/pre-re/quests/collection/quest_alligator.txt index 248096679..712d72321 100644 --- a/npc/pre-re/quests/collection/quest_alligator.txt +++ b/npc/pre-re/quests/collection/quest_alligator.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_caramel.txt b/npc/pre-re/quests/collection/quest_caramel.txt index 2ed82e277..fc1e54829 100644 --- a/npc/pre-re/quests/collection/quest_caramel.txt +++ b/npc/pre-re/quests/collection/quest_caramel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_coco.txt b/npc/pre-re/quests/collection/quest_coco.txt index ad7f7a065..4bac7767c 100644 --- a/npc/pre-re/quests/collection/quest_coco.txt +++ b/npc/pre-re/quests/collection/quest_coco.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_creamy.txt b/npc/pre-re/quests/collection/quest_creamy.txt index d95ef9354..3d06295a3 100644 --- a/npc/pre-re/quests/collection/quest_creamy.txt +++ b/npc/pre-re/quests/collection/quest_creamy.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_demonpungus.txt b/npc/pre-re/quests/collection/quest_demonpungus.txt index 03d323896..9fd65236d 100644 --- a/npc/pre-re/quests/collection/quest_demonpungus.txt +++ b/npc/pre-re/quests/collection/quest_demonpungus.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_disguiseloliruri.txt b/npc/pre-re/quests/collection/quest_disguiseloliruri.txt index 7fd6f1c93..acef55037 100644 --- a/npc/pre-re/quests/collection/quest_disguiseloliruri.txt +++ b/npc/pre-re/quests/collection/quest_disguiseloliruri.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_dokebi.txt b/npc/pre-re/quests/collection/quest_dokebi.txt index 1d517a7a5..c88f23827 100644 --- a/npc/pre-re/quests/collection/quest_dokebi.txt +++ b/npc/pre-re/quests/collection/quest_dokebi.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_dryad.txt b/npc/pre-re/quests/collection/quest_dryad.txt index 7795f7aa3..a637572ff 100644 --- a/npc/pre-re/quests/collection/quest_dryad.txt +++ b/npc/pre-re/quests/collection/quest_dryad.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_fabre.txt b/npc/pre-re/quests/collection/quest_fabre.txt index 931c642ba..cb4bd4707 100644 --- a/npc/pre-re/quests/collection/quest_fabre.txt +++ b/npc/pre-re/quests/collection/quest_fabre.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_frilldora.txt b/npc/pre-re/quests/collection/quest_frilldora.txt index 9a5043ee2..1dbc2b4bf 100644 --- a/npc/pre-re/quests/collection/quest_frilldora.txt +++ b/npc/pre-re/quests/collection/quest_frilldora.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_goat.txt b/npc/pre-re/quests/collection/quest_goat.txt index 0207eeca3..ee3387ad1 100644 --- a/npc/pre-re/quests/collection/quest_goat.txt +++ b/npc/pre-re/quests/collection/quest_goat.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_golem.txt b/npc/pre-re/quests/collection/quest_golem.txt index b4a5ebe77..6e0fea0c4 100644 --- a/npc/pre-re/quests/collection/quest_golem.txt +++ b/npc/pre-re/quests/collection/quest_golem.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_hode.txt b/npc/pre-re/quests/collection/quest_hode.txt index 203f90afc..85dbb45a0 100644 --- a/npc/pre-re/quests/collection/quest_hode.txt +++ b/npc/pre-re/quests/collection/quest_hode.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_leafcat.txt b/npc/pre-re/quests/collection/quest_leafcat.txt index e8837ec4a..1db29e0f5 100644 --- a/npc/pre-re/quests/collection/quest_leafcat.txt +++ b/npc/pre-re/quests/collection/quest_leafcat.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_mantis.txt b/npc/pre-re/quests/collection/quest_mantis.txt index 3d8613016..d8260726a 100644 --- a/npc/pre-re/quests/collection/quest_mantis.txt +++ b/npc/pre-re/quests/collection/quest_mantis.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_pecopeco.txt b/npc/pre-re/quests/collection/quest_pecopeco.txt index ecc7d0e20..a80cbf7e3 100644 --- a/npc/pre-re/quests/collection/quest_pecopeco.txt +++ b/npc/pre-re/quests/collection/quest_pecopeco.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_pupa.txt b/npc/pre-re/quests/collection/quest_pupa.txt index f9fa46fc4..6d76133b1 100644 --- a/npc/pre-re/quests/collection/quest_pupa.txt +++ b/npc/pre-re/quests/collection/quest_pupa.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/collection/quest_zhupolong.txt b/npc/pre-re/quests/collection/quest_zhupolong.txt index d46e5824c..363e8cfab 100644 --- a/npc/pre-re/quests/collection/quest_zhupolong.txt +++ b/npc/pre-re/quests/collection/quest_zhupolong.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/first_class/tu_archer.txt b/npc/pre-re/quests/first_class/tu_archer.txt index 8e4313ed1..4560db84c 100644 --- a/npc/pre-re/quests/first_class/tu_archer.txt +++ b/npc/pre-re/quests/first_class/tu_archer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/monstertamers.txt b/npc/pre-re/quests/monstertamers.txt index 6866d32e6..081bcb368 100644 --- a/npc/pre-re/quests/monstertamers.txt +++ b/npc/pre-re/quests/monstertamers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/mrsmile.txt b/npc/pre-re/quests/mrsmile.txt index 80413e54b..40805027f 100644 --- a/npc/pre-re/quests/mrsmile.txt +++ b/npc/pre-re/quests/mrsmile.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/quests_13_1.txt b/npc/pre-re/quests/quests_13_1.txt index 01d88d589..3c09d877d 100644 --- a/npc/pre-re/quests/quests_13_1.txt +++ b/npc/pre-re/quests/quests_13_1.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/quests_izlude.txt b/npc/pre-re/quests/quests_izlude.txt index 06c8d8d9f..c637cb7ac 100644 --- a/npc/pre-re/quests/quests_izlude.txt +++ b/npc/pre-re/quests/quests_izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/quests_lighthalzen.txt b/npc/pre-re/quests/quests_lighthalzen.txt index 04f7f83b6..ca4581226 100644 --- a/npc/pre-re/quests/quests_lighthalzen.txt +++ b/npc/pre-re/quests/quests_lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/quests_nameless.txt b/npc/pre-re/quests/quests_nameless.txt index 536d493c2..3534f620a 100644 --- a/npc/pre-re/quests/quests_nameless.txt +++ b/npc/pre-re/quests/quests_nameless.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/quests_payon.txt b/npc/pre-re/quests/quests_payon.txt index 2010194a2..9a22466ed 100644 --- a/npc/pre-re/quests/quests_payon.txt +++ b/npc/pre-re/quests/quests_payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) JohnnyPlayy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/quests_veins.txt b/npc/pre-re/quests/quests_veins.txt index e7fbd499f..34f9a723d 100644 --- a/npc/pre-re/quests/quests_veins.txt +++ b/npc/pre-re/quests/quests_veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/quests/skills/novice_skills.txt b/npc/pre-re/quests/skills/novice_skills.txt index 8b505e913..0bb62aca7 100644 --- a/npc/pre-re/quests/skills/novice_skills.txt +++ b/npc/pre-re/quests/skills/novice_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Zopokx //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/pre-re/scripts.conf b/npc/pre-re/scripts.conf index a324b39c0..f55c5ef1f 100644 --- a/npc/pre-re/scripts.conf +++ b/npc/pre-re/scripts.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/scripts_jobs.conf b/npc/pre-re/scripts_jobs.conf index 31c60da86..bbbf432aa 100644 --- a/npc/pre-re/scripts_jobs.conf +++ b/npc/pre-re/scripts_jobs.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/scripts_main.conf b/npc/pre-re/scripts_main.conf index 89e61ec11..1279e93ca 100644 --- a/npc/pre-re/scripts_main.conf +++ b/npc/pre-re/scripts_main.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/scripts_mapflags.conf b/npc/pre-re/scripts_mapflags.conf index 5d27492c9..69badadc4 100644 --- a/npc/pre-re/scripts_mapflags.conf +++ b/npc/pre-re/scripts_mapflags.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 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 diff --git a/npc/pre-re/scripts_monsters.conf b/npc/pre-re/scripts_monsters.conf index 72fc943d8..350d9af30 100644 --- a/npc/pre-re/scripts_monsters.conf +++ b/npc/pre-re/scripts_monsters.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/scripts_warps.conf b/npc/pre-re/scripts_warps.conf index 59b66ed24..f018b4dec 100644 --- a/npc/pre-re/scripts_warps.conf +++ b/npc/pre-re/scripts_warps.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/warps/cities/izlude.txt b/npc/pre-re/warps/cities/izlude.txt index 9e7a0b944..8df5f1a90 100644 --- a/npc/pre-re/warps/cities/izlude.txt +++ b/npc/pre-re/warps/cities/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Juston84 //= Copyright (C) Nana //= Copyright (C) Athena diff --git a/npc/pre-re/warps/cities/rachel.txt b/npc/pre-re/warps/cities/rachel.txt index db6500197..ee42ded3d 100644 --- a/npc/pre-re/warps/cities/rachel.txt +++ b/npc/pre-re/warps/cities/rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) erKURITA diff --git a/npc/pre-re/warps/cities/yggdrasil.txt b/npc/pre-re/warps/cities/yggdrasil.txt index 63c9f02ae..c7b70ffd3 100644 --- a/npc/pre-re/warps/cities/yggdrasil.txt +++ b/npc/pre-re/warps/cities/yggdrasil.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) PKGINGO //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/warps/fields/com_fild.txt b/npc/pre-re/warps/fields/com_fild.txt index 5148ff967..7ae544b69 100644 --- a/npc/pre-re/warps/fields/com_fild.txt +++ b/npc/pre-re/warps/fields/com_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/pre-re/warps/fields/geffen_fild.txt b/npc/pre-re/warps/fields/geffen_fild.txt index 326c943ad..0a9367adf 100644 --- a/npc/pre-re/warps/fields/geffen_fild.txt +++ b/npc/pre-re/warps/fields/geffen_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/warps/fields/hugel_fild.txt b/npc/pre-re/warps/fields/hugel_fild.txt index 4e0c2cf77..7786dbdfb 100644 --- a/npc/pre-re/warps/fields/hugel_fild.txt +++ b/npc/pre-re/warps/fields/hugel_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Sara-chan diff --git a/npc/pre-re/warps/fields/morroc_fild.txt b/npc/pre-re/warps/fields/morroc_fild.txt index 0c3fe0505..a3d88113f 100644 --- a/npc/pre-re/warps/fields/morroc_fild.txt +++ b/npc/pre-re/warps/fields/morroc_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/pre-re/warps/fields/payon_fild.txt b/npc/pre-re/warps/fields/payon_fild.txt index 7da546931..cfadceee5 100644 --- a/npc/pre-re/warps/fields/payon_fild.txt +++ b/npc/pre-re/warps/fields/payon_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/pre-re/warps/fields/prontera_fild.txt b/npc/pre-re/warps/fields/prontera_fild.txt index c30fe226e..10fd54c5c 100644 --- a/npc/pre-re/warps/fields/prontera_fild.txt +++ b/npc/pre-re/warps/fields/prontera_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) Nana diff --git a/npc/pre-re/warps/fields/rachel_fild.txt b/npc/pre-re/warps/fields/rachel_fild.txt index ae9652ba1..bed912c8d 100644 --- a/npc/pre-re/warps/fields/rachel_fild.txt +++ b/npc/pre-re/warps/fields/rachel_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= diff --git a/npc/pre-re/warps/fields/veins_fild.txt b/npc/pre-re/warps/fields/veins_fild.txt index 0da9c3005..a3942b5e7 100644 --- a/npc/pre-re/warps/fields/veins_fild.txt +++ b/npc/pre-re/warps/fields/veins_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) $ephiroth diff --git a/npc/pre-re/warps/fields/yuno_fild.txt b/npc/pre-re/warps/fields/yuno_fild.txt index d492489d5..81934fd07 100644 --- a/npc/pre-re/warps/fields/yuno_fild.txt +++ b/npc/pre-re/warps/fields/yuno_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Sara //= Copyright (C) Nana //= diff --git a/npc/pre-re/warps/other/arena.txt b/npc/pre-re/warps/other/arena.txt index 980c554d6..39e1c858c 100644 --- a/npc/pre-re/warps/other/arena.txt +++ b/npc/pre-re/warps/other/arena.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/pre-re/warps/other/sign.txt b/npc/pre-re/warps/other/sign.txt index 94f1df12b..411b11082 100644 --- a/npc/pre-re/warps/other/sign.txt +++ b/npc/pre-re/warps/other/sign.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) MasterOfMuppets //= diff --git a/npc/quests/bard_quest.txt b/npc/quests/bard_quest.txt index ba322fac3..c7a64491c 100644 --- a/npc/quests/bard_quest.txt +++ b/npc/quests/bard_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) SinSloth //= Copyright (C) Lupus diff --git a/npc/quests/bunnyband.txt b/npc/quests/bunnyband.txt index e14e5e343..d9ba3eece 100644 --- a/npc/quests/bunnyband.txt +++ b/npc/quests/bunnyband.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/quests/cooking_quest.txt b/npc/quests/cooking_quest.txt index af7a7cab1..518ab3d4e 100644 --- a/npc/quests/cooking_quest.txt +++ b/npc/quests/cooking_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) ultramage //= Copyright (C) Samuray22 diff --git a/npc/quests/counteragent_mixture.txt b/npc/quests/counteragent_mixture.txt index 340a16e76..3d636654c 100644 --- a/npc/quests/counteragent_mixture.txt +++ b/npc/quests/counteragent_mixture.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nexon //= Copyright (C) Darkchild diff --git a/npc/quests/dandelion_request.txt b/npc/quests/dandelion_request.txt index 3a6f61e00..10c902762 100644 --- a/npc/quests/dandelion_request.txt +++ b/npc/quests/dandelion_request.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) SinSloth //= diff --git a/npc/quests/doomed_swords.txt b/npc/quests/doomed_swords.txt index e9f00f593..16ba62b4f 100644 --- a/npc/quests/doomed_swords.txt +++ b/npc/quests/doomed_swords.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) kobra_k88 diff --git a/npc/quests/doomed_swords_quest.txt b/npc/quests/doomed_swords_quest.txt index 79257ab2e..01a2f4c9f 100644 --- a/npc/quests/doomed_swords_quest.txt +++ b/npc/quests/doomed_swords_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/quests/eye_of_hellion.txt b/npc/quests/eye_of_hellion.txt index d3b558bd6..9e688a962 100644 --- a/npc/quests/eye_of_hellion.txt +++ b/npc/quests/eye_of_hellion.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/first_class/tu_acolyte.txt b/npc/quests/first_class/tu_acolyte.txt index ee256cd7f..a0dfcf384 100644 --- a/npc/quests/first_class/tu_acolyte.txt +++ b/npc/quests/first_class/tu_acolyte.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= Copyright (C) Euphy //= Copyright (C) Joseph diff --git a/npc/quests/first_class/tu_archer.txt b/npc/quests/first_class/tu_archer.txt index b0250014c..5a94d85f7 100644 --- a/npc/quests/first_class/tu_archer.txt +++ b/npc/quests/first_class/tu_archer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/first_class/tu_ma_th01.txt b/npc/quests/first_class/tu_ma_th01.txt index 2ef973eb4..1cb033920 100644 --- a/npc/quests/first_class/tu_ma_th01.txt +++ b/npc/quests/first_class/tu_ma_th01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) Jukka diff --git a/npc/quests/first_class/tu_magician01.txt b/npc/quests/first_class/tu_magician01.txt index 37e1fdc69..e8480767f 100644 --- a/npc/quests/first_class/tu_magician01.txt +++ b/npc/quests/first_class/tu_magician01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth diff --git a/npc/quests/first_class/tu_merchant.txt b/npc/quests/first_class/tu_merchant.txt index 4f9502205..071909f00 100644 --- a/npc/quests/first_class/tu_merchant.txt +++ b/npc/quests/first_class/tu_merchant.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth //= Copyright (C) Lupus diff --git a/npc/quests/first_class/tu_sword.txt b/npc/quests/first_class/tu_sword.txt index 0eb98d9cf..0e935ef07 100644 --- a/npc/quests/first_class/tu_sword.txt +++ b/npc/quests/first_class/tu_sword.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) KirieZ //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/first_class/tu_thief01.txt b/npc/quests/first_class/tu_thief01.txt index c4bf0332c..7c06700be 100644 --- a/npc/quests/first_class/tu_thief01.txt +++ b/npc/quests/first_class/tu_thief01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/quests/guildrelay.txt b/npc/quests/guildrelay.txt index fbfa3ebde..599ce0ad6 100644 --- a/npc/quests/guildrelay.txt +++ b/npc/quests/guildrelay.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/quests/gunslinger_quests.txt b/npc/quests/gunslinger_quests.txt index 8b73eb320..541669d22 100644 --- a/npc/quests/gunslinger_quests.txt +++ b/npc/quests/gunslinger_quests.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) Lupus diff --git a/npc/quests/juice_maker.txt b/npc/quests/juice_maker.txt index b95174dee..fd5a1fa84 100644 --- a/npc/quests/juice_maker.txt +++ b/npc/quests/juice_maker.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Lance diff --git a/npc/quests/kiel_hyre_quest.txt b/npc/quests/kiel_hyre_quest.txt index a735f00f8..8925f5ae3 100644 --- a/npc/quests/kiel_hyre_quest.txt +++ b/npc/quests/kiel_hyre_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) SinSloth diff --git a/npc/quests/lvl4_weapon_quest.txt b/npc/quests/lvl4_weapon_quest.txt index ae90c45f7..c6e059a1f 100644 --- a/npc/quests/lvl4_weapon_quest.txt +++ b/npc/quests/lvl4_weapon_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Gepard //= Copyright (C) erKURITA diff --git a/npc/quests/mage_solution.txt b/npc/quests/mage_solution.txt index 481effe0e..fe329116a 100644 --- a/npc/quests/mage_solution.txt +++ b/npc/quests/mage_solution.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Zopokx //= Copyright (C) L0ne_W0lf //= Copyright (C) kobra_k88 diff --git a/npc/quests/monstertamers.txt b/npc/quests/monstertamers.txt index 74d89c713..6ba65fd72 100644 --- a/npc/quests/monstertamers.txt +++ b/npc/quests/monstertamers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth //= Copyright (C) Silent diff --git a/npc/quests/mrsmile.txt b/npc/quests/mrsmile.txt index b28a49cba..6bd4c29fd 100644 --- a/npc/quests/mrsmile.txt +++ b/npc/quests/mrsmile.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/quests/newgears/2004_headgears.txt b/npc/quests/newgears/2004_headgears.txt index afb016f7e..35432d3c5 100644 --- a/npc/quests/newgears/2004_headgears.txt +++ b/npc/quests/newgears/2004_headgears.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Dj-Yhn diff --git a/npc/quests/newgears/2005_headgears.txt b/npc/quests/newgears/2005_headgears.txt index 6c1fa5682..b112591bc 100644 --- a/npc/quests/newgears/2005_headgears.txt +++ b/npc/quests/newgears/2005_headgears.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/newgears/2006_headgears.txt b/npc/quests/newgears/2006_headgears.txt index 89adaa1ae..96e98ad5a 100644 --- a/npc/quests/newgears/2006_headgears.txt +++ b/npc/quests/newgears/2006_headgears.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) reddozen diff --git a/npc/quests/newgears/2008_headgears.txt b/npc/quests/newgears/2008_headgears.txt index 09fd27c0f..39258cc27 100644 --- a/npc/quests/newgears/2008_headgears.txt +++ b/npc/quests/newgears/2008_headgears.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) Muad_Dib //= diff --git a/npc/quests/newgears/2010_headgears.txt b/npc/quests/newgears/2010_headgears.txt index b42098ef9..bbb6f5e9a 100644 --- a/npc/quests/newgears/2010_headgears.txt +++ b/npc/quests/newgears/2010_headgears.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/quests/ninja_quests.txt b/npc/quests/ninja_quests.txt index b428fa7ce..3e10f9888 100644 --- a/npc/quests/ninja_quests.txt +++ b/npc/quests/ninja_quests.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Playtester //= diff --git a/npc/quests/obb_quest.txt b/npc/quests/obb_quest.txt index 89d74e2f9..e81dafc30 100644 --- a/npc/quests/obb_quest.txt +++ b/npc/quests/obb_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets //= Copyright (C) Lupus diff --git a/npc/quests/okolnir.txt b/npc/quests/okolnir.txt index 8b7f3a075..897cba57d 100644 --- a/npc/quests/okolnir.txt +++ b/npc/quests/okolnir.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Toshiro90 //= Copyright (C) Joseph diff --git a/npc/quests/partyrelay.txt b/npc/quests/partyrelay.txt index 3a7e55f8d..427997c95 100644 --- a/npc/quests/partyrelay.txt +++ b/npc/quests/partyrelay.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/quests/quests_13_1.txt b/npc/quests/quests_13_1.txt index 033b5ea74..bea764b7f 100644 --- a/npc/quests/quests_13_1.txt +++ b/npc/quests/quests_13_1.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Masao //= Copyright (C) Euphy diff --git a/npc/quests/quests_13_2.txt b/npc/quests/quests_13_2.txt index b47ebc8ae..27aa70841 100644 --- a/npc/quests/quests_13_2.txt +++ b/npc/quests/quests_13_2.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/quests/quests_airship.txt b/npc/quests/quests_airship.txt index 4408a92f6..36f345c30 100644 --- a/npc/quests/quests_airship.txt +++ b/npc/quests/quests_airship.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Asheraf //= Copyright (C) Euphy //= Copyright (C) Joseph diff --git a/npc/quests/quests_alberta.txt b/npc/quests/quests_alberta.txt index 80af7046e..412355e7f 100644 --- a/npc/quests/quests_alberta.txt +++ b/npc/quests/quests_alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/quests_aldebaran.txt b/npc/quests/quests_aldebaran.txt index 3d0b40a8b..609bf3cdd 100644 --- a/npc/quests/quests_aldebaran.txt +++ b/npc/quests/quests_aldebaran.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Silent diff --git a/npc/quests/quests_amatsu.txt b/npc/quests/quests_amatsu.txt index 37626bf92..653af3f31 100644 --- a/npc/quests/quests_amatsu.txt +++ b/npc/quests/quests_amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/quests/quests_ayothaya.txt b/npc/quests/quests_ayothaya.txt index a876d9723..b3db3b3ff 100644 --- a/npc/quests/quests_ayothaya.txt +++ b/npc/quests/quests_ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/quests_comodo.txt b/npc/quests/quests_comodo.txt index 3a6d4c696..c7377cd6e 100644 --- a/npc/quests/quests_comodo.txt +++ b/npc/quests/quests_comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Brainstorm //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/quests_ein.txt b/npc/quests/quests_ein.txt index 53195da39..9712baf28 100644 --- a/npc/quests/quests_ein.txt +++ b/npc/quests/quests_ein.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Euphy diff --git a/npc/quests/quests_geffen.txt b/npc/quests/quests_geffen.txt index 243ec5df4..5fecb9cb2 100644 --- a/npc/quests/quests_geffen.txt +++ b/npc/quests/quests_geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 diff --git a/npc/quests/quests_gonryun.txt b/npc/quests/quests_gonryun.txt index 437ff6e21..8eaa826a1 100644 --- a/npc/quests/quests_gonryun.txt +++ b/npc/quests/quests_gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Paradox924X //= Copyright (C) L0ne_W0lf //= Copyright (C) KarLaeda diff --git a/npc/quests/quests_hugel.txt b/npc/quests/quests_hugel.txt index 8d3efd6f8..240b4e8d9 100644 --- a/npc/quests/quests_hugel.txt +++ b/npc/quests/quests_hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 diff --git a/npc/quests/quests_izlude.txt b/npc/quests/quests_izlude.txt index 05c494875..7e14e463b 100644 --- a/npc/quests/quests_izlude.txt +++ b/npc/quests/quests_izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Evera diff --git a/npc/quests/quests_juperos.txt b/npc/quests/quests_juperos.txt index c54eb4c89..45b38ab2c 100644 --- a/npc/quests/quests_juperos.txt +++ b/npc/quests/quests_juperos.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Zephyrus //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index a6e3df4f4..9725add48 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Gepard diff --git a/npc/quests/quests_louyang.txt b/npc/quests/quests_louyang.txt index b6232624d..db889604f 100644 --- a/npc/quests/quests_louyang.txt +++ b/npc/quests/quests_louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/quests/quests_lutie.txt b/npc/quests/quests_lutie.txt index a95542bb0..e2508f98a 100644 --- a/npc/quests/quests_lutie.txt +++ b/npc/quests/quests_lutie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus //= Copyright (C) Samuray22 diff --git a/npc/quests/quests_morocc.txt b/npc/quests/quests_morocc.txt index 9fada618a..8e494eb39 100644 --- a/npc/quests/quests_morocc.txt +++ b/npc/quests/quests_morocc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Gepard //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/quests_moscovia.txt b/npc/quests/quests_moscovia.txt index 88e405ed6..6f48ec058 100644 --- a/npc/quests/quests_moscovia.txt +++ b/npc/quests/quests_moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lemongrass //= Copyright (C) Euphy //= Copyright (C) Joseph diff --git a/npc/quests/quests_nameless.txt b/npc/quests/quests_nameless.txt index cb2b6439b..608083bef 100644 --- a/npc/quests/quests_nameless.txt +++ b/npc/quests/quests_nameless.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) brianluau //= Copyright (C) Yommy diff --git a/npc/quests/quests_niflheim.txt b/npc/quests/quests_niflheim.txt index bd05d84be..c840098db 100644 --- a/npc/quests/quests_niflheim.txt +++ b/npc/quests/quests_niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/quests/quests_payon.txt b/npc/quests/quests_payon.txt index 3584518e6..9230f33c2 100644 --- a/npc/quests/quests_payon.txt +++ b/npc/quests/quests_payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 //= Copyright (C) Silent diff --git a/npc/quests/quests_prontera.txt b/npc/quests/quests_prontera.txt index 80cbc59e4..38bb93d42 100644 --- a/npc/quests/quests_prontera.txt +++ b/npc/quests/quests_prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) SinSloth //= Copyright (C) Samuray22 diff --git a/npc/quests/quests_rachel.txt b/npc/quests/quests_rachel.txt index 7994a8bc9..d504d23e5 100644 --- a/npc/quests/quests_rachel.txt +++ b/npc/quests/quests_rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/quests/quests_umbala.txt b/npc/quests/quests_umbala.txt index 60317cfd4..f17397fc0 100644 --- a/npc/quests/quests_umbala.txt +++ b/npc/quests/quests_umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Team //= Copyright (C) eAthena Team //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/quests_veins.txt b/npc/quests/quests_veins.txt index a1ce20496..da2cd42ad 100644 --- a/npc/quests/quests_veins.txt +++ b/npc/quests/quests_veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) Toms diff --git a/npc/quests/quests_yuno.txt b/npc/quests/quests_yuno.txt index b9731112f..cb7b718a4 100644 --- a/npc/quests/quests_yuno.txt +++ b/npc/quests/quests_yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) akrus diff --git a/npc/quests/seals/brisingamen_seal.txt b/npc/quests/seals/brisingamen_seal.txt index dffe34549..185dc21a2 100644 --- a/npc/quests/seals/brisingamen_seal.txt +++ b/npc/quests/seals/brisingamen_seal.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2011-2024 Hercules Dev Team +//= Copyright (C) 2011-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/seals/god_global.txt b/npc/quests/seals/god_global.txt index 7d0a5c2c5..065ba8f2e 100644 --- a/npc/quests/seals/god_global.txt +++ b/npc/quests/seals/god_global.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/quests/seals/god_weapon_creation.txt b/npc/quests/seals/god_weapon_creation.txt index b3e4d8332..b5187a529 100644 --- a/npc/quests/seals/god_weapon_creation.txt +++ b/npc/quests/seals/god_weapon_creation.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/quests/seals/megingard_seal.txt b/npc/quests/seals/megingard_seal.txt index 5d94a0d7c..ff6d5aa5b 100644 --- a/npc/quests/seals/megingard_seal.txt +++ b/npc/quests/seals/megingard_seal.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) brianluau //= Copyright (C) Samuray22 diff --git a/npc/quests/seals/mjolnir_seal.txt b/npc/quests/seals/mjolnir_seal.txt index e472b54a2..a0377a105 100644 --- a/npc/quests/seals/mjolnir_seal.txt +++ b/npc/quests/seals/mjolnir_seal.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Zephyrus //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/seals/seal_status.txt b/npc/quests/seals/seal_status.txt index 6d1882113..7b10d4f8b 100644 --- a/npc/quests/seals/seal_status.txt +++ b/npc/quests/seals/seal_status.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/quests/seals/sleipnir_seal.txt b/npc/quests/seals/sleipnir_seal.txt index 061997d67..a803da214 100644 --- a/npc/quests/seals/sleipnir_seal.txt +++ b/npc/quests/seals/sleipnir_seal.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/quests/skills/acolyte_skills.txt b/npc/quests/skills/acolyte_skills.txt index 1183fbbf3..f1ac2b419 100644 --- a/npc/quests/skills/acolyte_skills.txt +++ b/npc/quests/skills/acolyte_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/skills/alchemist_skills.txt b/npc/quests/skills/alchemist_skills.txt index 163d68042..9a0761ebc 100644 --- a/npc/quests/skills/alchemist_skills.txt +++ b/npc/quests/skills/alchemist_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 //= Copyright (C) SinSloth diff --git a/npc/quests/skills/archer_skills.txt b/npc/quests/skills/archer_skills.txt index 67e0c8582..d607c87cc 100644 --- a/npc/quests/skills/archer_skills.txt +++ b/npc/quests/skills/archer_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) eAthena Dev Team diff --git a/npc/quests/skills/assassin_skills.txt b/npc/quests/skills/assassin_skills.txt index afa05efc5..29a04d340 100644 --- a/npc/quests/skills/assassin_skills.txt +++ b/npc/quests/skills/assassin_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) DracoRPG //= Copyright (C) Reddozen diff --git a/npc/quests/skills/bard_skills.txt b/npc/quests/skills/bard_skills.txt index 31db04f71..1ede89b56 100644 --- a/npc/quests/skills/bard_skills.txt +++ b/npc/quests/skills/bard_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) DracoRPG //= Copyright (C) Reddozen diff --git a/npc/quests/skills/blacksmith_skills.txt b/npc/quests/skills/blacksmith_skills.txt index f9f798b01..7dc6d891d 100644 --- a/npc/quests/skills/blacksmith_skills.txt +++ b/npc/quests/skills/blacksmith_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2011-2024 Hercules Dev Team +//= Copyright (C) 2011-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 //= Copyright (C) DracoRPG diff --git a/npc/quests/skills/crusader_skills.txt b/npc/quests/skills/crusader_skills.txt index e957e57d1..e7a32068c 100644 --- a/npc/quests/skills/crusader_skills.txt +++ b/npc/quests/skills/crusader_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) DracoRPG //= Copyright (C) L0ne_W0lf //= Copyright (C) Reddozen diff --git a/npc/quests/skills/dancer_skills.txt b/npc/quests/skills/dancer_skills.txt index 4c7475ea4..84cca1416 100644 --- a/npc/quests/skills/dancer_skills.txt +++ b/npc/quests/skills/dancer_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Yommy //= Copyright (C) L0ne_W0lf //= Copyright (C) DracoRPG diff --git a/npc/quests/skills/hunter_skills.txt b/npc/quests/skills/hunter_skills.txt index 4fabdc394..82cf0b2f6 100644 --- a/npc/quests/skills/hunter_skills.txt +++ b/npc/quests/skills/hunter_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) IVBela //= Copyright (C) DracoRPG diff --git a/npc/quests/skills/knight_skills.txt b/npc/quests/skills/knight_skills.txt index ac9bc4e74..ad8de72cb 100644 --- a/npc/quests/skills/knight_skills.txt +++ b/npc/quests/skills/knight_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 //= Copyright (C) DracoRPG diff --git a/npc/quests/skills/mage_skills.txt b/npc/quests/skills/mage_skills.txt index e001948d8..30181112d 100644 --- a/npc/quests/skills/mage_skills.txt +++ b/npc/quests/skills/mage_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/skills/merchant_skills.txt b/npc/quests/skills/merchant_skills.txt index a075dc976..67983bb19 100644 --- a/npc/quests/skills/merchant_skills.txt +++ b/npc/quests/skills/merchant_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/skills/monk_skills.txt b/npc/quests/skills/monk_skills.txt index 074741912..ef500a88a 100644 --- a/npc/quests/skills/monk_skills.txt +++ b/npc/quests/skills/monk_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) DracoRPG //= Copyright (C) Samuray22 diff --git a/npc/quests/skills/priest_skills.txt b/npc/quests/skills/priest_skills.txt index eddfeaeef..6230896da 100644 --- a/npc/quests/skills/priest_skills.txt +++ b/npc/quests/skills/priest_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) DracoRPG //= Copyright (C) Reddozen diff --git a/npc/quests/skills/rogue_skills.txt b/npc/quests/skills/rogue_skills.txt index d15279dfd..760e856b1 100644 --- a/npc/quests/skills/rogue_skills.txt +++ b/npc/quests/skills/rogue_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf diff --git a/npc/quests/skills/sage_skills.txt b/npc/quests/skills/sage_skills.txt index 3a240ecaf..65b9233c0 100644 --- a/npc/quests/skills/sage_skills.txt +++ b/npc/quests/skills/sage_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) 5511 //= Copyright (C) IVBela diff --git a/npc/quests/skills/swordman_skills.txt b/npc/quests/skills/swordman_skills.txt index c4aec5db7..f77e1cf3b 100644 --- a/npc/quests/skills/swordman_skills.txt +++ b/npc/quests/skills/swordman_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/quests/skills/thief_skills.txt b/npc/quests/skills/thief_skills.txt index 8bcd75a89..c2490a8dd 100644 --- a/npc/quests/skills/thief_skills.txt +++ b/npc/quests/skills/thief_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Masao //= Copyright (C) Samuray22 diff --git a/npc/quests/skills/wizard_skills.txt b/npc/quests/skills/wizard_skills.txt index 8f82a067b..33aba3b96 100644 --- a/npc/quests/skills/wizard_skills.txt +++ b/npc/quests/skills/wizard_skills.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Toms //= Copyright (C) DracoRPG diff --git a/npc/quests/thana_quest.txt b/npc/quests/thana_quest.txt index 0a038252f..8723b00d9 100644 --- a/npc/quests/thana_quest.txt +++ b/npc/quests/thana_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= diff --git a/npc/quests/the_sign_quest.txt b/npc/quests/the_sign_quest.txt index fad65edb1..cbefb18bc 100644 --- a/npc/quests/the_sign_quest.txt +++ b/npc/quests/the_sign_quest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) tr0n diff --git a/npc/re/airports/izlude.txt b/npc/re/airports/izlude.txt index bd844770b..3f0222b8b 100644 --- a/npc/re/airports/izlude.txt +++ b/npc/re/airports/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= diff --git a/npc/re/battleground/bg_common.txt b/npc/re/battleground/bg_common.txt index 114df64af..5ccd4eb2c 100644 --- a/npc/re/battleground/bg_common.txt +++ b/npc/re/battleground/bg_common.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Frost //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/cities/alberta.txt b/npc/re/cities/alberta.txt index 858fdd5fb..31c4eba34 100644 --- a/npc/re/cities/alberta.txt +++ b/npc/re/cities/alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/cities/brasilis.txt b/npc/re/cities/brasilis.txt index 0fe1b677c..7c631488e 100644 --- a/npc/re/cities/brasilis.txt +++ b/npc/re/cities/brasilis.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/re/cities/dewata.txt b/npc/re/cities/dewata.txt index 6e4805e0a..5eee32bc1 100644 --- a/npc/re/cities/dewata.txt +++ b/npc/re/cities/dewata.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lemongrass //= Copyright (C) Joseph //= Copyright (C) Euphy diff --git a/npc/re/cities/dicastes.txt b/npc/re/cities/dicastes.txt index c6e66267a..5e89839b7 100644 --- a/npc/re/cities/dicastes.txt +++ b/npc/re/cities/dicastes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) SkittleNugget //= Copyright (C) Joseph //= Copyright (C) Euphy diff --git a/npc/re/cities/eclage.txt b/npc/re/cities/eclage.txt index b022a35c8..9f6ac41fd 100644 --- a/npc/re/cities/eclage.txt +++ b/npc/re/cities/eclage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Dastgir //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/cities/izlude.txt b/npc/re/cities/izlude.txt index 9b5dd5cf0..4aa3ea7c8 100644 --- a/npc/re/cities/izlude.txt +++ b/npc/re/cities/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= diff --git a/npc/re/cities/jawaii.txt b/npc/re/cities/jawaii.txt index 636e7de55..82732e92f 100644 --- a/npc/re/cities/jawaii.txt +++ b/npc/re/cities/jawaii.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Daegaladh diff --git a/npc/re/cities/malangdo.txt b/npc/re/cities/malangdo.txt index 1eff4a150..125d0116c 100644 --- a/npc/re/cities/malangdo.txt +++ b/npc/re/cities/malangdo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= diff --git a/npc/re/cities/malaya.txt b/npc/re/cities/malaya.txt index c37eb0bac..49100d8f6 100644 --- a/npc/re/cities/malaya.txt +++ b/npc/re/cities/malaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) DeadlySilence //= Copyright (C) Euphy //= diff --git a/npc/re/cities/mora.txt b/npc/re/cities/mora.txt index 0404093d8..b0ff862f6 100644 --- a/npc/re/cities/mora.txt +++ b/npc/re/cities/mora.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Flaid //= Copyright (C) SuperHulk //= Copyright (C) Euphy diff --git a/npc/re/cities/yuno.txt b/npc/re/cities/yuno.txt index cec767c5c..112ee903c 100644 --- a/npc/re/cities/yuno.txt +++ b/npc/re/cities/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/events/christmas_2013.txt b/npc/re/events/christmas_2013.txt index b304d0b98..bbb7f8cbd 100644 --- a/npc/re/events/christmas_2013.txt +++ b/npc/re/events/christmas_2013.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/events/halloween_2013.txt b/npc/re/events/halloween_2013.txt index 2dbd2eccc..8c144a1f6 100644 --- a/npc/re/events/halloween_2013.txt +++ b/npc/re/events/halloween_2013.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Akkarin //= diff --git a/npc/re/events/halloween_2014.txt b/npc/re/events/halloween_2014.txt index e42cf0fa5..103e44a46 100644 --- a/npc/re/events/halloween_2014.txt +++ b/npc/re/events/halloween_2014.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) erKURITA diff --git a/npc/re/guides/guides_alberta.txt b/npc/re/guides/guides_alberta.txt index 70cbaec50..68892fd44 100644 --- a/npc/re/guides/guides_alberta.txt +++ b/npc/re/guides/guides_alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_aldebaran.txt b/npc/re/guides/guides_aldebaran.txt index fb9a77efc..76d2bd6e7 100644 --- a/npc/re/guides/guides_aldebaran.txt +++ b/npc/re/guides/guides_aldebaran.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_amatsu.txt b/npc/re/guides/guides_amatsu.txt index 55ddba69d..036b842a6 100644 --- a/npc/re/guides/guides_amatsu.txt +++ b/npc/re/guides/guides_amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_ayothaya.txt b/npc/re/guides/guides_ayothaya.txt index ed4421b1a..51b21971b 100644 --- a/npc/re/guides/guides_ayothaya.txt +++ b/npc/re/guides/guides_ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) L0ne_W0lf diff --git a/npc/re/guides/guides_brasilis.txt b/npc/re/guides/guides_brasilis.txt index cd1016575..9d6bdaf86 100644 --- a/npc/re/guides/guides_brasilis.txt +++ b/npc/re/guides/guides_brasilis.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_comodo.txt b/npc/re/guides/guides_comodo.txt index 9b729d92a..3cfcf74da 100644 --- a/npc/re/guides/guides_comodo.txt +++ b/npc/re/guides/guides_comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_dewata.txt b/npc/re/guides/guides_dewata.txt index cd3c6eca6..9d70796b3 100644 --- a/npc/re/guides/guides_dewata.txt +++ b/npc/re/guides/guides_dewata.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Lemongrass //= Copyright (C) Muad_Dib diff --git a/npc/re/guides/guides_dicastes.txt b/npc/re/guides/guides_dicastes.txt index 593b6f140..bc4b92b43 100644 --- a/npc/re/guides/guides_dicastes.txt +++ b/npc/re/guides/guides_dicastes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Muad_Dib diff --git a/npc/re/guides/guides_eclage.txt b/npc/re/guides/guides_eclage.txt index df4be7cb4..de8bab989 100644 --- a/npc/re/guides/guides_eclage.txt +++ b/npc/re/guides/guides_eclage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/guides/guides_einbroch.txt b/npc/re/guides/guides_einbroch.txt index 894f7aea4..95e62b4e2 100644 --- a/npc/re/guides/guides_einbroch.txt +++ b/npc/re/guides/guides_einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_geffen.txt b/npc/re/guides/guides_geffen.txt index 057840fe4..8921604e1 100644 --- a/npc/re/guides/guides_geffen.txt +++ b/npc/re/guides/guides_geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_gonryun.txt b/npc/re/guides/guides_gonryun.txt index c615983a8..520ae56e7 100644 --- a/npc/re/guides/guides_gonryun.txt +++ b/npc/re/guides/guides_gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_hugel.txt b/npc/re/guides/guides_hugel.txt index ecf7561dc..d6a852dbc 100644 --- a/npc/re/guides/guides_hugel.txt +++ b/npc/re/guides/guides_hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_izlude.txt b/npc/re/guides/guides_izlude.txt index b3ea5d008..eabdec8ec 100644 --- a/npc/re/guides/guides_izlude.txt +++ b/npc/re/guides/guides_izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/guides/guides_juno.txt b/npc/re/guides/guides_juno.txt index 61eb2b3e1..23cef9138 100644 --- a/npc/re/guides/guides_juno.txt +++ b/npc/re/guides/guides_juno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_lighthalzen.txt b/npc/re/guides/guides_lighthalzen.txt index 558e6e4da..8bcd7eb15 100644 --- a/npc/re/guides/guides_lighthalzen.txt +++ b/npc/re/guides/guides_lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_louyang.txt b/npc/re/guides/guides_louyang.txt index b50fd4507..0f5f76f87 100644 --- a/npc/re/guides/guides_louyang.txt +++ b/npc/re/guides/guides_louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_lutie.txt b/npc/re/guides/guides_lutie.txt index fbee09375..131599c98 100644 --- a/npc/re/guides/guides_lutie.txt +++ b/npc/re/guides/guides_lutie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_malaya.txt b/npc/re/guides/guides_malaya.txt index 1aa17ca3d..91acff742 100644 --- a/npc/re/guides/guides_malaya.txt +++ b/npc/re/guides/guides_malaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/guides/guides_mora.txt b/npc/re/guides/guides_mora.txt index 244331bb8..726643af6 100644 --- a/npc/re/guides/guides_mora.txt +++ b/npc/re/guides/guides_mora.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/guides/guides_morroc.txt b/npc/re/guides/guides_morroc.txt index 664251bfc..ee96e92f0 100644 --- a/npc/re/guides/guides_morroc.txt +++ b/npc/re/guides/guides_morroc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_moscovia.txt b/npc/re/guides/guides_moscovia.txt index 418c2df1b..4786d2e3e 100644 --- a/npc/re/guides/guides_moscovia.txt +++ b/npc/re/guides/guides_moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_niflheim.txt b/npc/re/guides/guides_niflheim.txt index 3d8848a09..42101cba1 100644 --- a/npc/re/guides/guides_niflheim.txt +++ b/npc/re/guides/guides_niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_payon.txt b/npc/re/guides/guides_payon.txt index 9a0639608..c7124d330 100644 --- a/npc/re/guides/guides_payon.txt +++ b/npc/re/guides/guides_payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_prontera.txt b/npc/re/guides/guides_prontera.txt index 3cc2758ac..788fa7a4b 100644 --- a/npc/re/guides/guides_prontera.txt +++ b/npc/re/guides/guides_prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_rachel.txt b/npc/re/guides/guides_rachel.txt index be6232a40..609eaa67c 100644 --- a/npc/re/guides/guides_rachel.txt +++ b/npc/re/guides/guides_rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_umbala.txt b/npc/re/guides/guides_umbala.txt index d38fe0c4f..b2b32e607 100644 --- a/npc/re/guides/guides_umbala.txt +++ b/npc/re/guides/guides_umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/guides_veins.txt b/npc/re/guides/guides_veins.txt index 0780cea21..2c374899c 100644 --- a/npc/re/guides/guides_veins.txt +++ b/npc/re/guides/guides_veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/guides/navigation.txt b/npc/re/guides/navigation.txt index e4b6668ff..5f8be1c97 100644 --- a/npc/re/guides/navigation.txt +++ b/npc/re/guides/navigation.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/instances/BakonawaLake.txt b/npc/re/instances/BakonawaLake.txt index b4580a557..0c2493a95 100644 --- a/npc/re/instances/BakonawaLake.txt +++ b/npc/re/instances/BakonawaLake.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/instances/BangungotHospital.txt b/npc/re/instances/BangungotHospital.txt index db2f30f06..2a39aa79d 100644 --- a/npc/re/instances/BangungotHospital.txt +++ b/npc/re/instances/BangungotHospital.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/instances/BuwayaCave.txt b/npc/re/instances/BuwayaCave.txt index f42a7c66a..6dd704d1e 100644 --- a/npc/re/instances/BuwayaCave.txt +++ b/npc/re/instances/BuwayaCave.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/instances/EclageInterior.txt b/npc/re/instances/EclageInterior.txt index 05d784645..375057311 100644 --- a/npc/re/instances/EclageInterior.txt +++ b/npc/re/instances/EclageInterior.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/instances/HazyForest.txt b/npc/re/instances/HazyForest.txt index b308aef8a..76a3782ad 100644 --- a/npc/re/instances/HazyForest.txt +++ b/npc/re/instances/HazyForest.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/instances/MalangdoCulvert.txt b/npc/re/instances/MalangdoCulvert.txt index 3e3c8d0e9..79e2bfee6 100644 --- a/npc/re/instances/MalangdoCulvert.txt +++ b/npc/re/instances/MalangdoCulvert.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= diff --git a/npc/re/instances/OldGlastHeim.txt b/npc/re/instances/OldGlastHeim.txt index d6632e0f1..0333067f8 100644 --- a/npc/re/instances/OldGlastHeim.txt +++ b/npc/re/instances/OldGlastHeim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Ridley //= Copyright (C) Exneval //= Copyright (C) Euphy diff --git a/npc/re/instances/WolfchevLaboratory.txt b/npc/re/instances/WolfchevLaboratory.txt index d1936359e..9eae064a4 100644 --- a/npc/re/instances/WolfchevLaboratory.txt +++ b/npc/re/instances/WolfchevLaboratory.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Kisuka //= diff --git a/npc/re/instances/ghost_palace.txt b/npc/re/instances/ghost_palace.txt index d5d7dd10f..bb6274d60 100644 --- a/npc/re/instances/ghost_palace.txt +++ b/npc/re/instances/ghost_palace.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 Hercules Dev Team //= Copyright (C) Asheraf //= Copyright (C) pengc2010 //= diff --git a/npc/re/instances/octopus_cave.txt b/npc/re/instances/octopus_cave.txt index 6977d8218..ee82aded5 100644 --- a/npc/re/instances/octopus_cave.txt +++ b/npc/re/instances/octopus_cave.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= diff --git a/npc/re/instances/saras_memory.txt b/npc/re/instances/saras_memory.txt index aaa836527..d473492ce 100644 --- a/npc/re/instances/saras_memory.txt +++ b/npc/re/instances/saras_memory.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Ridley //= Copyright (C) Ziu //= diff --git a/npc/re/jobs/1-1/acolyte.txt b/npc/re/jobs/1-1/acolyte.txt index b1952cb3e..0a6a6b01c 100644 --- a/npc/re/jobs/1-1/acolyte.txt +++ b/npc/re/jobs/1-1/acolyte.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Streusel //= Copyright (C) Kisuka diff --git a/npc/re/jobs/1-1/archer.txt b/npc/re/jobs/1-1/archer.txt index 2a017034e..ddd3636e6 100644 --- a/npc/re/jobs/1-1/archer.txt +++ b/npc/re/jobs/1-1/archer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Streusel //= Copyright (C) Kisuka diff --git a/npc/re/jobs/1-1/mage.txt b/npc/re/jobs/1-1/mage.txt index 16e313456..66f8da3bd 100644 --- a/npc/re/jobs/1-1/mage.txt +++ b/npc/re/jobs/1-1/mage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Streusel //= Copyright (C) Kisuka diff --git a/npc/re/jobs/1-1/merchant.txt b/npc/re/jobs/1-1/merchant.txt index 7470b9cb8..a9fe6f35f 100644 --- a/npc/re/jobs/1-1/merchant.txt +++ b/npc/re/jobs/1-1/merchant.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Streusel //= Copyright (C) Kisuka diff --git a/npc/re/jobs/1-1/swordman.txt b/npc/re/jobs/1-1/swordman.txt index 2c1d125fb..19256a382 100644 --- a/npc/re/jobs/1-1/swordman.txt +++ b/npc/re/jobs/1-1/swordman.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Streusel //= Copyright (C) Kisuka diff --git a/npc/re/jobs/1-1/thief.txt b/npc/re/jobs/1-1/thief.txt index a14b22ebe..c5c51710e 100644 --- a/npc/re/jobs/1-1/thief.txt +++ b/npc/re/jobs/1-1/thief.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Streusel //= Copyright (C) Kisuka diff --git a/npc/re/jobs/1-1e/taekwon.txt b/npc/re/jobs/1-1e/taekwon.txt index 6ec358f92..0ffb70026 100644 --- a/npc/re/jobs/1-1e/taekwon.txt +++ b/npc/re/jobs/1-1e/taekwon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 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 diff --git a/npc/re/jobs/2e/kagerou_oboro.txt b/npc/re/jobs/2e/kagerou_oboro.txt index ef66165d1..bf5266bd3 100644 --- a/npc/re/jobs/2e/kagerou_oboro.txt +++ b/npc/re/jobs/2e/kagerou_oboro.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Euphy //= Copyright (C) M45T3R diff --git a/npc/re/jobs/2e/rebellion.txt b/npc/re/jobs/2e/rebellion.txt index f57ba262c..17fcc7f7b 100644 --- a/npc/re/jobs/2e/rebellion.txt +++ b/npc/re/jobs/2e/rebellion.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2020-2024 Hercules Dev Team +//= Copyright (C) 2020-2025 Hercules Dev Team //= Copyright (C) Dastgir //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/jobs/3-1/archbishop.txt b/npc/re/jobs/3-1/archbishop.txt index a496f158b..2582bef7d 100644 --- a/npc/re/jobs/3-1/archbishop.txt +++ b/npc/re/jobs/3-1/archbishop.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/re/jobs/3-1/guillotine_cross.txt b/npc/re/jobs/3-1/guillotine_cross.txt index 437d8f944..981669b97 100644 --- a/npc/re/jobs/3-1/guillotine_cross.txt +++ b/npc/re/jobs/3-1/guillotine_cross.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Muad_Dib diff --git a/npc/re/jobs/3-1/mechanic.txt b/npc/re/jobs/3-1/mechanic.txt index aef1d85c6..da858ef30 100644 --- a/npc/re/jobs/3-1/mechanic.txt +++ b/npc/re/jobs/3-1/mechanic.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) JayPee //= Copyright (C) Masao diff --git a/npc/re/jobs/3-1/ranger.txt b/npc/re/jobs/3-1/ranger.txt index 5bea83688..aa21caba2 100644 --- a/npc/re/jobs/3-1/ranger.txt +++ b/npc/re/jobs/3-1/ranger.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Elias //= Copyright (C) Masao diff --git a/npc/re/jobs/3-1/rune_knight.txt b/npc/re/jobs/3-1/rune_knight.txt index 680040cf3..e1fb22e14 100644 --- a/npc/re/jobs/3-1/rune_knight.txt +++ b/npc/re/jobs/3-1/rune_knight.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Muad_Dib diff --git a/npc/re/jobs/3-1/warlock.txt b/npc/re/jobs/3-1/warlock.txt index fadfd0363..5f965a547 100644 --- a/npc/re/jobs/3-1/warlock.txt +++ b/npc/re/jobs/3-1/warlock.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/jobs/3-2/genetic.txt b/npc/re/jobs/3-2/genetic.txt index 95bcb7088..957832191 100644 --- a/npc/re/jobs/3-2/genetic.txt +++ b/npc/re/jobs/3-2/genetic.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) JayPee diff --git a/npc/re/jobs/3-2/minstrel.txt b/npc/re/jobs/3-2/minstrel.txt index 262d4457a..f629c3163 100644 --- a/npc/re/jobs/3-2/minstrel.txt +++ b/npc/re/jobs/3-2/minstrel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) JayPee //= Copyright (C) Masao diff --git a/npc/re/jobs/3-2/royal_guard.txt b/npc/re/jobs/3-2/royal_guard.txt index 7eb7d7d70..1c13b4a33 100644 --- a/npc/re/jobs/3-2/royal_guard.txt +++ b/npc/re/jobs/3-2/royal_guard.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) brAthena //= Copyright (C) Muad_Dib diff --git a/npc/re/jobs/3-2/shadow_chaser.txt b/npc/re/jobs/3-2/shadow_chaser.txt index 92eb19099..70b08c09c 100644 --- a/npc/re/jobs/3-2/shadow_chaser.txt +++ b/npc/re/jobs/3-2/shadow_chaser.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Oshinoke diff --git a/npc/re/jobs/3-2/sorcerer.txt b/npc/re/jobs/3-2/sorcerer.txt index ff4a22e11..d218b413e 100644 --- a/npc/re/jobs/3-2/sorcerer.txt +++ b/npc/re/jobs/3-2/sorcerer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Muad_Dib diff --git a/npc/re/jobs/3-2/sura.txt b/npc/re/jobs/3-2/sura.txt index 3c64e93d6..a1f324994 100644 --- a/npc/re/jobs/3-2/sura.txt +++ b/npc/re/jobs/3-2/sura.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) Masao diff --git a/npc/re/jobs/3-2/wanderer.txt b/npc/re/jobs/3-2/wanderer.txt index b8d4057f3..81a2e1102 100644 --- a/npc/re/jobs/3-2/wanderer.txt +++ b/npc/re/jobs/3-2/wanderer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Joseph //= Copyright (C) Masao diff --git a/npc/re/jobs/novice/academy.txt b/npc/re/jobs/novice/academy.txt index 447265760..ae2ca7f16 100644 --- a/npc/re/jobs/novice/academy.txt +++ b/npc/re/jobs/novice/academy.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Ridley //= Copyright (C) Kisuka //= diff --git a/npc/re/jobs/novice/novice.txt b/npc/re/jobs/novice/novice.txt index 0511c033e..a6ada2e8b 100644 --- a/npc/re/jobs/novice/novice.txt +++ b/npc/re/jobs/novice/novice.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Kisuka diff --git a/npc/re/jobs/novice/supernovice_ex.txt b/npc/re/jobs/novice/supernovice_ex.txt index 3fce2012e..66f8d4a49 100644 --- a/npc/re/jobs/novice/supernovice_ex.txt +++ b/npc/re/jobs/novice/supernovice_ex.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/jobs/repair.txt b/npc/re/jobs/repair.txt index 082520fe5..6e86a06db 100644 --- a/npc/re/jobs/repair.txt +++ b/npc/re/jobs/repair.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Euphy //= diff --git a/npc/re/kafras/kafras.txt b/npc/re/kafras/kafras.txt index f0c096cfd..9d5215c34 100644 --- a/npc/re/kafras/kafras.txt +++ b/npc/re/kafras/kafras.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lemongrass //= Copyright (C) Euphy //= Copyright (C) Joseph diff --git a/npc/re/mapflag/gvg.txt b/npc/re/mapflag/gvg.txt index 4a3f08244..799deb0a4 100644 --- a/npc/re/mapflag/gvg.txt +++ b/npc/re/mapflag/gvg.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 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 diff --git a/npc/re/mapflag/zone.txt b/npc/re/mapflag/zone.txt index bb5b171d5..15ae531ce 100644 --- a/npc/re/mapflag/zone.txt +++ b/npc/re/mapflag/zone.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Ind //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/3rd_trader.txt b/npc/re/merchants/3rd_trader.txt index 6177afb8c..174a93b1b 100644 --- a/npc/re/merchants/3rd_trader.txt +++ b/npc/re/merchants/3rd_trader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Mercurial //= Copyright (C) Masao diff --git a/npc/re/merchants/advanced_refiner.txt b/npc/re/merchants/advanced_refiner.txt index 11b47d922..11e02ab4a 100644 --- a/npc/re/merchants/advanced_refiner.txt +++ b/npc/re/merchants/advanced_refiner.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/alchemist.txt b/npc/re/merchants/alchemist.txt index 261a601d3..7462e273c 100644 --- a/npc/re/merchants/alchemist.txt +++ b/npc/re/merchants/alchemist.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team diff --git a/npc/re/merchants/ammo_boxes.txt b/npc/re/merchants/ammo_boxes.txt index d983e69f0..409e0ae86 100644 --- a/npc/re/merchants/ammo_boxes.txt +++ b/npc/re/merchants/ammo_boxes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/ammo_dealer.txt b/npc/re/merchants/ammo_dealer.txt index dac8f28ae..ef968a4b8 100644 --- a/npc/re/merchants/ammo_dealer.txt +++ b/npc/re/merchants/ammo_dealer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/blessed_refiner.txt b/npc/re/merchants/blessed_refiner.txt index cfccf32c1..d3b087a5d 100644 --- a/npc/re/merchants/blessed_refiner.txt +++ b/npc/re/merchants/blessed_refiner.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/card_separation.txt b/npc/re/merchants/card_separation.txt index 593053ad6..5aa8e875f 100644 --- a/npc/re/merchants/card_separation.txt +++ b/npc/re/merchants/card_separation.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= diff --git a/npc/re/merchants/catalog.txt b/npc/re/merchants/catalog.txt index c8f669803..1c50367c2 100644 --- a/npc/re/merchants/catalog.txt +++ b/npc/re/merchants/catalog.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Scriptor //= Copyright (C) skyiing diff --git a/npc/re/merchants/coin_exchange.txt b/npc/re/merchants/coin_exchange.txt index 2304d7903..63cac66f5 100644 --- a/npc/re/merchants/coin_exchange.txt +++ b/npc/re/merchants/coin_exchange.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) rAthena Dev Team //= Copyright (C) Lemongrass diff --git a/npc/re/merchants/diamond.txt b/npc/re/merchants/diamond.txt index 40c2ac659..be6740e24 100644 --- a/npc/re/merchants/diamond.txt +++ b/npc/re/merchants/diamond.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Z3R0 //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/enchan_ko.txt b/npc/re/merchants/enchan_ko.txt index 795c1d8be..55d454959 100644 --- a/npc/re/merchants/enchan_ko.txt +++ b/npc/re/merchants/enchan_ko.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/enchan_mal.txt b/npc/re/merchants/enchan_mal.txt index e7524532b..fbd4ee100 100644 --- a/npc/re/merchants/enchan_mal.txt +++ b/npc/re/merchants/enchan_mal.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= diff --git a/npc/re/merchants/enchan_mora.txt b/npc/re/merchants/enchan_mora.txt index e0abfe6dd..385accd33 100644 --- a/npc/re/merchants/enchan_mora.txt +++ b/npc/re/merchants/enchan_mora.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) DeadlySilence //= Copyright (C) Lemongrass //= Copyright (C) Euphy diff --git a/npc/re/merchants/enchan_upg.txt b/npc/re/merchants/enchan_upg.txt index 4a45f3ff2..d83f2fc97 100644 --- a/npc/re/merchants/enchan_upg.txt +++ b/npc/re/merchants/enchan_upg.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Skorm //= diff --git a/npc/re/merchants/flute.txt b/npc/re/merchants/flute.txt index aea29d73a..ae0337b92 100644 --- a/npc/re/merchants/flute.txt +++ b/npc/re/merchants/flute.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Ziu //= Copyright (C) Muad_Dib diff --git a/npc/re/merchants/hd_refiner.txt b/npc/re/merchants/hd_refiner.txt index 728f4c728..d3ddd8910 100644 --- a/npc/re/merchants/hd_refiner.txt +++ b/npc/re/merchants/hd_refiner.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/inn.txt b/npc/re/merchants/inn.txt index a8358d353..a2e2f0940 100644 --- a/npc/re/merchants/inn.txt +++ b/npc/re/merchants/inn.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) c //= diff --git a/npc/re/merchants/ninja_craftsman.txt b/npc/re/merchants/ninja_craftsman.txt index 8e693cbd3..091537416 100644 --- a/npc/re/merchants/ninja_craftsman.txt +++ b/npc/re/merchants/ninja_craftsman.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Dastgir //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/merchants/quivers.txt b/npc/re/merchants/quivers.txt index 08e81b437..84ba20df6 100644 --- a/npc/re/merchants/quivers.txt +++ b/npc/re/merchants/quivers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Muad_Dib (Prometheus Project) diff --git a/npc/re/merchants/refine.txt b/npc/re/merchants/refine.txt index 2d388552a..81aeec6e6 100644 --- a/npc/re/merchants/refine.txt +++ b/npc/re/merchants/refine.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= diff --git a/npc/re/merchants/renters.txt b/npc/re/merchants/renters.txt index 6aa1d6724..561c6b296 100644 --- a/npc/re/merchants/renters.txt +++ b/npc/re/merchants/renters.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Euphy //= Copyright (C) Daegaladh diff --git a/npc/re/merchants/shadow_refiner.txt b/npc/re/merchants/shadow_refiner.txt index 6cbe5d54e..408685ff8 100644 --- a/npc/re/merchants/shadow_refiner.txt +++ b/npc/re/merchants/shadow_refiner.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Smokexyz (v2.0) //= diff --git a/npc/re/merchants/shops.txt b/npc/re/merchants/shops.txt index a708ecbca..cf27caf67 100644 --- a/npc/re/merchants/shops.txt +++ b/npc/re/merchants/shops.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Frost //= Copyright (C) rAthena Dev Team //= Copyright (C) Lemongrass diff --git a/npc/re/merchants/ticket_refiner.txt b/npc/re/merchants/ticket_refiner.txt index 9e5944bee..d57ca61cb 100644 --- a/npc/re/merchants/ticket_refiner.txt +++ b/npc/re/merchants/ticket_refiner.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/champion.txt b/npc/re/mobs/champion.txt index 1a05e5b7c..2f9eb3e69 100644 --- a/npc/re/mobs/champion.txt +++ b/npc/re/mobs/champion.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) nanakiwurtz //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/citycleaners.txt b/npc/re/mobs/citycleaners.txt index 3a288704c..338a98355 100644 --- a/npc/re/mobs/citycleaners.txt +++ b/npc/re/mobs/citycleaners.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/dungeons/abbey.txt b/npc/re/mobs/dungeons/abbey.txt index 484a3fe5a..93fb8a325 100644 --- a/npc/re/mobs/dungeons/abbey.txt +++ b/npc/re/mobs/dungeons/abbey.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) $ephiroth //= diff --git a/npc/re/mobs/dungeons/abyss.txt b/npc/re/mobs/dungeons/abyss.txt index b9e14b79c..093b70d1a 100644 --- a/npc/re/mobs/dungeons/abyss.txt +++ b/npc/re/mobs/dungeons/abyss.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Nexon diff --git a/npc/re/mobs/dungeons/alde_dun.txt b/npc/re/mobs/dungeons/alde_dun.txt index a17cd3526..03d76d351 100644 --- a/npc/re/mobs/dungeons/alde_dun.txt +++ b/npc/re/mobs/dungeons/alde_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/ama_dun.txt b/npc/re/mobs/dungeons/ama_dun.txt index 82c442ca3..a6dab8834 100644 --- a/npc/re/mobs/dungeons/ama_dun.txt +++ b/npc/re/mobs/dungeons/ama_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/anthell.txt b/npc/re/mobs/dungeons/anthell.txt index 61ea80531..b1e0c563e 100644 --- a/npc/re/mobs/dungeons/anthell.txt +++ b/npc/re/mobs/dungeons/anthell.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/ayo_dun.txt b/npc/re/mobs/dungeons/ayo_dun.txt index 9a0f5d233..456dacb52 100644 --- a/npc/re/mobs/dungeons/ayo_dun.txt +++ b/npc/re/mobs/dungeons/ayo_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Lupus diff --git a/npc/re/mobs/dungeons/beach_dun.txt b/npc/re/mobs/dungeons/beach_dun.txt index cd7eda10c..ac7ff19fb 100644 --- a/npc/re/mobs/dungeons/beach_dun.txt +++ b/npc/re/mobs/dungeons/beach_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/bra_dun.txt b/npc/re/mobs/dungeons/bra_dun.txt index 00d207719..795ffac02 100644 --- a/npc/re/mobs/dungeons/bra_dun.txt +++ b/npc/re/mobs/dungeons/bra_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/dungeons/c_tower.txt b/npc/re/mobs/dungeons/c_tower.txt index 0817f2bd4..b68ef6e54 100644 --- a/npc/re/mobs/dungeons/c_tower.txt +++ b/npc/re/mobs/dungeons/c_tower.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Athena //= diff --git a/npc/re/mobs/dungeons/dew_dun.txt b/npc/re/mobs/dungeons/dew_dun.txt index 90ec9c37d..fa709a4b5 100644 --- a/npc/re/mobs/dungeons/dew_dun.txt +++ b/npc/re/mobs/dungeons/dew_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/mobs/dungeons/dic_dun.txt b/npc/re/mobs/dungeons/dic_dun.txt index 8f15fa679..bcf5c1f26 100644 --- a/npc/re/mobs/dungeons/dic_dun.txt +++ b/npc/re/mobs/dungeons/dic_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= Copyright (C) Kisuka diff --git a/npc/re/mobs/dungeons/ecl_tdun.txt b/npc/re/mobs/dungeons/ecl_tdun.txt index 912269350..b0872ac81 100644 --- a/npc/re/mobs/dungeons/ecl_tdun.txt +++ b/npc/re/mobs/dungeons/ecl_tdun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Michieru //= Copyright (C) Euphy //= Copyright (C) refis diff --git a/npc/re/mobs/dungeons/ein_dun.txt b/npc/re/mobs/dungeons/ein_dun.txt index 7fd8346c0..a6eee1dc9 100644 --- a/npc/re/mobs/dungeons/ein_dun.txt +++ b/npc/re/mobs/dungeons/ein_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets diff --git a/npc/re/mobs/dungeons/gef_dun.txt b/npc/re/mobs/dungeons/gef_dun.txt index f3b149510..100613484 100644 --- a/npc/re/mobs/dungeons/gef_dun.txt +++ b/npc/re/mobs/dungeons/gef_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/gefenia.txt b/npc/re/mobs/dungeons/gefenia.txt index 656cf6f6b..279377f8d 100644 --- a/npc/re/mobs/dungeons/gefenia.txt +++ b/npc/re/mobs/dungeons/gefenia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) MasterOfMuppets diff --git a/npc/re/mobs/dungeons/glastheim.txt b/npc/re/mobs/dungeons/glastheim.txt index a9f0aa153..3b005468e 100644 --- a/npc/re/mobs/dungeons/glastheim.txt +++ b/npc/re/mobs/dungeons/glastheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets diff --git a/npc/re/mobs/dungeons/gld_dunSE.txt b/npc/re/mobs/dungeons/gld_dunSE.txt index 3e1a0e7fc..a01852235 100644 --- a/npc/re/mobs/dungeons/gld_dunSE.txt +++ b/npc/re/mobs/dungeons/gld_dunSE.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Athena //= diff --git a/npc/re/mobs/dungeons/gld_re.txt b/npc/re/mobs/dungeons/gld_re.txt index 3a7ab8832..b6a09dd02 100644 --- a/npc/re/mobs/dungeons/gld_re.txt +++ b/npc/re/mobs/dungeons/gld_re.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/dungeons/gon_dun.txt b/npc/re/mobs/dungeons/gon_dun.txt index 738d47796..b6c70fc23 100644 --- a/npc/re/mobs/dungeons/gon_dun.txt +++ b/npc/re/mobs/dungeons/gon_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/ice_dun.txt b/npc/re/mobs/dungeons/ice_dun.txt index 91a06dc5a..613942fa0 100644 --- a/npc/re/mobs/dungeons/ice_dun.txt +++ b/npc/re/mobs/dungeons/ice_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/in_sphinx.txt b/npc/re/mobs/dungeons/in_sphinx.txt index 693578c5e..95572cff5 100644 --- a/npc/re/mobs/dungeons/in_sphinx.txt +++ b/npc/re/mobs/dungeons/in_sphinx.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/iz_dun.txt b/npc/re/mobs/dungeons/iz_dun.txt index 79fb7ea9f..9b59fbdf0 100644 --- a/npc/re/mobs/dungeons/iz_dun.txt +++ b/npc/re/mobs/dungeons/iz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Chilly //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/juperos.txt b/npc/re/mobs/dungeons/juperos.txt index fd5dc4e50..7f7b4df54 100644 --- a/npc/re/mobs/dungeons/juperos.txt +++ b/npc/re/mobs/dungeons/juperos.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/re/mobs/dungeons/kh_dun.txt b/npc/re/mobs/dungeons/kh_dun.txt index e2b5b8372..ca2fc034a 100644 --- a/npc/re/mobs/dungeons/kh_dun.txt +++ b/npc/re/mobs/dungeons/kh_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/lhz_dun.txt b/npc/re/mobs/dungeons/lhz_dun.txt index 525f827d5..ad4798423 100644 --- a/npc/re/mobs/dungeons/lhz_dun.txt +++ b/npc/re/mobs/dungeons/lhz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) Chilly //= Copyright (C) eAthena Dev Team diff --git a/npc/re/mobs/dungeons/lou_dun.txt b/npc/re/mobs/dungeons/lou_dun.txt index 75e8dbdc1..8cb2d5413 100644 --- a/npc/re/mobs/dungeons/lou_dun.txt +++ b/npc/re/mobs/dungeons/lou_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/ma_dun.txt b/npc/re/mobs/dungeons/ma_dun.txt index f8cfc8338..44212ec9b 100644 --- a/npc/re/mobs/dungeons/ma_dun.txt +++ b/npc/re/mobs/dungeons/ma_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Chilly //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/dungeons/mag_dun.txt b/npc/re/mobs/dungeons/mag_dun.txt index bf03ecbd4..10397576a 100644 --- a/npc/re/mobs/dungeons/mag_dun.txt +++ b/npc/re/mobs/dungeons/mag_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Lupus //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/mal_dun.txt b/npc/re/mobs/dungeons/mal_dun.txt index b9c8dde4a..8513e3e1e 100644 --- a/npc/re/mobs/dungeons/mal_dun.txt +++ b/npc/re/mobs/dungeons/mal_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/mobs/dungeons/mjo_dun.txt b/npc/re/mobs/dungeons/mjo_dun.txt index a1d894d0e..4e28947c3 100644 --- a/npc/re/mobs/dungeons/mjo_dun.txt +++ b/npc/re/mobs/dungeons/mjo_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/re/mobs/dungeons/moc_pryd.txt b/npc/re/mobs/dungeons/moc_pryd.txt index 76574c2ff..5d90347da 100644 --- a/npc/re/mobs/dungeons/moc_pryd.txt +++ b/npc/re/mobs/dungeons/moc_pryd.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/re/mobs/dungeons/mosk_dun.txt b/npc/re/mobs/dungeons/mosk_dun.txt index 8272f050c..fdc5912f9 100644 --- a/npc/re/mobs/dungeons/mosk_dun.txt +++ b/npc/re/mobs/dungeons/mosk_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/re/mobs/dungeons/nyd_dun.txt b/npc/re/mobs/dungeons/nyd_dun.txt index da6c525e6..b7fbd98f1 100644 --- a/npc/re/mobs/dungeons/nyd_dun.txt +++ b/npc/re/mobs/dungeons/nyd_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/dungeons/odin.txt b/npc/re/mobs/dungeons/odin.txt index 6759fc61c..28923038c 100644 --- a/npc/re/mobs/dungeons/odin.txt +++ b/npc/re/mobs/dungeons/odin.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Vicious diff --git a/npc/re/mobs/dungeons/orcsdun.txt b/npc/re/mobs/dungeons/orcsdun.txt index f38f9aca2..ffbc9a673 100644 --- a/npc/re/mobs/dungeons/orcsdun.txt +++ b/npc/re/mobs/dungeons/orcsdun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/re/mobs/dungeons/pay_dun.txt b/npc/re/mobs/dungeons/pay_dun.txt index b9d82bf8f..b5e96a1f4 100644 --- a/npc/re/mobs/dungeons/pay_dun.txt +++ b/npc/re/mobs/dungeons/pay_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/prt_maze.txt b/npc/re/mobs/dungeons/prt_maze.txt index 5278a7142..ab9e9756b 100644 --- a/npc/re/mobs/dungeons/prt_maze.txt +++ b/npc/re/mobs/dungeons/prt_maze.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/prt_sew.txt b/npc/re/mobs/dungeons/prt_sew.txt index 5d685355e..adfb00cce 100644 --- a/npc/re/mobs/dungeons/prt_sew.txt +++ b/npc/re/mobs/dungeons/prt_sew.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/ra_san.txt b/npc/re/mobs/dungeons/ra_san.txt index bd4c9f84e..f6b46d340 100644 --- a/npc/re/mobs/dungeons/ra_san.txt +++ b/npc/re/mobs/dungeons/ra_san.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/tha_t.txt b/npc/re/mobs/dungeons/tha_t.txt index 42d8d1734..6d7b2485a 100644 --- a/npc/re/mobs/dungeons/tha_t.txt +++ b/npc/re/mobs/dungeons/tha_t.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Playtester //= Copyright (C) Nexon diff --git a/npc/re/mobs/dungeons/thor_v.txt b/npc/re/mobs/dungeons/thor_v.txt index 5a0269c54..4a085ce91 100644 --- a/npc/re/mobs/dungeons/thor_v.txt +++ b/npc/re/mobs/dungeons/thor_v.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= diff --git a/npc/re/mobs/dungeons/treasure.txt b/npc/re/mobs/dungeons/treasure.txt index 18fc4c31d..bf76e6242 100644 --- a/npc/re/mobs/dungeons/treasure.txt +++ b/npc/re/mobs/dungeons/treasure.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/re/mobs/dungeons/tur_dun.txt b/npc/re/mobs/dungeons/tur_dun.txt index 04b1e3aa4..92b283b56 100644 --- a/npc/re/mobs/dungeons/tur_dun.txt +++ b/npc/re/mobs/dungeons/tur_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) Athena //= diff --git a/npc/re/mobs/dungeons/xmas_dun.txt b/npc/re/mobs/dungeons/xmas_dun.txt index f6baa2878..02ea687cb 100644 --- a/npc/re/mobs/dungeons/xmas_dun.txt +++ b/npc/re/mobs/dungeons/xmas_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/dungeons/yggdrasil.txt b/npc/re/mobs/dungeons/yggdrasil.txt index 0f15f7fb6..993673d9e 100644 --- a/npc/re/mobs/dungeons/yggdrasil.txt +++ b/npc/re/mobs/dungeons/yggdrasil.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) DracoRPG //= Copyright (C) Athena diff --git a/npc/re/mobs/fields/amatsu.txt b/npc/re/mobs/fields/amatsu.txt index 3b2f637a5..76fa2020a 100644 --- a/npc/re/mobs/fields/amatsu.txt +++ b/npc/re/mobs/fields/amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Playtester //= Copyright (C) Lupus diff --git a/npc/re/mobs/fields/ayothaya.txt b/npc/re/mobs/fields/ayothaya.txt index 9dec0cd27..ead09deb5 100644 --- a/npc/re/mobs/fields/ayothaya.txt +++ b/npc/re/mobs/fields/ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/bifrost.txt b/npc/re/mobs/fields/bifrost.txt index 7280e005e..a65775253 100644 --- a/npc/re/mobs/fields/bifrost.txt +++ b/npc/re/mobs/fields/bifrost.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/mobs/fields/brasilis.txt b/npc/re/mobs/fields/brasilis.txt index 30b7e7ee5..e9db6256e 100644 --- a/npc/re/mobs/fields/brasilis.txt +++ b/npc/re/mobs/fields/brasilis.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/fields/comodo.txt b/npc/re/mobs/fields/comodo.txt index 0d9d32fef..55cd30cdf 100644 --- a/npc/re/mobs/fields/comodo.txt +++ b/npc/re/mobs/fields/comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/fields/dewata.txt b/npc/re/mobs/fields/dewata.txt index 666258c2a..b476f2804 100644 --- a/npc/re/mobs/fields/dewata.txt +++ b/npc/re/mobs/fields/dewata.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/mobs/fields/dicastes.txt b/npc/re/mobs/fields/dicastes.txt index 44cab9e38..512e6a829 100644 --- a/npc/re/mobs/fields/dicastes.txt +++ b/npc/re/mobs/fields/dicastes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/fields/eclage.txt b/npc/re/mobs/fields/eclage.txt index 007c5e5ca..7f749dc03 100644 --- a/npc/re/mobs/fields/eclage.txt +++ b/npc/re/mobs/fields/eclage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Michieru //= Copyright (C) Euphy //= Copyright (C) refis diff --git a/npc/re/mobs/fields/einbroch.txt b/npc/re/mobs/fields/einbroch.txt index 5ccac6509..39cf66632 100644 --- a/npc/re/mobs/fields/einbroch.txt +++ b/npc/re/mobs/fields/einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/geffen.txt b/npc/re/mobs/fields/geffen.txt index 4b40998eb..e6a93a894 100644 --- a/npc/re/mobs/fields/geffen.txt +++ b/npc/re/mobs/fields/geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Lupus diff --git a/npc/re/mobs/fields/gonryun.txt b/npc/re/mobs/fields/gonryun.txt index 9dfdb3ced..d9e4eb14c 100644 --- a/npc/re/mobs/fields/gonryun.txt +++ b/npc/re/mobs/fields/gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/hugel.txt b/npc/re/mobs/fields/hugel.txt index 2c088fc29..1ec5b872d 100644 --- a/npc/re/mobs/fields/hugel.txt +++ b/npc/re/mobs/fields/hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/lighthalzen.txt b/npc/re/mobs/fields/lighthalzen.txt index ccfb1c717..1a09aa4ab 100644 --- a/npc/re/mobs/fields/lighthalzen.txt +++ b/npc/re/mobs/fields/lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) Kisuka diff --git a/npc/re/mobs/fields/louyang.txt b/npc/re/mobs/fields/louyang.txt index 084ef9294..4a5ba1065 100644 --- a/npc/re/mobs/fields/louyang.txt +++ b/npc/re/mobs/fields/louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/lutie.txt b/npc/re/mobs/fields/lutie.txt index a121298c0..8ebf666b6 100644 --- a/npc/re/mobs/fields/lutie.txt +++ b/npc/re/mobs/fields/lutie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/malaya.txt b/npc/re/mobs/fields/malaya.txt index 5acc4595d..49fdbdcda 100644 --- a/npc/re/mobs/fields/malaya.txt +++ b/npc/re/mobs/fields/malaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Chilly //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/fields/manuk.txt b/npc/re/mobs/fields/manuk.txt index e8335db24..96515d1f5 100644 --- a/npc/re/mobs/fields/manuk.txt +++ b/npc/re/mobs/fields/manuk.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) scriptor //= Copyright (C) alexx //= Copyright (C) MaC diff --git a/npc/re/mobs/fields/mjolnir.txt b/npc/re/mobs/fields/mjolnir.txt index 2283e63d4..37a0e56f4 100644 --- a/npc/re/mobs/fields/mjolnir.txt +++ b/npc/re/mobs/fields/mjolnir.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/fields/morocc.txt b/npc/re/mobs/fields/morocc.txt index 3c029b076..35ee2f37b 100644 --- a/npc/re/mobs/fields/morocc.txt +++ b/npc/re/mobs/fields/morocc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/moscovia.txt b/npc/re/mobs/fields/moscovia.txt index 0c05d728c..32fc905b0 100644 --- a/npc/re/mobs/fields/moscovia.txt +++ b/npc/re/mobs/fields/moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Playtester diff --git a/npc/re/mobs/fields/niflheim.txt b/npc/re/mobs/fields/niflheim.txt index d9702feb4..180761809 100644 --- a/npc/re/mobs/fields/niflheim.txt +++ b/npc/re/mobs/fields/niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) Playtester //= Copyright (C) MasterOfMuppets diff --git a/npc/re/mobs/fields/payon.txt b/npc/re/mobs/fields/payon.txt index e82d9745f..c2b40deb2 100644 --- a/npc/re/mobs/fields/payon.txt +++ b/npc/re/mobs/fields/payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Athena diff --git a/npc/re/mobs/fields/prontera.txt b/npc/re/mobs/fields/prontera.txt index 8cf0589b0..41a236295 100644 --- a/npc/re/mobs/fields/prontera.txt +++ b/npc/re/mobs/fields/prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Playtester //= Copyright (C) Lupus diff --git a/npc/re/mobs/fields/rachel.txt b/npc/re/mobs/fields/rachel.txt index a145b703f..fb5aeedf2 100644 --- a/npc/re/mobs/fields/rachel.txt +++ b/npc/re/mobs/fields/rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) L0ne_W0lf diff --git a/npc/re/mobs/fields/splendide.txt b/npc/re/mobs/fields/splendide.txt index 620b87529..b2565c56b 100644 --- a/npc/re/mobs/fields/splendide.txt +++ b/npc/re/mobs/fields/splendide.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) scriptor //= Copyright (C) alexx //= Copyright (C) MaC diff --git a/npc/re/mobs/fields/umbala.txt b/npc/re/mobs/fields/umbala.txt index 26f21bf98..82ec76093 100644 --- a/npc/re/mobs/fields/umbala.txt +++ b/npc/re/mobs/fields/umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Darkchild diff --git a/npc/re/mobs/fields/veins.txt b/npc/re/mobs/fields/veins.txt index 7e9bb5e69..6df10c5cd 100644 --- a/npc/re/mobs/fields/veins.txt +++ b/npc/re/mobs/fields/veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Kisuka //= Copyright (C) Gepard diff --git a/npc/re/mobs/fields/yuno.txt b/npc/re/mobs/fields/yuno.txt index d63b35514..32fa0a59d 100644 --- a/npc/re/mobs/fields/yuno.txt +++ b/npc/re/mobs/fields/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/re/mobs/int_land.txt b/npc/re/mobs/int_land.txt index 14aad420d..156e68309 100644 --- a/npc/re/mobs/int_land.txt +++ b/npc/re/mobs/int_land.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 Hercules Dev Team //= Copyright (C) Ridley //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/mobs/towns.txt b/npc/re/mobs/towns.txt index b7129aafe..672bd8870 100644 --- a/npc/re/mobs/towns.txt +++ b/npc/re/mobs/towns.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/achievement_treasures.txt b/npc/re/other/achievement_treasures.txt index 1f8ca0024..c4d820985 100644 --- a/npc/re/other/achievement_treasures.txt +++ b/npc/re/other/achievement_treasures.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2020-2024 Hercules Dev Team +//= Copyright (C) 2020-2025 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 diff --git a/npc/re/other/bulletin_boards.txt b/npc/re/other/bulletin_boards.txt index 1895989d7..38cb46f63 100644 --- a/npc/re/other/bulletin_boards.txt +++ b/npc/re/other/bulletin_boards.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/clans.txt b/npc/re/other/clans.txt index 9f1bb5eab..6e02d2abd 100644 --- a/npc/re/other/clans.txt +++ b/npc/re/other/clans.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2017-2024 Hercules Dev Team +//= Copyright (C) 2017-2025 Hercules Dev Team //= Copyright (C) Ridley //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/dimensional_gap.txt b/npc/re/other/dimensional_gap.txt index 1a148e9af..f9aab47ff 100644 --- a/npc/re/other/dimensional_gap.txt +++ b/npc/re/other/dimensional_gap.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 Hercules Dev Team //= Copyright (C) 2016 Ridley //= Copyright (C) 2016 Nova //= diff --git a/npc/re/other/grader.txt b/npc/re/other/grader.txt index c6222f299..5b46ab7eb 100644 --- a/npc/re/other/grader.txt +++ b/npc/re/other/grader.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2021-2024 Hercules Dev Team +//= Copyright (C) 2021-2025 Hercules Dev Team //= Copyright (C) 2021 Asheraf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/mail.txt b/npc/re/other/mail.txt index 7e52d5d00..6b50cbde1 100644 --- a/npc/re/other/mail.txt +++ b/npc/re/other/mail.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/mercenary_rent.txt b/npc/re/other/mercenary_rent.txt index 4b6301cd3..5b4a7593f 100644 --- a/npc/re/other/mercenary_rent.txt +++ b/npc/re/other/mercenary_rent.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Daegaladh diff --git a/npc/re/other/pvp.txt b/npc/re/other/pvp.txt index 6dbdd9bce..adc351cc4 100644 --- a/npc/re/other/pvp.txt +++ b/npc/re/other/pvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/resetskill.txt b/npc/re/other/resetskill.txt index 11077c3ed..00feae310 100644 --- a/npc/re/other/resetskill.txt +++ b/npc/re/other/resetskill.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/stone_change.txt b/npc/re/other/stone_change.txt index 148a9ef69..f8c3213d8 100644 --- a/npc/re/other/stone_change.txt +++ b/npc/re/other/stone_change.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/other/turbo_track.txt b/npc/re/other/turbo_track.txt index cb5b4d160..9c55df370 100644 --- a/npc/re/other/turbo_track.txt +++ b/npc/re/other/turbo_track.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/cupet.txt b/npc/re/quests/cupet.txt index b7a2ee2c4..ed4b9d835 100644 --- a/npc/re/quests/cupet.txt +++ b/npc/re/quests/cupet.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Z3RO //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/eden/100-110.txt b/npc/re/quests/eden/100-110.txt index f941b17d9..7a8e88d3e 100644 --- a/npc/re/quests/eden/100-110.txt +++ b/npc/re/quests/eden/100-110.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Capuche //= diff --git a/npc/re/quests/eden/11-25.txt b/npc/re/quests/eden/11-25.txt index f5b0e37c9..ece3426d3 100644 --- a/npc/re/quests/eden/11-25.txt +++ b/npc/re/quests/eden/11-25.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/quests/eden/111-120.txt b/npc/re/quests/eden/111-120.txt index 88bb2ec5d..6f6c253bd 100644 --- a/npc/re/quests/eden/111-120.txt +++ b/npc/re/quests/eden/111-120.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Capuche //= diff --git a/npc/re/quests/eden/121-130.txt b/npc/re/quests/eden/121-130.txt index 04c2a2ec4..dc360c566 100644 --- a/npc/re/quests/eden/121-130.txt +++ b/npc/re/quests/eden/121-130.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Capuche //= diff --git a/npc/re/quests/eden/131-140.txt b/npc/re/quests/eden/131-140.txt index b2037e3c1..37303072c 100644 --- a/npc/re/quests/eden/131-140.txt +++ b/npc/re/quests/eden/131-140.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Capuche //= diff --git a/npc/re/quests/eden/26-40.txt b/npc/re/quests/eden/26-40.txt index 93b77aec1..a5d2fb329 100644 --- a/npc/re/quests/eden/26-40.txt +++ b/npc/re/quests/eden/26-40.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/quests/eden/41-55.txt b/npc/re/quests/eden/41-55.txt index c35aa5eba..1e0fdc001 100644 --- a/npc/re/quests/eden/41-55.txt +++ b/npc/re/quests/eden/41-55.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/quests/eden/56-70.txt b/npc/re/quests/eden/56-70.txt index d660bd088..614e6e610 100644 --- a/npc/re/quests/eden/56-70.txt +++ b/npc/re/quests/eden/56-70.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/re/quests/eden/71-85.txt b/npc/re/quests/eden/71-85.txt index 562c866de..a6dcbc21f 100644 --- a/npc/re/quests/eden/71-85.txt +++ b/npc/re/quests/eden/71-85.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/quests/eden/86-90.txt b/npc/re/quests/eden/86-90.txt index 3775d7675..01614d170 100644 --- a/npc/re/quests/eden/86-90.txt +++ b/npc/re/quests/eden/86-90.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Chilly diff --git a/npc/re/quests/eden/91-99.txt b/npc/re/quests/eden/91-99.txt index 406dd0fd6..212963b30 100644 --- a/npc/re/quests/eden/91-99.txt +++ b/npc/re/quests/eden/91-99.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Chilly diff --git a/npc/re/quests/eden/eden_common.txt b/npc/re/quests/eden/eden_common.txt index a0b5cbf02..896eeffad 100644 --- a/npc/re/quests/eden/eden_common.txt +++ b/npc/re/quests/eden/eden_common.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Brian diff --git a/npc/re/quests/eden/eden_iro.txt b/npc/re/quests/eden/eden_iro.txt index 6fd5ef7db..eeba5ace0 100644 --- a/npc/re/quests/eden/eden_iro.txt +++ b/npc/re/quests/eden/eden_iro.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Frost //= Copyright (C) Euphy //= Copyright (C) -SkittleNugget- diff --git a/npc/re/quests/eden/eden_quests.txt b/npc/re/quests/eden/eden_quests.txt index 437a960fc..aca265a6a 100644 --- a/npc/re/quests/eden/eden_quests.txt +++ b/npc/re/quests/eden/eden_quests.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Capuche //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/re/quests/eden/eden_service.txt b/npc/re/quests/eden/eden_service.txt index 8e8a6b5c9..34089db79 100644 --- a/npc/re/quests/eden/eden_service.txt +++ b/npc/re/quests/eden/eden_service.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/re/quests/eden/eden_tutorial.txt b/npc/re/quests/eden/eden_tutorial.txt index 1c546e99d..4068b047e 100644 --- a/npc/re/quests/eden/eden_tutorial.txt +++ b/npc/re/quests/eden/eden_tutorial.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/first_class/tu_archer.txt b/npc/re/quests/first_class/tu_archer.txt index 4cde5afe4..c00c24e48 100644 --- a/npc/re/quests/first_class/tu_archer.txt +++ b/npc/re/quests/first_class/tu_archer.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/homun_s.txt b/npc/re/quests/homun_s.txt index b811be2ac..6f200b7b8 100644 --- a/npc/re/quests/homun_s.txt +++ b/npc/re/quests/homun_s.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= diff --git a/npc/re/quests/magic_books.txt b/npc/re/quests/magic_books.txt index a4d4ddf9a..8c9d1c8dd 100644 --- a/npc/re/quests/magic_books.txt +++ b/npc/re/quests/magic_books.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Muad_Dib diff --git a/npc/re/quests/monstertamers.txt b/npc/re/quests/monstertamers.txt index 919a53ee7..410467169 100644 --- a/npc/re/quests/monstertamers.txt +++ b/npc/re/quests/monstertamers.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/mrsmile.txt b/npc/re/quests/mrsmile.txt index ceea49283..07bd8abb1 100644 --- a/npc/re/quests/mrsmile.txt +++ b/npc/re/quests/mrsmile.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Daegaladh diff --git a/npc/re/quests/newgears/2012_headgears.txt b/npc/re/quests/newgears/2012_headgears.txt index b85a66768..9b26cf3c4 100644 --- a/npc/re/quests/newgears/2012_headgears.txt +++ b/npc/re/quests/newgears/2012_headgears.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 Hercules Dev Team //= Copyright (C) -SkittleNugget- //= Copyright (C) Euphy //= diff --git a/npc/re/quests/pile_bunker.txt b/npc/re/quests/pile_bunker.txt index 6613a1f2d..59065ca9c 100644 --- a/npc/re/quests/pile_bunker.txt +++ b/npc/re/quests/pile_bunker.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) JayPee Mateo diff --git a/npc/re/quests/quests_13_1.txt b/npc/re/quests/quests_13_1.txt index 878271fce..1755e621e 100644 --- a/npc/re/quests/quests_13_1.txt +++ b/npc/re/quests/quests_13_1.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_aldebaran.txt b/npc/re/quests/quests_aldebaran.txt index 02f28ebc8..03f8b8b23 100644 --- a/npc/re/quests/quests_aldebaran.txt +++ b/npc/re/quests/quests_aldebaran.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 Hercules Dev Team //= Copyright (C) 2016 Ridley //= Copyright (C) 2016 Aleos //= diff --git a/npc/re/quests/quests_brasilis.txt b/npc/re/quests/quests_brasilis.txt index e64b55808..b88ae7a41 100644 --- a/npc/re/quests/quests_brasilis.txt +++ b/npc/re/quests/quests_brasilis.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Panikon //= Copyright (C) Michieru //= Copyright (C) Euphy diff --git a/npc/re/quests/quests_dewata.txt b/npc/re/quests/quests_dewata.txt index d579cd544..df627c7f7 100644 --- a/npc/re/quests/quests_dewata.txt +++ b/npc/re/quests/quests_dewata.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lemongrass //= Copyright (C) Euphy //= Copyright (C) Muad_Dib diff --git a/npc/re/quests/quests_dicastes.txt b/npc/re/quests/quests_dicastes.txt index 87391ba0a..7ed2a9058 100644 --- a/npc/re/quests/quests_dicastes.txt +++ b/npc/re/quests/quests_dicastes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Frost //= Copyright (C) Dastgir //= Copyright (C) Joseph diff --git a/npc/re/quests/quests_eclage.txt b/npc/re/quests/quests_eclage.txt index 958ef0897..8a1696c6d 100644 --- a/npc/re/quests/quests_eclage.txt +++ b/npc/re/quests/quests_eclage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Dastgir //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_glastheim.txt b/npc/re/quests/quests_glastheim.txt index 0ce9a3d0b..612832574 100644 --- a/npc/re/quests/quests_glastheim.txt +++ b/npc/re/quests/quests_glastheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 Hercules Dev Team //= Copyright (C) 2016 Ridley //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_izlude.txt b/npc/re/quests/quests_izlude.txt index c8bd890a8..246b942e9 100644 --- a/npc/re/quests/quests_izlude.txt +++ b/npc/re/quests/quests_izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Daegaladh diff --git a/npc/re/quests/quests_lighthalzen.txt b/npc/re/quests/quests_lighthalzen.txt index b0c8c5340..c342fad7f 100644 --- a/npc/re/quests/quests_lighthalzen.txt +++ b/npc/re/quests/quests_lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) AtlantisRO //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_malangdo.txt b/npc/re/quests/quests_malangdo.txt index b8f951ee7..b690fe82e 100644 --- a/npc/re/quests/quests_malangdo.txt +++ b/npc/re/quests/quests_malangdo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Muad_Dib //= diff --git a/npc/re/quests/quests_malaya.txt b/npc/re/quests/quests_malaya.txt index a25860619..4f88dfcad 100644 --- a/npc/re/quests/quests_malaya.txt +++ b/npc/re/quests/quests_malaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Michieru //= Copyright (C) DeadlySilence //= Copyright (C) Euphy diff --git a/npc/re/quests/quests_mora.txt b/npc/re/quests/quests_mora.txt index a9e30b1e1..9603b46a6 100644 --- a/npc/re/quests/quests_mora.txt +++ b/npc/re/quests/quests_mora.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_morocc.txt b/npc/re/quests/quests_morocc.txt index 1309d8d99..ba89dd7a1 100644 --- a/npc/re/quests/quests_morocc.txt +++ b/npc/re/quests/quests_morocc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_nameless.txt b/npc/re/quests/quests_nameless.txt index 8ad01b1cb..f4625163a 100644 --- a/npc/re/quests/quests_nameless.txt +++ b/npc/re/quests/quests_nameless.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_payon.txt b/npc/re/quests/quests_payon.txt index af717e695..b019f4e21 100644 --- a/npc/re/quests/quests_payon.txt +++ b/npc/re/quests/quests_payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) JohnnyPlayy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/quests_veins.txt b/npc/re/quests/quests_veins.txt index c114157a0..b17f17547 100644 --- a/npc/re/quests/quests_veins.txt +++ b/npc/re/quests/quests_veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/rebuilding_morroc.txt b/npc/re/quests/rebuilding_morroc.txt index f5213ee5c..9aaa90a8d 100644 --- a/npc/re/quests/rebuilding_morroc.txt +++ b/npc/re/quests/rebuilding_morroc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) KirieZ //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/quests/rebuilding_morroc_rewards.txt b/npc/re/quests/rebuilding_morroc_rewards.txt index e6ec11974..c9f877af7 100644 --- a/npc/re/quests/rebuilding_morroc_rewards.txt +++ b/npc/re/quests/rebuilding_morroc_rewards.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) KirieZ //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts.conf b/npc/re/scripts.conf index 0a1e5881a..3b60c637f 100644 --- a/npc/re/scripts.conf +++ b/npc/re/scripts.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts_jobs.conf b/npc/re/scripts_jobs.conf index 6db00579e..325841462 100644 --- a/npc/re/scripts_jobs.conf +++ b/npc/re/scripts_jobs.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts_main.conf b/npc/re/scripts_main.conf index a43e40ec1..fb524bbba 100644 --- a/npc/re/scripts_main.conf +++ b/npc/re/scripts_main.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts_mapflags.conf b/npc/re/scripts_mapflags.conf index 8e2c6dc01..2cf055834 100644 --- a/npc/re/scripts_mapflags.conf +++ b/npc/re/scripts_mapflags.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts_monsters.conf b/npc/re/scripts_monsters.conf index edcfd9964..b197e77cc 100644 --- a/npc/re/scripts_monsters.conf +++ b/npc/re/scripts_monsters.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts_warps.conf b/npc/re/scripts_warps.conf index 18c1b4946..c9fd80cce 100644 --- a/npc/re/scripts_warps.conf +++ b/npc/re/scripts_warps.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/scripts_woe.conf b/npc/re/scripts_woe.conf index 28d139600..098024e88 100644 --- a/npc/re/scripts_woe.conf +++ b/npc/re/scripts_woe.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/cities/brasilis.txt b/npc/re/warps/cities/brasilis.txt index 449c92839..b249ea909 100644 --- a/npc/re/warps/cities/brasilis.txt +++ b/npc/re/warps/cities/brasilis.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Deagaladh //= Copyright (C) Jguy //= Copyright (C) Protimus diff --git a/npc/re/warps/cities/dewata.txt b/npc/re/warps/cities/dewata.txt index c8499679f..f296456be 100644 --- a/npc/re/warps/cities/dewata.txt +++ b/npc/re/warps/cities/dewata.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lemongrass //= Copyright (C) Euphy //= Copyright (C) Chilly diff --git a/npc/re/warps/cities/dicastes.txt b/npc/re/warps/cities/dicastes.txt index b66464aaf..83809de97 100644 --- a/npc/re/warps/cities/dicastes.txt +++ b/npc/re/warps/cities/dicastes.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Chilly //= Copyright (C) Muad_Dib diff --git a/npc/re/warps/cities/eclage.txt b/npc/re/warps/cities/eclage.txt index da4eb5f73..060c75b11 100644 --- a/npc/re/warps/cities/eclage.txt +++ b/npc/re/warps/cities/eclage.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Euphy //= Copyright (C) Chilly diff --git a/npc/re/warps/cities/izlude.txt b/npc/re/warps/cities/izlude.txt index d940d8225..2a159a029 100644 --- a/npc/re/warps/cities/izlude.txt +++ b/npc/re/warps/cities/izlude.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Ridley //= Copyright (C) Euphy //= Copyright (C) Streusel diff --git a/npc/re/warps/cities/malangdo.txt b/npc/re/warps/cities/malangdo.txt index 70ed528f2..725631ebd 100644 --- a/npc/re/warps/cities/malangdo.txt +++ b/npc/re/warps/cities/malangdo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/warps/cities/malaya.txt b/npc/re/warps/cities/malaya.txt index bb68c4c00..affb01434 100644 --- a/npc/re/warps/cities/malaya.txt +++ b/npc/re/warps/cities/malaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) Chilly diff --git a/npc/re/warps/cities/rachel.txt b/npc/re/warps/cities/rachel.txt index 6608a0845..d18fab60b 100644 --- a/npc/re/warps/cities/rachel.txt +++ b/npc/re/warps/cities/rachel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) erKURITA diff --git a/npc/re/warps/cities/yggdrasil.txt b/npc/re/warps/cities/yggdrasil.txt index 00f46fe9e..11e010956 100644 --- a/npc/re/warps/cities/yggdrasil.txt +++ b/npc/re/warps/cities/yggdrasil.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) PKGINGO //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/dungeons/bra_dun.txt b/npc/re/warps/dungeons/bra_dun.txt index 6fce082ec..693c1af68 100644 --- a/npc/re/warps/dungeons/bra_dun.txt +++ b/npc/re/warps/dungeons/bra_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/dungeons/dic_dun.txt b/npc/re/warps/dungeons/dic_dun.txt index db8f0ba6d..2702a18b6 100644 --- a/npc/re/warps/dungeons/dic_dun.txt +++ b/npc/re/warps/dungeons/dic_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Chilly //= Copyright (C) Muad_Dib diff --git a/npc/re/warps/dungeons/ecl_dun.txt b/npc/re/warps/dungeons/ecl_dun.txt index 8d7c18a1e..1fa38edf0 100644 --- a/npc/re/warps/dungeons/ecl_dun.txt +++ b/npc/re/warps/dungeons/ecl_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Dastgir //= Copyright (C) Chilly //= diff --git a/npc/re/warps/dungeons/iz_dun.txt b/npc/re/warps/dungeons/iz_dun.txt index 30add5215..35648d4a6 100644 --- a/npc/re/warps/dungeons/iz_dun.txt +++ b/npc/re/warps/dungeons/iz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Nana //= Copyright (C) Athena diff --git a/npc/re/warps/dungeons/moc_pryd.txt b/npc/re/warps/dungeons/moc_pryd.txt index 8041c56ad..6b24bd9f7 100644 --- a/npc/re/warps/dungeons/moc_pryd.txt +++ b/npc/re/warps/dungeons/moc_pryd.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/fields/bif_fild.txt b/npc/re/warps/fields/bif_fild.txt index c692cd59c..8804dd2fb 100644 --- a/npc/re/warps/fields/bif_fild.txt +++ b/npc/re/warps/fields/bif_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/warps/fields/bra_fild.txt b/npc/re/warps/fields/bra_fild.txt index 33ed1772a..1a4237415 100644 --- a/npc/re/warps/fields/bra_fild.txt +++ b/npc/re/warps/fields/bra_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Protimus //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/fields/com_fild.txt b/npc/re/warps/fields/com_fild.txt index 448e6ed05..4cc093336 100644 --- a/npc/re/warps/fields/com_fild.txt +++ b/npc/re/warps/fields/com_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/re/warps/fields/dic_fild.txt b/npc/re/warps/fields/dic_fild.txt index 36bea83e1..4889c668d 100644 --- a/npc/re/warps/fields/dic_fild.txt +++ b/npc/re/warps/fields/dic_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Chilly //= Copyright (C) Muad_Dib diff --git a/npc/re/warps/fields/geffen_fild.txt b/npc/re/warps/fields/geffen_fild.txt index 5cce8a472..72800e0c1 100644 --- a/npc/re/warps/fields/geffen_fild.txt +++ b/npc/re/warps/fields/geffen_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/fields/hugel_fild.txt b/npc/re/warps/fields/hugel_fild.txt index ced555cb1..49be58fa3 100644 --- a/npc/re/warps/fields/hugel_fild.txt +++ b/npc/re/warps/fields/hugel_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Sara-chan diff --git a/npc/re/warps/fields/morroc_fild.txt b/npc/re/warps/fields/morroc_fild.txt index 2246f3c7f..8f4e41507 100644 --- a/npc/re/warps/fields/morroc_fild.txt +++ b/npc/re/warps/fields/morroc_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/re/warps/fields/payon_fild.txt b/npc/re/warps/fields/payon_fild.txt index 8776ac7d7..f011e8982 100644 --- a/npc/re/warps/fields/payon_fild.txt +++ b/npc/re/warps/fields/payon_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/re/warps/fields/prontera_fild.txt b/npc/re/warps/fields/prontera_fild.txt index 1921c4638..59ce1b322 100644 --- a/npc/re/warps/fields/prontera_fild.txt +++ b/npc/re/warps/fields/prontera_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/re/warps/fields/rachel_fild.txt b/npc/re/warps/fields/rachel_fild.txt index 208e8cb44..9ffcafd06 100644 --- a/npc/re/warps/fields/rachel_fild.txt +++ b/npc/re/warps/fields/rachel_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= diff --git a/npc/re/warps/fields/veins_fild.txt b/npc/re/warps/fields/veins_fild.txt index d68224186..36da94d8e 100644 --- a/npc/re/warps/fields/veins_fild.txt +++ b/npc/re/warps/fields/veins_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) $ephiroth diff --git a/npc/re/warps/fields/yuno_fild.txt b/npc/re/warps/fields/yuno_fild.txt index 20584daed..3a761838c 100644 --- a/npc/re/warps/fields/yuno_fild.txt +++ b/npc/re/warps/fields/yuno_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= Copyright (C) Sara //= diff --git a/npc/re/warps/guildcastles.txt b/npc/re/warps/guildcastles.txt index 682cca1bc..9d7f7384e 100644 --- a/npc/re/warps/guildcastles.txt +++ b/npc/re/warps/guildcastles.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/other/arena.txt b/npc/re/warps/other/arena.txt index 4fa900004..d758331bb 100644 --- a/npc/re/warps/other/arena.txt +++ b/npc/re/warps/other/arena.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/other/dimensional_gap.txt b/npc/re/warps/other/dimensional_gap.txt index beba0bbd5..ebee15ea3 100644 --- a/npc/re/warps/other/dimensional_gap.txt +++ b/npc/re/warps/other/dimensional_gap.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2016-2024 Hercules Dev Team +//= Copyright (C) 2016-2025 Hercules Dev Team //= Copyright (C) Ridley //= Copyright (C) Nova //= diff --git a/npc/re/warps/other/jobquests.txt b/npc/re/warps/other/jobquests.txt index fb55d87a3..7814663b1 100644 --- a/npc/re/warps/other/jobquests.txt +++ b/npc/re/warps/other/jobquests.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Athena //= diff --git a/npc/re/warps/other/paradise.txt b/npc/re/warps/other/paradise.txt index a9a5ebc51..e3d52256d 100644 --- a/npc/re/warps/other/paradise.txt +++ b/npc/re/warps/other/paradise.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Chilly //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/warps/other/s_workshop.txt b/npc/re/warps/other/s_workshop.txt index 56968fe99..75e7b6cc7 100644 --- a/npc/re/warps/other/s_workshop.txt +++ b/npc/re/warps/other/s_workshop.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Chilly //= diff --git a/npc/re/warps/other/sign.txt b/npc/re/warps/other/sign.txt index c0e9a7d27..34a6a66d6 100644 --- a/npc/re/warps/other/sign.txt +++ b/npc/re/warps/other/sign.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) MasterOfMuppets //= diff --git a/npc/re/woe-fe/invest_main.txt b/npc/re/woe-fe/invest_main.txt index 81f44b151..09e8ae710 100644 --- a/npc/re/woe-fe/invest_main.txt +++ b/npc/re/woe-fe/invest_main.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/re/woe-fe/invest_npc.txt b/npc/re/woe-fe/invest_npc.txt index b007c1da2..128970327 100644 --- a/npc/re/woe-fe/invest_npc.txt +++ b/npc/re/woe-fe/invest_npc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2013-2024 Hercules Dev Team +//= Copyright (C) 2013-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts.conf b/npc/scripts.conf index 30b39f177..0acb074a3 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts_custom.conf b/npc/scripts_custom.conf index 05ad91f84..5f84f0f7f 100644 --- a/npc/scripts_custom.conf +++ b/npc/scripts_custom.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts_dev.conf b/npc/scripts_dev.conf index a23d9549f..805127ff5 100644 --- a/npc/scripts_dev.conf +++ b/npc/scripts_dev.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/npc/scripts_jobs.conf b/npc/scripts_jobs.conf index 5828afaab..8ed91aca8 100644 --- a/npc/scripts_jobs.conf +++ b/npc/scripts_jobs.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts_mapflags.conf b/npc/scripts_mapflags.conf index c3d202237..4db09b8bb 100644 --- a/npc/scripts_mapflags.conf +++ b/npc/scripts_mapflags.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts_monsters.conf b/npc/scripts_monsters.conf index cc0ecc52e..c5ba74ca2 100644 --- a/npc/scripts_monsters.conf +++ b/npc/scripts_monsters.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts_removed.conf b/npc/scripts_removed.conf index 1db709abd..7b893e116 100644 --- a/npc/scripts_removed.conf +++ b/npc/scripts_removed.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/npc/scripts_warps.conf b/npc/scripts_warps.conf index 2ec2dc5d0..66745889d 100644 --- a/npc/scripts_warps.conf +++ b/npc/scripts_warps.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/scripts_woe.conf b/npc/scripts_woe.conf index 1e705e6b3..bedf7c5f6 100644 --- a/npc/scripts_woe.conf +++ b/npc/scripts_woe.conf @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena Dev Teams //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/cities/alberta.txt b/npc/warps/cities/alberta.txt index be48e197c..2bd435dbe 100644 --- a/npc/warps/cities/alberta.txt +++ b/npc/warps/cities/alberta.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= Copyright (C) Athena //= diff --git a/npc/warps/cities/aldebaran.txt b/npc/warps/cities/aldebaran.txt index f7b2e3820..f7f1f5b12 100644 --- a/npc/warps/cities/aldebaran.txt +++ b/npc/warps/cities/aldebaran.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Justin84 //= Copyright (C) Nana diff --git a/npc/warps/cities/amatsu.txt b/npc/warps/cities/amatsu.txt index f6c8fe5b1..d0aebb296 100644 --- a/npc/warps/cities/amatsu.txt +++ b/npc/warps/cities/amatsu.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) erKURITA //= Copyright (C) Nana diff --git a/npc/warps/cities/ayothaya.txt b/npc/warps/cities/ayothaya.txt index 0b6c4f5c1..dc4e3a506 100644 --- a/npc/warps/cities/ayothaya.txt +++ b/npc/warps/cities/ayothaya.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) erKURITA //= Copyright (C) Lupus //= Copyright (C) MasterOfMuppets diff --git a/npc/warps/cities/comodo.txt b/npc/warps/cities/comodo.txt index f6fce9ac0..dc7a377de 100644 --- a/npc/warps/cities/comodo.txt +++ b/npc/warps/cities/comodo.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Dev Team //= Copyright (C) eAthena Dev Team //= Copyright (C) L0ne_W0lf diff --git a/npc/warps/cities/einbech.txt b/npc/warps/cities/einbech.txt index d8bcc5825..3cf94c6cd 100644 --- a/npc/warps/cities/einbech.txt +++ b/npc/warps/cities/einbech.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) SSUNNY@YOUNG //= Copyright (C) Muad Dib diff --git a/npc/warps/cities/einbroch.txt b/npc/warps/cities/einbroch.txt index 6acd0efea..49beb6a2b 100644 --- a/npc/warps/cities/einbroch.txt +++ b/npc/warps/cities/einbroch.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) erKURITA //= Copyright (C) Vicious //= Copyright (C) MasterOfMuppets diff --git a/npc/warps/cities/geffen.txt b/npc/warps/cities/geffen.txt index 72ed07e98..35dd504e1 100644 --- a/npc/warps/cities/geffen.txt +++ b/npc/warps/cities/geffen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) Nana //= Copyright (C) Athena diff --git a/npc/warps/cities/gonryun.txt b/npc/warps/cities/gonryun.txt index e0755e7a6..9887913e6 100644 --- a/npc/warps/cities/gonryun.txt +++ b/npc/warps/cities/gonryun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/cities/hugel.txt b/npc/warps/cities/hugel.txt index 4871ae0ae..8bbe06bbb 100644 --- a/npc/warps/cities/hugel.txt +++ b/npc/warps/cities/hugel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) SinSloth //= Copyright (C) Playtester //= Copyright (C) erKURITA diff --git a/npc/warps/cities/lighthalzen.txt b/npc/warps/cities/lighthalzen.txt index 139bb896b..34aeb89e5 100644 --- a/npc/warps/cities/lighthalzen.txt +++ b/npc/warps/cities/lighthalzen.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth //= Copyright (C) Zephiris diff --git a/npc/warps/cities/louyang.txt b/npc/warps/cities/louyang.txt index 9117e006b..7d33640a5 100644 --- a/npc/warps/cities/louyang.txt +++ b/npc/warps/cities/louyang.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Samuray22 //= Copyright (C) SinSloth diff --git a/npc/warps/cities/lutie.txt b/npc/warps/cities/lutie.txt index c8bb3e503..c17febd92 100644 --- a/npc/warps/cities/lutie.txt +++ b/npc/warps/cities/lutie.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= Copyright (C) Athena diff --git a/npc/warps/cities/manuk.txt b/npc/warps/cities/manuk.txt index 712e555e0..6414597ea 100644 --- a/npc/warps/cities/manuk.txt +++ b/npc/warps/cities/manuk.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/cities/mid_camp.txt b/npc/warps/cities/mid_camp.txt index 1f573adf5..c9c465b97 100644 --- a/npc/warps/cities/mid_camp.txt +++ b/npc/warps/cities/mid_camp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) brianluau //= Copyright (C) Brainstorm diff --git a/npc/warps/cities/morroc.txt b/npc/warps/cities/morroc.txt index 727554bf9..8630419b0 100644 --- a/npc/warps/cities/morroc.txt +++ b/npc/warps/cities/morroc.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= Copyright (C) Athena diff --git a/npc/warps/cities/moscovia.txt b/npc/warps/cities/moscovia.txt index 84c7254c1..e028cee71 100644 --- a/npc/warps/cities/moscovia.txt +++ b/npc/warps/cities/moscovia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) $ephiroth //= diff --git a/npc/warps/cities/nameless.txt b/npc/warps/cities/nameless.txt index b4dfcb70e..7cd695052 100644 --- a/npc/warps/cities/nameless.txt +++ b/npc/warps/cities/nameless.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) $ephiroth diff --git a/npc/warps/cities/niflheim.txt b/npc/warps/cities/niflheim.txt index 3ed10b1fd..4c320c892 100644 --- a/npc/warps/cities/niflheim.txt +++ b/npc/warps/cities/niflheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Skotlex //= Copyright (C) PKGINGO diff --git a/npc/warps/cities/payon.txt b/npc/warps/cities/payon.txt index 9fff5dd31..0f538bb31 100644 --- a/npc/warps/cities/payon.txt +++ b/npc/warps/cities/payon.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/warps/cities/prontera.txt b/npc/warps/cities/prontera.txt index cb95f338f..f2b6d3aab 100644 --- a/npc/warps/cities/prontera.txt +++ b/npc/warps/cities/prontera.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets //= Copyright (C) shadow diff --git a/npc/warps/cities/splendide.txt b/npc/warps/cities/splendide.txt index 294c1dca2..11262365b 100644 --- a/npc/warps/cities/splendide.txt +++ b/npc/warps/cities/splendide.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/cities/umbala.txt b/npc/warps/cities/umbala.txt index bb31c1b2c..fc0ae1b20 100644 --- a/npc/warps/cities/umbala.txt +++ b/npc/warps/cities/umbala.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= Copyright (C) Akaru diff --git a/npc/warps/cities/veins.txt b/npc/warps/cities/veins.txt index 75d3ae99c..e3f5b3b60 100644 --- a/npc/warps/cities/veins.txt +++ b/npc/warps/cities/veins.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Zephyrus //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester diff --git a/npc/warps/cities/yuno.txt b/npc/warps/cities/yuno.txt index 64fcbeb55..70a4820b4 100644 --- a/npc/warps/cities/yuno.txt +++ b/npc/warps/cities/yuno.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) SinSloth //= Copyright (C) Musashiden //= Copyright (C) Lupus diff --git a/npc/warps/dungeons/abbey.txt b/npc/warps/dungeons/abbey.txt index 8fbecefa9..64c4e6f9a 100644 --- a/npc/warps/dungeons/abbey.txt +++ b/npc/warps/dungeons/abbey.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) $ephiroth //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/dungeons/abyss.txt b/npc/warps/dungeons/abyss.txt index 96bd03016..76d4225db 100644 --- a/npc/warps/dungeons/abyss.txt +++ b/npc/warps/dungeons/abyss.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) Muad-Dib //= diff --git a/npc/warps/dungeons/alde_dun.txt b/npc/warps/dungeons/alde_dun.txt index 67a940d1b..a2e2e5071 100644 --- a/npc/warps/dungeons/alde_dun.txt +++ b/npc/warps/dungeons/alde_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Silent //= Copyright (C) Lupus diff --git a/npc/warps/dungeons/ama_dun.txt b/npc/warps/dungeons/ama_dun.txt index e3a72b311..c110f7a4d 100644 --- a/npc/warps/dungeons/ama_dun.txt +++ b/npc/warps/dungeons/ama_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/anthell.txt b/npc/warps/dungeons/anthell.txt index 067c157b8..d57daa654 100644 --- a/npc/warps/dungeons/anthell.txt +++ b/npc/warps/dungeons/anthell.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Gepard //= Copyright (C) L0ne_W0lf //= Copyright (C) Silent diff --git a/npc/warps/dungeons/ayo_dun.txt b/npc/warps/dungeons/ayo_dun.txt index 0d3d0eaca..24e28f3a9 100644 --- a/npc/warps/dungeons/ayo_dun.txt +++ b/npc/warps/dungeons/ayo_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) rAthena Team //= Copyright (C) eAthena Team //= Copyright (C) L0ne_W0lf diff --git a/npc/warps/dungeons/beach_dun.txt b/npc/warps/dungeons/beach_dun.txt index 97810d2bf..b0ce0013a 100644 --- a/npc/warps/dungeons/beach_dun.txt +++ b/npc/warps/dungeons/beach_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/c_tower.txt b/npc/warps/dungeons/c_tower.txt index f697dc361..7225030e6 100644 --- a/npc/warps/dungeons/c_tower.txt +++ b/npc/warps/dungeons/c_tower.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/ein_dun.txt b/npc/warps/dungeons/ein_dun.txt index d7ba25ad0..0eafb76ff 100644 --- a/npc/warps/dungeons/ein_dun.txt +++ b/npc/warps/dungeons/ein_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Gepard //= Copyright (C) Vicious //= Copyright (C) SSUNNY@YOUNG diff --git a/npc/warps/dungeons/gef_dun.txt b/npc/warps/dungeons/gef_dun.txt index 37257d974..72f8ded6c 100644 --- a/npc/warps/dungeons/gef_dun.txt +++ b/npc/warps/dungeons/gef_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) MasterOfMuppets //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/gon_dun.txt b/npc/warps/dungeons/gon_dun.txt index 5e3f3056a..3d3fc6a5d 100644 --- a/npc/warps/dungeons/gon_dun.txt +++ b/npc/warps/dungeons/gon_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/ice_dun.txt b/npc/warps/dungeons/ice_dun.txt index 97c408df5..73e528430 100644 --- a/npc/warps/dungeons/ice_dun.txt +++ b/npc/warps/dungeons/ice_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= diff --git a/npc/warps/dungeons/in_sphinx.txt b/npc/warps/dungeons/in_sphinx.txt index 3cca559f1..3928dbc93 100644 --- a/npc/warps/dungeons/in_sphinx.txt +++ b/npc/warps/dungeons/in_sphinx.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/iz_dun.txt b/npc/warps/dungeons/iz_dun.txt index 48569b136..b1e9eeacd 100644 --- a/npc/warps/dungeons/iz_dun.txt +++ b/npc/warps/dungeons/iz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= Copyright (C) Athena //= diff --git a/npc/warps/dungeons/juperos.txt b/npc/warps/dungeons/juperos.txt index 372ade76b..8fad77210 100644 --- a/npc/warps/dungeons/juperos.txt +++ b/npc/warps/dungeons/juperos.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Brainstorm //= Copyright (C) L0ne_W0lf //= Copyright (C) MasterOfMuppets diff --git a/npc/warps/dungeons/kh_dun.txt b/npc/warps/dungeons/kh_dun.txt index c3d4adc51..2d7039d4e 100644 --- a/npc/warps/dungeons/kh_dun.txt +++ b/npc/warps/dungeons/kh_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= Copyright (C) Lost Kakashi diff --git a/npc/warps/dungeons/lhz_dun.txt b/npc/warps/dungeons/lhz_dun.txt index 9aa14cd4b..c6ef31672 100644 --- a/npc/warps/dungeons/lhz_dun.txt +++ b/npc/warps/dungeons/lhz_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Toms //= Copyright (C) MasterOfMuppets diff --git a/npc/warps/dungeons/lou_dun.txt b/npc/warps/dungeons/lou_dun.txt index 76bdc7826..b82d5e638 100644 --- a/npc/warps/dungeons/lou_dun.txt +++ b/npc/warps/dungeons/lou_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/mag_dun.txt b/npc/warps/dungeons/mag_dun.txt index e7cc124a2..a439b4ba7 100644 --- a/npc/warps/dungeons/mag_dun.txt +++ b/npc/warps/dungeons/mag_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/dungeons/mjo_dun.txt b/npc/warps/dungeons/mjo_dun.txt index dbbee56da..24aa2e311 100644 --- a/npc/warps/dungeons/mjo_dun.txt +++ b/npc/warps/dungeons/mjo_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/dungeons/moc_pryd.txt b/npc/warps/dungeons/moc_pryd.txt index 6bcc6adf9..7d9f2b3b4 100644 --- a/npc/warps/dungeons/moc_pryd.txt +++ b/npc/warps/dungeons/moc_pryd.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/mosk_dun.txt b/npc/warps/dungeons/mosk_dun.txt index 766f2eedc..9bba4535c 100644 --- a/npc/warps/dungeons/mosk_dun.txt +++ b/npc/warps/dungeons/mosk_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Kisuka //= Copyright (C) $ephiroth //= diff --git a/npc/warps/dungeons/odin.txt b/npc/warps/dungeons/odin.txt index be4ec0162..d2eb2d3f5 100644 --- a/npc/warps/dungeons/odin.txt +++ b/npc/warps/dungeons/odin.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) SinSloth //= Copyright (C) Playtester //= Copyright (C) Silent diff --git a/npc/warps/dungeons/orcsdun.txt b/npc/warps/dungeons/orcsdun.txt index 3a37761fd..bb173a1a9 100644 --- a/npc/warps/dungeons/orcsdun.txt +++ b/npc/warps/dungeons/orcsdun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/dungeons/pay_dun.txt b/npc/warps/dungeons/pay_dun.txt index 72e93e614..a9b17e5d2 100644 --- a/npc/warps/dungeons/pay_dun.txt +++ b/npc/warps/dungeons/pay_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) MasterOfMuppets //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/prt_maze.txt b/npc/warps/dungeons/prt_maze.txt index 8d533ee65..bfe6ae8b8 100644 --- a/npc/warps/dungeons/prt_maze.txt +++ b/npc/warps/dungeons/prt_maze.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Lupus //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/ra_san.txt b/npc/warps/dungeons/ra_san.txt index ee176ca9c..2a0100d17 100644 --- a/npc/warps/dungeons/ra_san.txt +++ b/npc/warps/dungeons/ra_san.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Playtester //= diff --git a/npc/warps/dungeons/tha_t.txt b/npc/warps/dungeons/tha_t.txt index 436bc48b2..2e4309eda 100644 --- a/npc/warps/dungeons/tha_t.txt +++ b/npc/warps/dungeons/tha_t.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) SinSloth //= Copyright (C) Ishizu-chan //= diff --git a/npc/warps/dungeons/thor_v.txt b/npc/warps/dungeons/thor_v.txt index aac57f387..0e4762f53 100644 --- a/npc/warps/dungeons/thor_v.txt +++ b/npc/warps/dungeons/thor_v.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) $ephiroth //= diff --git a/npc/warps/dungeons/treasure.txt b/npc/warps/dungeons/treasure.txt index 5d09904d9..4fa03f96c 100644 --- a/npc/warps/dungeons/treasure.txt +++ b/npc/warps/dungeons/treasure.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/tur_dun.txt b/npc/warps/dungeons/tur_dun.txt index c0a2b9c13..be8c0e019 100644 --- a/npc/warps/dungeons/tur_dun.txt +++ b/npc/warps/dungeons/tur_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/dungeons/um_dun.txt b/npc/warps/dungeons/um_dun.txt index 70218c711..a7913b462 100644 --- a/npc/warps/dungeons/um_dun.txt +++ b/npc/warps/dungeons/um_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Darkchild diff --git a/npc/warps/dungeons/xmas_dun.txt b/npc/warps/dungeons/xmas_dun.txt index ea3337481..33967502d 100644 --- a/npc/warps/dungeons/xmas_dun.txt +++ b/npc/warps/dungeons/xmas_dun.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2011-2024 Hercules Dev Team +//= Copyright (C) 2011-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/fields/abyss_warper.txt b/npc/warps/fields/abyss_warper.txt index 08eb0b744..c50075678 100644 --- a/npc/warps/fields/abyss_warper.txt +++ b/npc/warps/fields/abyss_warper.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) SinSloth //= Copyright (C) Lupus diff --git a/npc/warps/fields/amatsu_fild.txt b/npc/warps/fields/amatsu_fild.txt index 8491cae48..e1b9c2dae 100644 --- a/npc/warps/fields/amatsu_fild.txt +++ b/npc/warps/fields/amatsu_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/fields/ein_fild.txt b/npc/warps/fields/ein_fild.txt index 94ad03bed..4229432cf 100644 --- a/npc/warps/fields/ein_fild.txt +++ b/npc/warps/fields/ein_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Vicious //= Copyright (C) Lupus //= Copyright (C) SSUNNY@YOUNG diff --git a/npc/warps/fields/gefenia.txt b/npc/warps/fields/gefenia.txt index 0777036c5..e79e52d10 100644 --- a/npc/warps/fields/gefenia.txt +++ b/npc/warps/fields/gefenia.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Nana //= Copyright (C) Darkchild //= Copyright (C) Muad Dib diff --git a/npc/warps/fields/glastheim.txt b/npc/warps/fields/glastheim.txt index c3ca746d1..db506036c 100644 --- a/npc/warps/fields/glastheim.txt +++ b/npc/warps/fields/glastheim.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2011-2024 Hercules Dev Team +//= Copyright (C) 2011-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/warps/fields/jawaii.txt b/npc/warps/fields/jawaii.txt index ab760495e..bed48e098 100644 --- a/npc/warps/fields/jawaii.txt +++ b/npc/warps/fields/jawaii.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Komurka //= Copyright (C) MasterOfMuppets //= Copyright (C) Darkchild diff --git a/npc/warps/fields/lhalzen_fild.txt b/npc/warps/fields/lhalzen_fild.txt index ee6b9dc22..909a92d1e 100644 --- a/npc/warps/fields/lhalzen_fild.txt +++ b/npc/warps/fields/lhalzen_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Vicious //= Copyright (C) DracoRPG diff --git a/npc/warps/fields/lutie_fild.txt b/npc/warps/fields/lutie_fild.txt index b4c1eeb21..be0c9f55e 100644 --- a/npc/warps/fields/lutie_fild.txt +++ b/npc/warps/fields/lutie_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/fields/man_fild.txt b/npc/warps/fields/man_fild.txt index 6602ed27f..9460e4c2a 100644 --- a/npc/warps/fields/man_fild.txt +++ b/npc/warps/fields/man_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/fields/mtmjolnir.txt b/npc/warps/fields/mtmjolnir.txt index adc417944..3d87b2f4d 100644 --- a/npc/warps/fields/mtmjolnir.txt +++ b/npc/warps/fields/mtmjolnir.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Samuray22 //= Copyright (C) L0ne_W0lf //= Copyright (C) Lupus diff --git a/npc/warps/fields/spl_fild.txt b/npc/warps/fields/spl_fild.txt index bd16ab374..d7ca289fd 100644 --- a/npc/warps/fields/spl_fild.txt +++ b/npc/warps/fields/spl_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/fields/umbala_fild.txt b/npc/warps/fields/umbala_fild.txt index 585223386..c5ea41949 100644 --- a/npc/warps/fields/umbala_fild.txt +++ b/npc/warps/fields/umbala_fild.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) Nana //= diff --git a/npc/warps/guildcastles.txt b/npc/warps/guildcastles.txt index 824887ab2..aacc8ae9f 100644 --- a/npc/warps/guildcastles.txt +++ b/npc/warps/guildcastles.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) Gepard //= Copyright (C) L0ne_W0lf diff --git a/npc/warps/other/airplane.txt b/npc/warps/other/airplane.txt index 5612b0c8f..809d2757f 100644 --- a/npc/warps/other/airplane.txt +++ b/npc/warps/other/airplane.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Musashiden //= Copyright (C) Zephiris //= Copyright (C) Vicious diff --git a/npc/warps/other/arena.txt b/npc/warps/other/arena.txt index 317855408..bb46ff199 100644 --- a/npc/warps/other/arena.txt +++ b/npc/warps/other/arena.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) Lupus //= Copyright (C) MasterOfMuppets diff --git a/npc/warps/other/god.txt b/npc/warps/other/god.txt index 269596155..8ec86fcde 100644 --- a/npc/warps/other/god.txt +++ b/npc/warps/other/god.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) MasterOfMuppets //= Copyright (C) SinSloth //= diff --git a/npc/warps/other/jobquests.txt b/npc/warps/other/jobquests.txt index 5d6ee3a50..0d27c05a1 100644 --- a/npc/warps/other/jobquests.txt +++ b/npc/warps/other/jobquests.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= Copyright (C) L0ne_W0lf //= Copyright (C) kobra_k88 diff --git a/npc/warps/other/kiel.txt b/npc/warps/other/kiel.txt index 227092aac..b0a6ecd6a 100644 --- a/npc/warps/other/kiel.txt +++ b/npc/warps/other/kiel.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Playtester //= Copyright (C) L0ne_W0lf //= diff --git a/npc/warps/other/other.txt b/npc/warps/other/other.txt index b698c5e3c..c3cbed541 100644 --- a/npc/warps/other/other.txt +++ b/npc/warps/other/other.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Athena //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/warps/pvp.txt b/npc/warps/pvp.txt index 8805ba496..508c01811 100644 --- a/npc/warps/pvp.txt +++ b/npc/warps/pvp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Timexy //= Copyright (C) Yor //= Copyright (C) Athena diff --git a/npc/woe-fe/agit_controller.txt b/npc/woe-fe/agit_controller.txt index be5f8b39c..bb9dbfa1b 100644 --- a/npc/woe-fe/agit_controller.txt +++ b/npc/woe-fe/agit_controller.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= Copyright (C) ultramage //= Copyright (C) KarLaeda diff --git a/npc/woe-fe/agit_main.txt b/npc/woe-fe/agit_main.txt index bbd94aeea..39d0552d6 100644 --- a/npc/woe-fe/agit_main.txt +++ b/npc/woe-fe/agit_main.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Joseph //= Copyright (C) Euphy //= Copyright (C) Masao diff --git a/npc/woe-fe/aldeg_cas01.txt b/npc/woe-fe/aldeg_cas01.txt index 71aeaed4e..6006dea0a 100644 --- a/npc/woe-fe/aldeg_cas01.txt +++ b/npc/woe-fe/aldeg_cas01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/aldeg_cas02.txt b/npc/woe-fe/aldeg_cas02.txt index bb0ef7300..4c4a448f5 100644 --- a/npc/woe-fe/aldeg_cas02.txt +++ b/npc/woe-fe/aldeg_cas02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/aldeg_cas03.txt b/npc/woe-fe/aldeg_cas03.txt index 661453a62..1bca2e429 100644 --- a/npc/woe-fe/aldeg_cas03.txt +++ b/npc/woe-fe/aldeg_cas03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/aldeg_cas04.txt b/npc/woe-fe/aldeg_cas04.txt index a2629cf92..da5cc1f36 100644 --- a/npc/woe-fe/aldeg_cas04.txt +++ b/npc/woe-fe/aldeg_cas04.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/aldeg_cas05.txt b/npc/woe-fe/aldeg_cas05.txt index 842f262a5..e84a25430 100644 --- a/npc/woe-fe/aldeg_cas05.txt +++ b/npc/woe-fe/aldeg_cas05.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/gefg_cas01.txt b/npc/woe-fe/gefg_cas01.txt index 990ece58d..9026a627f 100644 --- a/npc/woe-fe/gefg_cas01.txt +++ b/npc/woe-fe/gefg_cas01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/gefg_cas02.txt b/npc/woe-fe/gefg_cas02.txt index f9d4552fe..bab4d3ffb 100644 --- a/npc/woe-fe/gefg_cas02.txt +++ b/npc/woe-fe/gefg_cas02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/gefg_cas03.txt b/npc/woe-fe/gefg_cas03.txt index 002ab4d93..d3b735b8a 100644 --- a/npc/woe-fe/gefg_cas03.txt +++ b/npc/woe-fe/gefg_cas03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/gefg_cas04.txt b/npc/woe-fe/gefg_cas04.txt index 817cb533a..4dda263ac 100644 --- a/npc/woe-fe/gefg_cas04.txt +++ b/npc/woe-fe/gefg_cas04.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/gefg_cas05.txt b/npc/woe-fe/gefg_cas05.txt index 176bdf9ab..590196e34 100644 --- a/npc/woe-fe/gefg_cas05.txt +++ b/npc/woe-fe/gefg_cas05.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/payg_cas01.txt b/npc/woe-fe/payg_cas01.txt index c0d7b7f5c..d67d04830 100644 --- a/npc/woe-fe/payg_cas01.txt +++ b/npc/woe-fe/payg_cas01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/payg_cas02.txt b/npc/woe-fe/payg_cas02.txt index b6c2d1674..88e9e9180 100644 --- a/npc/woe-fe/payg_cas02.txt +++ b/npc/woe-fe/payg_cas02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/woe-fe/payg_cas03.txt b/npc/woe-fe/payg_cas03.txt index 6ca79d4cc..b7adfbd47 100644 --- a/npc/woe-fe/payg_cas03.txt +++ b/npc/woe-fe/payg_cas03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/payg_cas04.txt b/npc/woe-fe/payg_cas04.txt index f9137ce43..7a22843f4 100644 --- a/npc/woe-fe/payg_cas04.txt +++ b/npc/woe-fe/payg_cas04.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Streusel //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf diff --git a/npc/woe-fe/payg_cas05.txt b/npc/woe-fe/payg_cas05.txt index 17f8a0fde..61e57216f 100644 --- a/npc/woe-fe/payg_cas05.txt +++ b/npc/woe-fe/payg_cas05.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/prtg_cas01.txt b/npc/woe-fe/prtg_cas01.txt index 0e9762d7b..d375d7a8e 100644 --- a/npc/woe-fe/prtg_cas01.txt +++ b/npc/woe-fe/prtg_cas01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/prtg_cas02.txt b/npc/woe-fe/prtg_cas02.txt index 9ed1d3489..b4a9ca813 100644 --- a/npc/woe-fe/prtg_cas02.txt +++ b/npc/woe-fe/prtg_cas02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/prtg_cas03.txt b/npc/woe-fe/prtg_cas03.txt index 1e9325890..842894503 100644 --- a/npc/woe-fe/prtg_cas03.txt +++ b/npc/woe-fe/prtg_cas03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/prtg_cas04.txt b/npc/woe-fe/prtg_cas04.txt index 54dd62c3f..31b06dee4 100644 --- a/npc/woe-fe/prtg_cas04.txt +++ b/npc/woe-fe/prtg_cas04.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/prtg_cas05.txt b/npc/woe-fe/prtg_cas05.txt index a433d110b..a020a9a81 100644 --- a/npc/woe-fe/prtg_cas05.txt +++ b/npc/woe-fe/prtg_cas05.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Masao //= Copyright (C) L0ne_W0lf //= diff --git a/npc/woe-fe/trs_rp.txt b/npc/woe-fe/trs_rp.txt index d567b813a..b19ff7b9f 100644 --- a/npc/woe-fe/trs_rp.txt +++ b/npc/woe-fe/trs_rp.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Daegaladh //= Copyright (C) Masao //= diff --git a/npc/woe-se/agit_main_se.txt b/npc/woe-se/agit_main_se.txt index cccfb8c39..cd38c2ad6 100644 --- a/npc/woe-se/agit_main_se.txt +++ b/npc/woe-se/agit_main_se.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Cookie //= Copyright (C) Euphy //= Copyright (C) Brian diff --git a/npc/woe-se/agit_start_se.txt b/npc/woe-se/agit_start_se.txt index 3d275e01f..e4030b489 100644 --- a/npc/woe-se/agit_start_se.txt +++ b/npc/woe-se/agit_start_se.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/arug_cas01.txt b/npc/woe-se/arug_cas01.txt index ff0c37344..2b20ffb11 100644 --- a/npc/woe-se/arug_cas01.txt +++ b/npc/woe-se/arug_cas01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/arug_cas02.txt b/npc/woe-se/arug_cas02.txt index ece1dbd77..e5c36ca70 100644 --- a/npc/woe-se/arug_cas02.txt +++ b/npc/woe-se/arug_cas02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/arug_cas03.txt b/npc/woe-se/arug_cas03.txt index a5b4e04a8..876411381 100644 --- a/npc/woe-se/arug_cas03.txt +++ b/npc/woe-se/arug_cas03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/arug_cas04.txt b/npc/woe-se/arug_cas04.txt index 01f4824ae..5a9b00a4c 100644 --- a/npc/woe-se/arug_cas04.txt +++ b/npc/woe-se/arug_cas04.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/arug_cas05.txt b/npc/woe-se/arug_cas05.txt index ed180f013..cc18ab5ab 100644 --- a/npc/woe-se/arug_cas05.txt +++ b/npc/woe-se/arug_cas05.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/guild_flags.txt b/npc/woe-se/guild_flags.txt index 7736405db..68b1bf5e0 100644 --- a/npc/woe-se/guild_flags.txt +++ b/npc/woe-se/guild_flags.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) L0ne_W0lf //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/schg_cas01.txt b/npc/woe-se/schg_cas01.txt index 1c34e729f..862806301 100644 --- a/npc/woe-se/schg_cas01.txt +++ b/npc/woe-se/schg_cas01.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/schg_cas02.txt b/npc/woe-se/schg_cas02.txt index 82a2e53a5..d6ce676aa 100644 --- a/npc/woe-se/schg_cas02.txt +++ b/npc/woe-se/schg_cas02.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/schg_cas03.txt b/npc/woe-se/schg_cas03.txt index 0ea4277de..08a3d0c4f 100644 --- a/npc/woe-se/schg_cas03.txt +++ b/npc/woe-se/schg_cas03.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/schg_cas04.txt b/npc/woe-se/schg_cas04.txt index 07c2a6496..c9b957ae9 100644 --- a/npc/woe-se/schg_cas04.txt +++ b/npc/woe-se/schg_cas04.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/npc/woe-se/schg_cas05.txt b/npc/woe-se/schg_cas05.txt index 15506ff83..c7af818b9 100644 --- a/npc/woe-se/schg_cas05.txt +++ b/npc/woe-se/schg_cas05.txt @@ -9,7 +9,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2012-2024 Hercules Dev Team +//= Copyright (C) 2012-2025 Hercules Dev Team //= Copyright (C) Euphy //= //= Hercules is free software: you can redistribute it and/or modify diff --git a/script-checker b/script-checker index ed249b34a..d7c579a2d 100755 --- a/script-checker +++ b/script-checker @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2013-2024 Hercules Dev Team +# Copyright (C) 2013-2025 Hercules Dev Team # Copyright (C) 2013 Haru # # Hercules is free software: you can redistribute it and/or modify diff --git a/script-checker.bat b/script-checker.bat index 473e8d295..59f7a8fc4 100644 --- a/script-checker.bat +++ b/script-checker.bat @@ -3,7 +3,7 @@ REM This file is part of Hercules. REM http://herc.ws - http://github.com/HerculesWS/Hercules REM -REM Copyright (C) 2013-2024 Hercules Dev Team +REM Copyright (C) 2013-2025 Hercules Dev Team REM REM Hercules is free software: you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by diff --git a/sql-files/logs.sql b/sql-files/logs.sql index 6a4779c6b..b7ffed66c 100644 --- a/sql-files/logs.sql +++ b/sql-files/logs.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2012-2024 Hercules Dev Team +-- Copyright (C) 2012-2025 Hercules Dev Team -- Copyright (C) Athena Dev Teams -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/main.sql b/sql-files/main.sql index 221f153e9..f2ccda19f 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2012-2024 Hercules Dev Team +-- Copyright (C) 2012-2025 Hercules Dev Team -- Copyright (C) Athena Dev Teams -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/tools/convert_engine_innodb.sql b/sql-files/tools/convert_engine_innodb.sql index 931b78dfb..d8a96f39e 100644 --- a/sql-files/tools/convert_engine_innodb.sql +++ b/sql-files/tools/convert_engine_innodb.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2012-2024 Hercules Dev Team +-- Copyright (C) 2012-2025 Hercules Dev Team -- Copyright (C) Athena Dev Teams -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/tools/convert_engine_myisam.sql b/sql-files/tools/convert_engine_myisam.sql index 152fd0200..dfb808850 100644 --- a/sql-files/tools/convert_engine_myisam.sql +++ b/sql-files/tools/convert_engine_myisam.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2012-2024 Hercules Dev Team +-- Copyright (C) 2012-2025 Hercules Dev Team -- Copyright (C) Athena Dev Teams -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/tools/convert_passwords.sql b/sql-files/tools/convert_passwords.sql index 1ce5bea9b..472ab1563 100644 --- a/sql-files/tools/convert_passwords.sql +++ b/sql-files/tools/convert_passwords.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2012-2024 Hercules Dev Team +-- Copyright (C) 2012-2025 Hercules Dev Team -- Copyright (C) Athena Dev Teams -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2013-02-14--16-15.sql b/sql-files/upgrades/2013-02-14--16-15.sql index f248699d7..acb390453 100644 --- a/sql-files/upgrades/2013-02-14--16-15.sql +++ b/sql-files/upgrades/2013-02-14--16-15.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-02-15--18-06.sql b/sql-files/upgrades/2013-02-15--18-06.sql index dbb74bd9e..286bf4a49 100644 --- a/sql-files/upgrades/2013-02-15--18-06.sql +++ b/sql-files/upgrades/2013-02-15--18-06.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-03-05--01-05.sql b/sql-files/upgrades/2013-03-05--01-05.sql index 63b019fa1..b6b010f29 100644 --- a/sql-files/upgrades/2013-03-05--01-05.sql +++ b/sql-files/upgrades/2013-03-05--01-05.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-03-06--00-00.sql b/sql-files/upgrades/2013-03-06--00-00.sql index 6904de3ad..e4dc9a850 100644 --- a/sql-files/upgrades/2013-03-06--00-00.sql +++ b/sql-files/upgrades/2013-03-06--00-00.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 Hercules Dev Team -- Copyright (C) Athena Dev Teams -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2013-03-09--01-56.sql b/sql-files/upgrades/2013-03-09--01-56.sql index d132e81e8..ef9d98be6 100644 --- a/sql-files/upgrades/2013-03-09--01-56.sql +++ b/sql-files/upgrades/2013-03-09--01-56.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2012-2024 Hercules Dev Team +-- Copyright (C) 2012-2025 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 diff --git a/sql-files/upgrades/2013-03-27--18-35.sql b/sql-files/upgrades/2013-03-27--18-35.sql index 2bf9544a7..35609e233 100644 --- a/sql-files/upgrades/2013-03-27--18-35.sql +++ b/sql-files/upgrades/2013-03-27--18-35.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-04-16--01-24.sql b/sql-files/upgrades/2013-04-16--01-24.sql index c880cfe2f..56f24eebd 100644 --- a/sql-files/upgrades/2013-04-16--01-24.sql +++ b/sql-files/upgrades/2013-04-16--01-24.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-04-16--02-15.sql b/sql-files/upgrades/2013-04-16--02-15.sql index 71e3b277a..ccda36202 100644 --- a/sql-files/upgrades/2013-04-16--02-15.sql +++ b/sql-files/upgrades/2013-04-16--02-15.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-10-09--21-38.sql b/sql-files/upgrades/2013-10-09--21-38.sql index 5eb6ef8f8..d9ef0813a 100644 --- a/sql-files/upgrades/2013-10-09--21-38.sql +++ b/sql-files/upgrades/2013-10-09--21-38.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-10-10--16-36.sql b/sql-files/upgrades/2013-10-10--16-36.sql index 4bc37fa3e..e34b23c31 100644 --- a/sql-files/upgrades/2013-10-10--16-36.sql +++ b/sql-files/upgrades/2013-10-10--16-36.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-10-27--16-47.sql b/sql-files/upgrades/2013-10-27--16-47.sql index 0f0df535a..84107209e 100644 --- a/sql-files/upgrades/2013-10-27--16-47.sql +++ b/sql-files/upgrades/2013-10-27--16-47.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-10-30--19-53.sql b/sql-files/upgrades/2013-10-30--19-53.sql index 6cd2a2927..7a9341cba 100644 --- a/sql-files/upgrades/2013-10-30--19-53.sql +++ b/sql-files/upgrades/2013-10-30--19-53.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-10-30--21-12.sql b/sql-files/upgrades/2013-10-30--21-12.sql index 318e10ae1..7ce409d3f 100644 --- a/sql-files/upgrades/2013-10-30--21-12.sql +++ b/sql-files/upgrades/2013-10-30--21-12.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-10-31--07-49.sql b/sql-files/upgrades/2013-10-31--07-49.sql index 1c2ceaeb9..b790f8b02 100644 --- a/sql-files/upgrades/2013-10-31--07-49.sql +++ b/sql-files/upgrades/2013-10-31--07-49.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-11-09--00-03.sql b/sql-files/upgrades/2013-11-09--00-03.sql index f588ee8d4..7489b1564 100644 --- a/sql-files/upgrades/2013-11-09--00-03.sql +++ b/sql-files/upgrades/2013-11-09--00-03.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-11-15--00-06.sql b/sql-files/upgrades/2013-11-15--00-06.sql index eff536616..f9dac38e9 100644 --- a/sql-files/upgrades/2013-11-15--00-06.sql +++ b/sql-files/upgrades/2013-11-15--00-06.sql @@ -4,7 +4,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 Hercules Dev Team -- Copyright (C) 2013 Haru -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2013-11-15--19-57.sql b/sql-files/upgrades/2013-11-15--19-57.sql index 297349a72..2216a9bd3 100644 --- a/sql-files/upgrades/2013-11-15--19-57.sql +++ b/sql-files/upgrades/2013-11-15--19-57.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-11-16--07-49.sql b/sql-files/upgrades/2013-11-16--07-49.sql index 57e1aae99..ba6afd387 100644 --- a/sql-files/upgrades/2013-11-16--07-49.sql +++ b/sql-files/upgrades/2013-11-16--07-49.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2013-11-18--08-23.sql b/sql-files/upgrades/2013-11-18--08-23.sql index 9e35d4c3e..f981a917b 100644 --- a/sql-files/upgrades/2013-11-18--08-23.sql +++ b/sql-files/upgrades/2013-11-18--08-23.sql @@ -4,7 +4,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 Hercules Dev Team -- Copyright (C) 2013 Haru -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2013-12-24--00-15.sql b/sql-files/upgrades/2013-12-24--00-15.sql index 61a7aa7cc..1dc7258bd 100644 --- a/sql-files/upgrades/2013-12-24--00-15.sql +++ b/sql-files/upgrades/2013-12-24--00-15.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2014-01-04--16-47.sql b/sql-files/upgrades/2014-01-04--16-47.sql index 359ad2fd7..883381478 100644 --- a/sql-files/upgrades/2014-01-04--16-47.sql +++ b/sql-files/upgrades/2014-01-04--16-47.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-01-06--17-22.sql b/sql-files/upgrades/2014-01-06--17-22.sql index 50e4934c9..209dfee3c 100644 --- a/sql-files/upgrades/2014-01-06--17-22.sql +++ b/sql-files/upgrades/2014-01-06--17-22.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-02-19--17-57.sql b/sql-files/upgrades/2014-02-19--17-57.sql index cf4fa621d..bf1eaa6fd 100644 --- a/sql-files/upgrades/2014-02-19--17-57.sql +++ b/sql-files/upgrades/2014-02-19--17-57.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-03-25--23-57.sql b/sql-files/upgrades/2014-03-25--23-57.sql index 19ed9d51e..3feaf959c 100644 --- a/sql-files/upgrades/2014-03-25--23-57.sql +++ b/sql-files/upgrades/2014-03-25--23-57.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-04-07--22-04.sql b/sql-files/upgrades/2014-04-07--22-04.sql index b3d901819..5e77e8dd8 100644 --- a/sql-files/upgrades/2014-04-07--22-04.sql +++ b/sql-files/upgrades/2014-04-07--22-04.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-04-26--10-00.sql b/sql-files/upgrades/2014-04-26--10-00.sql index 6e772b2c9..683ee8a45 100644 --- a/sql-files/upgrades/2014-04-26--10-00.sql +++ b/sql-files/upgrades/2014-04-26--10-00.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-05-17--00-06.sql b/sql-files/upgrades/2014-05-17--00-06.sql index d11759657..61f1cbf6a 100644 --- a/sql-files/upgrades/2014-05-17--00-06.sql +++ b/sql-files/upgrades/2014-05-17--00-06.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-09-01--16-53.sql b/sql-files/upgrades/2014-09-01--16-53.sql index 65184d9b7..36b726dca 100644 --- a/sql-files/upgrades/2014-09-01--16-53.sql +++ b/sql-files/upgrades/2014-09-01--16-53.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2014-11-03--00-45.sql b/sql-files/upgrades/2014-11-03--00-45.sql index 96ab50602..66ad60e16 100644 --- a/sql-files/upgrades/2014-11-03--00-45.sql +++ b/sql-files/upgrades/2014-11-03--00-45.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/sql-files/upgrades/2015-07-02--18-14.sql b/sql-files/upgrades/2015-07-02--18-14.sql index dc76a0275..87b8a58ff 100644 --- a/sql-files/upgrades/2015-07-02--18-14.sql +++ b/sql-files/upgrades/2015-07-02--18-14.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2015-07-08--13-08.sql b/sql-files/upgrades/2015-07-08--13-08.sql index 8fa76cae5..863aa9407 100644 --- a/sql-files/upgrades/2015-07-08--13-08.sql +++ b/sql-files/upgrades/2015-07-08--13-08.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2015-08-27--20-42.sql b/sql-files/upgrades/2015-08-27--20-42.sql index 8ac2b8e79..d8d8fa0e3 100644 --- a/sql-files/upgrades/2015-08-27--20-42.sql +++ b/sql-files/upgrades/2015-08-27--20-42.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2015-12-16--12-57.sql b/sql-files/upgrades/2015-12-16--12-57.sql index 6f5912277..7f47bb2d0 100644 --- a/sql-files/upgrades/2015-12-16--12-57.sql +++ b/sql-files/upgrades/2015-12-16--12-57.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2015-12-17--15-58.sql b/sql-files/upgrades/2015-12-17--15-58.sql index 3d7282105..c04977a41 100644 --- a/sql-files/upgrades/2015-12-17--15-58.sql +++ b/sql-files/upgrades/2015-12-17--15-58.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2016-03-10--22-18.sql b/sql-files/upgrades/2016-03-10--22-18.sql index 0a5db5a32..865af1ab3 100644 --- a/sql-files/upgrades/2016-03-10--22-18.sql +++ b/sql-files/upgrades/2016-03-10--22-18.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2016-07-08--02-42.sql b/sql-files/upgrades/2016-07-08--02-42.sql index 66725e6ab..6f69e2cca 100644 --- a/sql-files/upgrades/2016-07-08--02-42.sql +++ b/sql-files/upgrades/2016-07-08--02-42.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2016-07-08--02-51.sql b/sql-files/upgrades/2016-07-08--02-51.sql index d6aafcbf8..b1f0e78b9 100644 --- a/sql-files/upgrades/2016-07-08--02-51.sql +++ b/sql-files/upgrades/2016-07-08--02-51.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2016-10-03--20-27.sql b/sql-files/upgrades/2016-10-03--20-27.sql index 405b14d87..98c20fc30 100644 --- a/sql-files/upgrades/2016-10-03--20-27.sql +++ b/sql-files/upgrades/2016-10-03--20-27.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2016-10-26--10-29.sql b/sql-files/upgrades/2016-10-26--10-29.sql index a6b675e64..a3ba86a37 100644 --- a/sql-files/upgrades/2016-10-26--10-29.sql +++ b/sql-files/upgrades/2016-10-26--10-29.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2017-03-02--11-40.sql b/sql-files/upgrades/2017-03-02--11-40.sql index 76f0541c0..f58df973a 100644 --- a/sql-files/upgrades/2017-03-02--11-40.sql +++ b/sql-files/upgrades/2017-03-02--11-40.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2017-03-15--14-29.sql b/sql-files/upgrades/2017-03-15--14-29.sql index fae8d8413..14b1fab07 100644 --- a/sql-files/upgrades/2017-03-15--14-29.sql +++ b/sql-files/upgrades/2017-03-15--14-29.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2017-2024 Hercules Dev Team +-- Copyright (C) 2017-2025 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 diff --git a/sql-files/upgrades/2017-06-04--15-04.sql b/sql-files/upgrades/2017-06-04--15-04.sql index 1f367386d..2243b0f9b 100644 --- a/sql-files/upgrades/2017-06-04--15-04.sql +++ b/sql-files/upgrades/2017-06-04--15-04.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2017-2024 Hercules Dev Team +-- Copyright (C) 2017-2025 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 diff --git a/sql-files/upgrades/2017-06-04--15-05.sql b/sql-files/upgrades/2017-06-04--15-05.sql index 282fce348..e7dd95086 100644 --- a/sql-files/upgrades/2017-06-04--15-05.sql +++ b/sql-files/upgrades/2017-06-04--15-05.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2017-2024 Hercules Dev Team +-- Copyright (C) 2017-2025 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 diff --git a/sql-files/upgrades/2018-03-10--04-06.sql b/sql-files/upgrades/2018-03-10--04-06.sql index e7141f764..16f687868 100644 --- a/sql-files/upgrades/2018-03-10--04-06.sql +++ b/sql-files/upgrades/2018-03-10--04-06.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2017-2024 Hercules Dev Team +-- Copyright (C) 2017-2025 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 diff --git a/sql-files/upgrades/2018-06-03--00-10.sql b/sql-files/upgrades/2018-06-03--00-10.sql index ef38f3136..aae5b95da 100644 --- a/sql-files/upgrades/2018-06-03--00-10.sql +++ b/sql-files/upgrades/2018-06-03--00-10.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2018-2024 Hercules Dev Team +-- Copyright (C) 2018-2025 Hercules Dev Team -- Copyright (C) Smokexyz -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2018-06-03--17-16.sql b/sql-files/upgrades/2018-06-03--17-16.sql index 090a8be70..ee9b54b9f 100644 --- a/sql-files/upgrades/2018-06-03--17-16.sql +++ b/sql-files/upgrades/2018-06-03--17-16.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2018-2024 Hercules Dev Team +-- Copyright (C) 2018-2025 Hercules Dev Team -- Copyright (C) Dastgir -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2018-06-05--12-02.sql b/sql-files/upgrades/2018-06-05--12-02.sql index f31131e14..6de536b81 100644 --- a/sql-files/upgrades/2018-06-05--12-02.sql +++ b/sql-files/upgrades/2018-06-05--12-02.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2018-2024 Hercules Dev Team +-- Copyright (C) 2018-2025 Hercules Dev Team -- Copyright (C) 2018 Dastgir -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2018-07-24--03-23.sql b/sql-files/upgrades/2018-07-24--03-23.sql index 26837e211..53f3279d3 100644 --- a/sql-files/upgrades/2018-07-24--03-23.sql +++ b/sql-files/upgrades/2018-07-24--03-23.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2018-2024 Hercules Dev Team +-- Copyright (C) 2018-2025 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 diff --git a/sql-files/upgrades/2018-09-01--05-22.sql b/sql-files/upgrades/2018-09-01--05-22.sql index 6e9a4cc0e..3ef56d70e 100644 --- a/sql-files/upgrades/2018-09-01--05-22.sql +++ b/sql-files/upgrades/2018-09-01--05-22.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2018-2024 Hercules Dev Team +-- Copyright (C) 2018-2025 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 diff --git a/sql-files/upgrades/2018-12-14--01-02.sql b/sql-files/upgrades/2018-12-14--01-02.sql index 95548414b..04267d5ef 100644 --- a/sql-files/upgrades/2018-12-14--01-02.sql +++ b/sql-files/upgrades/2018-12-14--01-02.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2018-2024 Hercules Dev Team +-- Copyright (C) 2018-2025 Hercules Dev Team -- Copyright (C) 4144 -- -- Hercules is free software: you can redistribute it and/or modify diff --git a/sql-files/upgrades/2018-12-29--07-51.sql b/sql-files/upgrades/2018-12-29--07-51.sql index 932460e77..2a344d907 100644 --- a/sql-files/upgrades/2018-12-29--07-51.sql +++ b/sql-files/upgrades/2018-12-29--07-51.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2019-04-08--21-52.sql b/sql-files/upgrades/2019-04-08--21-52.sql index 1c40ddc08..67bd5283c 100644 --- a/sql-files/upgrades/2019-04-08--21-52.sql +++ b/sql-files/upgrades/2019-04-08--21-52.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2019-04-25--02-12.sql b/sql-files/upgrades/2019-04-25--02-12.sql index 3ef2a72e3..48f4a0fa7 100644 --- a/sql-files/upgrades/2019-04-25--02-12.sql +++ b/sql-files/upgrades/2019-04-25--02-12.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2019-05-09--18-07.sql b/sql-files/upgrades/2019-05-09--18-07.sql index ca59e5bab..88bf8851a 100644 --- a/sql-files/upgrades/2019-05-09--18-07.sql +++ b/sql-files/upgrades/2019-05-09--18-07.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2015-2024 Hercules Dev Team +-- Copyright (C) 2015-2025 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 diff --git a/sql-files/upgrades/2019-08-08--19-43.sql b/sql-files/upgrades/2019-08-08--19-43.sql index b72a6a6de..d259d7dd4 100644 --- a/sql-files/upgrades/2019-08-08--19-43.sql +++ b/sql-files/upgrades/2019-08-08--19-43.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2019-10-05--19-01.sql b/sql-files/upgrades/2019-10-05--19-01.sql index a65d02c97..4107d2101 100644 --- a/sql-files/upgrades/2019-10-05--19-01.sql +++ b/sql-files/upgrades/2019-10-05--19-01.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2019-10-12--14-21.sql b/sql-files/upgrades/2019-10-12--14-21.sql index 606cce3ec..2d4c80265 100644 --- a/sql-files/upgrades/2019-10-12--14-21.sql +++ b/sql-files/upgrades/2019-10-12--14-21.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2019-11-22--23-58.sql b/sql-files/upgrades/2019-11-22--23-58.sql index ca7027fc8..38890c015 100644 --- a/sql-files/upgrades/2019-11-22--23-58.sql +++ b/sql-files/upgrades/2019-11-22--23-58.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2020-01-24--01-09.sql b/sql-files/upgrades/2020-01-24--01-09.sql index 45dea2e72..4b719d514 100644 --- a/sql-files/upgrades/2020-01-24--01-09.sql +++ b/sql-files/upgrades/2020-01-24--01-09.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/2020-03-22--01-56.sql b/sql-files/upgrades/2020-03-22--01-56.sql index 567ae4f20..e0a8be28b 100644 --- a/sql-files/upgrades/2020-03-22--01-56.sql +++ b/sql-files/upgrades/2020-03-22--01-56.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2020-03-22--03-09.sql b/sql-files/upgrades/2020-03-22--03-09.sql index 08717b005..e9b561afe 100644 --- a/sql-files/upgrades/2020-03-22--03-09.sql +++ b/sql-files/upgrades/2020-03-22--03-09.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2020-05-01--04-44.sql b/sql-files/upgrades/2020-05-01--04-44.sql index 3c6744971..a909799ab 100644 --- a/sql-files/upgrades/2020-05-01--04-44.sql +++ b/sql-files/upgrades/2020-05-01--04-44.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2020-05-10--23-11.sql b/sql-files/upgrades/2020-05-10--23-11.sql index 596b49d4d..c55ae7023 100644 --- a/sql-files/upgrades/2020-05-10--23-11.sql +++ b/sql-files/upgrades/2020-05-10--23-11.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2020-08-15--13-00.sql b/sql-files/upgrades/2020-08-15--13-00.sql index 3200f998f..a92bcdfb0 100644 --- a/sql-files/upgrades/2020-08-15--13-00.sql +++ b/sql-files/upgrades/2020-08-15--13-00.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2020-09-12--14-02.sql b/sql-files/upgrades/2020-09-12--14-02.sql index 0dbc9d9ef..a378a1e91 100644 --- a/sql-files/upgrades/2020-09-12--14-02.sql +++ b/sql-files/upgrades/2020-09-12--14-02.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2021-02-20--19-57.sql b/sql-files/upgrades/2021-02-20--19-57.sql index 7084c12a5..a0860ff98 100644 --- a/sql-files/upgrades/2021-02-20--19-57.sql +++ b/sql-files/upgrades/2021-02-20--19-57.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2021-04-10--15-36.sql b/sql-files/upgrades/2021-04-10--15-36.sql index 8d22c306a..b73765b63 100644 --- a/sql-files/upgrades/2021-04-10--15-36.sql +++ b/sql-files/upgrades/2021-04-10--15-36.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2019-2024 Hercules Dev Team +-- Copyright (C) 2019-2025 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 diff --git a/sql-files/upgrades/2021-05-03--10-19.sql b/sql-files/upgrades/2021-05-03--10-19.sql index e43ffb777..744c3a546 100644 --- a/sql-files/upgrades/2021-05-03--10-19.sql +++ b/sql-files/upgrades/2021-05-03--10-19.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2021-2024 Hercules Dev Team +-- Copyright (C) 2021-2025 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 diff --git a/sql-files/upgrades/2021-10-21--18-49.sql b/sql-files/upgrades/2021-10-21--18-49.sql index a5c5202cc..0fa8abf59 100644 --- a/sql-files/upgrades/2021-10-21--18-49.sql +++ b/sql-files/upgrades/2021-10-21--18-49.sql @@ -2,7 +2,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2021-2024 Hercules Dev Team +-- Copyright (C) 2021-2025 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 diff --git a/sql-files/upgrades/2022-01-05--19-00.sql b/sql-files/upgrades/2022-01-05--19-00.sql index 7e9d280be..faf7a3652 100644 --- a/sql-files/upgrades/2022-01-05--19-00.sql +++ b/sql-files/upgrades/2022-01-05--19-00.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2022-2024 Hercules Dev Team +-- Copyright (C) 2022-2025 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 diff --git a/sql-files/upgrades/2022-05-21--29-49.sql b/sql-files/upgrades/2022-05-21--29-49.sql index 342c57cc2..24c81ae43 100644 --- a/sql-files/upgrades/2022-05-21--29-49.sql +++ b/sql-files/upgrades/2022-05-21--29-49.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2022-2024 Hercules Dev Team +-- Copyright (C) 2022-2025 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 diff --git a/sql-files/upgrades/2022-10-08--08-35.sql b/sql-files/upgrades/2022-10-08--08-35.sql index ec53079e0..6d19a7a2d 100644 --- a/sql-files/upgrades/2022-10-08--08-35.sql +++ b/sql-files/upgrades/2022-10-08--08-35.sql @@ -3,7 +3,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2022-2024 Hercules Dev Team +-- Copyright (C) 2022-2025 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 diff --git a/sql-files/upgrades/eAthena-logs-upgrade.sql b/sql-files/upgrades/eAthena-logs-upgrade.sql index b3b2c5757..af9abf9e5 100644 --- a/sql-files/upgrades/eAthena-logs-upgrade.sql +++ b/sql-files/upgrades/eAthena-logs-upgrade.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/eAthena-main-upgrade.sql b/sql-files/upgrades/eAthena-main-upgrade.sql index c941058b7..e10bd42ce 100644 --- a/sql-files/upgrades/eAthena-main-upgrade.sql +++ b/sql-files/upgrades/eAthena-main-upgrade.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/rAthena-logs-upgrade.sql b/sql-files/upgrades/rAthena-logs-upgrade.sql index c22a1ce87..3d59eaf7d 100644 --- a/sql-files/upgrades/rAthena-logs-upgrade.sql +++ b/sql-files/upgrades/rAthena-logs-upgrade.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/sql-files/upgrades/rAthena-main-upgrade.sql b/sql-files/upgrades/rAthena-main-upgrade.sql index 5039cc3ee..6e319ccc6 100644 --- a/sql-files/upgrades/rAthena-main-upgrade.sql +++ b/sql-files/upgrades/rAthena-main-upgrade.sql @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2013-2024 Hercules Dev Team +-- Copyright (C) 2013-2025 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 diff --git a/src/api/HPMapi.c b/src/api/HPMapi.c index e9c5415ae..e1fae0726 100644 --- a/src/api/HPMapi.c +++ b/src/api/HPMapi.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/api/HPMapi.h b/src/api/HPMapi.h index 23e466309..be1b288ea 100644 --- a/src/api/HPMapi.h +++ b/src/api/HPMapi.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/api/Makefile.in b/src/api/Makefile.in index 13ea208ae..ed0be5b33 100644 --- a/src/api/Makefile.in +++ b/src/api/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/aclif.c b/src/api/aclif.c index 25de9ac23..8f92ee962 100644 --- a/src/api/aclif.c +++ b/src/api/aclif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/api/aclif.h b/src/api/aclif.h index 2b2e46801..97e6db7c9 100644 --- a/src/api/aclif.h +++ b/src/api/aclif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/aloginif.c b/src/api/aloginif.c index 7f42fb685..679ed9129 100644 --- a/src/api/aloginif.c +++ b/src/api/aloginif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/api/aloginif.h b/src/api/aloginif.h index f9bd57599..fb22ed658 100644 --- a/src/api/aloginif.h +++ b/src/api/aloginif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/api/api.c b/src/api/api.c index a44cfdd98..48ea37405 100644 --- a/src/api/api.c +++ b/src/api/api.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/api.h b/src/api/api.h index aaeb0ec65..da662a56b 100644 --- a/src/api/api.h +++ b/src/api/api.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/apipackets.h b/src/api/apipackets.h index b76175dee..9f28e783a 100644 --- a/src/api/apipackets.h +++ b/src/api/apipackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/apisessiondata.h b/src/api/apisessiondata.h index f01a4198b..268db0803 100644 --- a/src/api/apisessiondata.h +++ b/src/api/apisessiondata.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/handlerfunc.h b/src/api/handlerfunc.h index 377565d44..6159f85db 100644 --- a/src/api/handlerfunc.h +++ b/src/api/handlerfunc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/handlers.c b/src/api/handlers.c index dcf9b7db3..24ee8e589 100644 --- a/src/api/handlers.c +++ b/src/api/handlers.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/handlers.h b/src/api/handlers.h index fd5a255a9..590d16401 100644 --- a/src/api/handlers.h +++ b/src/api/handlers.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/http_include.h b/src/api/http_include.h index 4bb780f7d..ef39449e1 100644 --- a/src/api/http_include.h +++ b/src/api/http_include.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/httphandler.h b/src/api/httphandler.h index 6cf25e04c..f7024f448 100644 --- a/src/api/httphandler.h +++ b/src/api/httphandler.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/httpparsehandler.h b/src/api/httpparsehandler.h index a10b72fa6..73b38cb2e 100644 --- a/src/api/httpparsehandler.h +++ b/src/api/httpparsehandler.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/httpparser.c b/src/api/httpparser.c index 871747927..669254a63 100644 --- a/src/api/httpparser.c +++ b/src/api/httpparser.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/httpparser.h b/src/api/httpparser.h index 59fbfc3b1..7c0dab1bf 100644 --- a/src/api/httpparser.h +++ b/src/api/httpparser.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/httpsender.c b/src/api/httpsender.c index 99c6e44ac..80fec8cb0 100644 --- a/src/api/httpsender.c +++ b/src/api/httpsender.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/httpsender.h b/src/api/httpsender.h index 2cdacaadc..e96a97d21 100644 --- a/src/api/httpsender.h +++ b/src/api/httpsender.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/imageparser.c b/src/api/imageparser.c index fbf423ef7..26e4eba30 100644 --- a/src/api/imageparser.c +++ b/src/api/imageparser.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/imageparser.h b/src/api/imageparser.h index 12dff7b62..9ec6f1abe 100644 --- a/src/api/imageparser.h +++ b/src/api/imageparser.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/jsonparser.c b/src/api/jsonparser.c index 53395640d..7ff73cea3 100644 --- a/src/api/jsonparser.c +++ b/src/api/jsonparser.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/jsonparser.h b/src/api/jsonparser.h index 50b6325ed..6a88b8dc5 100644 --- a/src/api/jsonparser.h +++ b/src/api/jsonparser.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/jsonwriter.c b/src/api/jsonwriter.c index de0fc2b3a..525c9df08 100644 --- a/src/api/jsonwriter.c +++ b/src/api/jsonwriter.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/jsonwriter.h b/src/api/jsonwriter.h index 358d6f4bc..05702c52c 100644 --- a/src/api/jsonwriter.h +++ b/src/api/jsonwriter.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/mimepart.h b/src/api/mimepart.h index 947e8b6f6..01fefcdec 100644 --- a/src/api/mimepart.h +++ b/src/api/mimepart.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/postconst.h b/src/api/postconst.h index c0a5dd367..b6cda5bbd 100644 --- a/src/api/postconst.h +++ b/src/api/postconst.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/postheader.c b/src/api/postheader.c index a95cefa30..ad4d3ab3c 100644 --- a/src/api/postheader.c +++ b/src/api/postheader.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/postheader.h b/src/api/postheader.h index 174d49bc1..186b86f85 100644 --- a/src/api/postheader.h +++ b/src/api/postheader.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/api/urlhandlers.h b/src/api/urlhandlers.h index 0fc6871b3..349869ac9 100644 --- a/src/api/urlhandlers.h +++ b/src/api/urlhandlers.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/HPMchar.c b/src/char/HPMchar.c index 25969507c..038e98b9d 100644 --- a/src/char/HPMchar.c +++ b/src/char/HPMchar.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2014-2024 Hercules Dev Team + * Copyright (C) 2014-2025 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 diff --git a/src/char/HPMchar.h b/src/char/HPMchar.h index 34dd1dcb6..ba96edb29 100644 --- a/src/char/HPMchar.h +++ b/src/char/HPMchar.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2014-2024 Hercules Dev Team + * Copyright (C) 2014-2025 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 diff --git a/src/char/Makefile.in b/src/char/Makefile.in index 81dc30956..bd364ee5d 100644 --- a/src/char/Makefile.in +++ b/src/char/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/apipackets.h b/src/char/apipackets.h index e4eb1faf4..1030cf4d2 100644 --- a/src/char/apipackets.h +++ b/src/char/apipackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/capiif.c b/src/char/capiif.c index d77737997..a32dab32b 100644 --- a/src/char/capiif.c +++ b/src/char/capiif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/char/capiif.h b/src/char/capiif.h index a5a1748f4..4eb5b38fd 100644 --- a/src/char/capiif.h +++ b/src/char/capiif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/char/char.c b/src/char/char.c index 6107b509e..ddd6605da 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/char.h b/src/char/char.h index 325b96484..0f8eacf34 100644 --- a/src/char/char.h +++ b/src/char/char.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/geoip.c b/src/char/geoip.c index be1024ba3..457698591 100644 --- a/src/char/geoip.c +++ b/src/char/geoip.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/geoip.h b/src/char/geoip.h index 86f2f2d12..d3b77cdb5 100644 --- a/src/char/geoip.h +++ b/src/char/geoip.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_achievement.c b/src/char/int_achievement.c index 92eb6db3b..0e26741ba 100644 --- a/src/char/int_achievement.c +++ b/src/char/int_achievement.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2017-2024 Hercules Dev Team +* Copyright (C) 2017-2025 Hercules Dev Team * Copyright (C) Smokexyz * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_achievement.h b/src/char/int_achievement.h index 57d38158f..470667873 100644 --- a/src/char/int_achievement.h +++ b/src/char/int_achievement.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2017-2024 Hercules Dev Team +* Copyright (C) 2017-2025 Hercules Dev Team * Copyright (C) Smokexyz * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_adventurer_agency.c b/src/char/int_adventurer_agency.c index 0f9bc6577..7f31a5044 100644 --- a/src/char/int_adventurer_agency.c +++ b/src/char/int_adventurer_agency.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_adventurer_agency.h b/src/char/int_adventurer_agency.h index 54d82c812..2fe51c1cd 100644 --- a/src/char/int_adventurer_agency.h +++ b/src/char/int_adventurer_agency.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_auction.c b/src/char/int_auction.c index 758a6290d..6a04cdd74 100644 --- a/src/char/int_auction.c +++ b/src/char/int_auction.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_auction.h b/src/char/int_auction.h index a09abe67b..da34b6cbe 100644 --- a/src/char/int_auction.h +++ b/src/char/int_auction.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_clan.c b/src/char/int_clan.c index 65ac4d9d5..292501c4c 100644 --- a/src/char/int_clan.c +++ b/src/char/int_clan.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/char/int_clan.h b/src/char/int_clan.h index ce74b549c..4398ac377 100644 --- a/src/char/int_clan.h +++ b/src/char/int_clan.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/char/int_elemental.c b/src/char/int_elemental.c index d069a3642..0f287627c 100644 --- a/src/char/int_elemental.c +++ b/src/char/int_elemental.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_elemental.h b/src/char/int_elemental.h index daa49a195..612a7f87c 100644 --- a/src/char/int_elemental.h +++ b/src/char/int_elemental.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_guild.c b/src/char/int_guild.c index 7b86750ef..30704e9be 100644 --- a/src/char/int_guild.c +++ b/src/char/int_guild.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_guild.h b/src/char/int_guild.h index adf09f50f..6898001e0 100644 --- a/src/char/int_guild.h +++ b/src/char/int_guild.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_homun.c b/src/char/int_homun.c index 20566f45b..58d3d4c3c 100644 --- a/src/char/int_homun.c +++ b/src/char/int_homun.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_homun.h b/src/char/int_homun.h index 231d0cb04..933822fc0 100644 --- a/src/char/int_homun.h +++ b/src/char/int_homun.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_mail.c b/src/char/int_mail.c index 2bed5d982..77d7b6fb8 100644 --- a/src/char/int_mail.c +++ b/src/char/int_mail.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_mail.h b/src/char/int_mail.h index c7e7b18c1..a8dd4a417 100644 --- a/src/char/int_mail.h +++ b/src/char/int_mail.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_mercenary.c b/src/char/int_mercenary.c index 18c5c1683..4f870627a 100644 --- a/src/char/int_mercenary.c +++ b/src/char/int_mercenary.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_mercenary.h b/src/char/int_mercenary.h index b9e14798f..8a19eabcc 100644 --- a/src/char/int_mercenary.h +++ b/src/char/int_mercenary.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_party.c b/src/char/int_party.c index fab9a1a34..562ed4aad 100644 --- a/src/char/int_party.c +++ b/src/char/int_party.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_party.h b/src/char/int_party.h index 645b9c233..a90ff5ec7 100644 --- a/src/char/int_party.h +++ b/src/char/int_party.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_pet.c b/src/char/int_pet.c index ab943abff..7e16baa2b 100644 --- a/src/char/int_pet.c +++ b/src/char/int_pet.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_pet.h b/src/char/int_pet.h index aff96b39c..0734f2499 100644 --- a/src/char/int_pet.h +++ b/src/char/int_pet.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_quest.c b/src/char/int_quest.c index 92753a06d..83d8cfe44 100644 --- a/src/char/int_quest.c +++ b/src/char/int_quest.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_quest.h b/src/char/int_quest.h index 4ca6877ef..0b0d46394 100644 --- a/src/char/int_quest.h +++ b/src/char/int_quest.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_rodex.c b/src/char/int_rodex.c index d0dae78eb..86684214e 100644 --- a/src/char/int_rodex.c +++ b/src/char/int_rodex.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/char/int_rodex.h b/src/char/int_rodex.h index fdc3e1ef8..75431b171 100644 --- a/src/char/int_rodex.h +++ b/src/char/int_rodex.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/char/int_storage.c b/src/char/int_storage.c index 1a29e8645..8dab9f606 100644 --- a/src/char/int_storage.c +++ b/src/char/int_storage.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_storage.h b/src/char/int_storage.h index 43cc929b4..f23fa5aec 100644 --- a/src/char/int_storage.h +++ b/src/char/int_storage.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_userconfig.c b/src/char/int_userconfig.c index a4e1a022e..c6b293b2f 100644 --- a/src/char/int_userconfig.c +++ b/src/char/int_userconfig.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/int_userconfig.h b/src/char/int_userconfig.h index 9c8ca6a25..c44baca7f 100644 --- a/src/char/int_userconfig.h +++ b/src/char/int_userconfig.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/inter.c b/src/char/inter.c index 6edf7bf30..5753385e4 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/inter.h b/src/char/inter.h index d34b6d376..faefdc81f 100644 --- a/src/char/inter.h +++ b/src/char/inter.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/loginif.c b/src/char/loginif.c index 1f70bb867..bc9c9b97d 100644 --- a/src/char/loginif.c +++ b/src/char/loginif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/loginif.h b/src/char/loginif.h index e82e2572b..81dff66fb 100644 --- a/src/char/loginif.h +++ b/src/char/loginif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/mapif.c b/src/char/mapif.c index e2641587e..a84586d21 100644 --- a/src/char/mapif.c +++ b/src/char/mapif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/mapif.h b/src/char/mapif.h index 25410fc2c..e6b1d248c 100644 --- a/src/char/mapif.h +++ b/src/char/mapif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/char/packets_hc_struct.h b/src/char/packets_hc_struct.h index 3a4fe27c3..de0c8f3ab 100644 --- a/src/char/packets_hc_struct.h +++ b/src/char/packets_hc_struct.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/char/pincode.c b/src/char/pincode.c index 47a6e0037..3239982aa 100644 --- a/src/char/pincode.c +++ b/src/char/pincode.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/char/pincode.h b/src/char/pincode.h index 4399d75d5..4e1cf879f 100644 --- a/src/char/pincode.h +++ b/src/char/pincode.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/HPM.c b/src/common/HPM.c index 4aa80c0ec..bdd186106 100644 --- a/src/common/HPM.c +++ b/src/common/HPM.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/HPM.h b/src/common/HPM.h index 53fca2298..87dc3ede6 100644 --- a/src/common/HPM.h +++ b/src/common/HPM.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/HPMi.h b/src/common/HPMi.h index a44984495..d003aac91 100644 --- a/src/common/HPMi.h +++ b/src/common/HPMi.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/Makefile.in b/src/common/Makefile.in index 136fe456e..d6d475290 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/api.h b/src/common/api.h index f84d20923..ffb106730 100644 --- a/src/common/api.h +++ b/src/common/api.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/apipackets.h b/src/common/apipackets.h index e48bc9f49..ea917059e 100644 --- a/src/common/apipackets.h +++ b/src/common/apipackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/common/atomic.h b/src/common/atomic.h index bdf9fdda0..a1df2f3da 100644 --- a/src/common/atomic.h +++ b/src/common/atomic.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) rAthena Project (www.rathena.org) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/base62.c b/src/common/base62.c index 868791be9..f125ccb47 100644 --- a/src/common/base62.c +++ b/src/common/base62.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2023-2024 Hercules Dev Team + * Copyright (C) 2023-2025 Hercules Dev Team * Copyright (C) 2023 KirieZ * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/base62.h b/src/common/base62.h index 73b4cf25e..b37889622 100644 --- a/src/common/base62.h +++ b/src/common/base62.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2023-2024 Hercules Dev Team + * Copyright (C) 2023-2025 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 diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index 76aec1a7f..9524adc11 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/charloginpackets.h b/src/common/charloginpackets.h index 4e2204784..e3a8ed239 100644 --- a/src/common/charloginpackets.h +++ b/src/common/charloginpackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/charmappackets.h b/src/common/charmappackets.h index 1166bb6d7..c93ee6c78 100644 --- a/src/common/charmappackets.h +++ b/src/common/charmappackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/common/chunked/rfifo.h b/src/common/chunked/rfifo.h index 8ef6bdf08..1d1fd158b 100644 --- a/src/common/chunked/rfifo.h +++ b/src/common/chunked/rfifo.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/chunked/wfifo.h b/src/common/chunked/wfifo.h index f556b3f15..4b2500171 100644 --- a/src/common/chunked/wfifo.h +++ b/src/common/chunked/wfifo.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2020-2024 Hercules Dev Team + * Copyright (C) 2020-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/class.h b/src/common/class.h index 97c3736d7..f76f76b9a 100644 --- a/src/common/class.h +++ b/src/common/class.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/class_hidden.h b/src/common/class_hidden.h index 79583f077..2d7a4d6f6 100644 --- a/src/common/class_hidden.h +++ b/src/common/class_hidden.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/class_special.h b/src/common/class_special.h index 5fff113ad..57de19e94 100644 --- a/src/common/class_special.h +++ b/src/common/class_special.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/conf.c b/src/common/conf.c index b6dd818b3..208ee93d6 100644 --- a/src/common/conf.c +++ b/src/common/conf.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/conf.h b/src/common/conf.h index d36a11e0a..e0d898f34 100644 --- a/src/common/conf.h +++ b/src/common/conf.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/config/defc.h b/src/common/config/defc.h index 634e4aa9b..faa79762a 100644 --- a/src/common/config/defc.h +++ b/src/common/config/defc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/config/defh.h b/src/common/config/defh.h index 042b9f8ae..fee3207cb 100644 --- a/src/common/config/defh.h +++ b/src/common/config/defh.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/config/emblems.h b/src/common/config/emblems.h index cdcb16cd0..3faa8ba04 100644 --- a/src/common/config/emblems.h +++ b/src/common/config/emblems.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/config/undefc.h b/src/common/config/undefc.h index 20d272251..01c9ed670 100644 --- a/src/common/config/undefc.h +++ b/src/common/config/undefc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/config/undefh.h b/src/common/config/undefh.h index 0a106021e..5478bcea5 100644 --- a/src/common/config/undefh.h +++ b/src/common/config/undefh.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/console.c b/src/common/console.c index c56e954e9..f30ef9390 100644 --- a/src/common/console.c +++ b/src/common/console.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify @@ -101,7 +101,7 @@ static void display_title(void) */ static void display_gplnotice(void) { - ShowInfo("Hercules, Copyright (C) 2012-2024, Hercules Dev Team and others.\n"); + ShowInfo("Hercules, Copyright (C) 2012-2025, Hercules Dev Team and others.\n"); ShowInfo("Licensed under the GNU General Public License, version 3 or later.\n"); } diff --git a/src/common/console.h b/src/common/console.h index c2f9f9810..1cd6a4e4c 100644 --- a/src/common/console.h +++ b/src/common/console.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/core.c b/src/common/core.c index dcf3cbf64..d94731b62 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/core.h b/src/common/core.h index b975263dd..2a8ef43ab 100644 --- a/src/common/core.h +++ b/src/common/core.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/db.c b/src/common/db.c index 71754da0f..18a005310 100644 --- a/src/common/db.c +++ b/src/common/db.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/db.h b/src/common/db.h index 932dae873..ee4944f8d 100644 --- a/src/common/db.h +++ b/src/common/db.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/des.c b/src/common/des.c index 8db934f9a..826948d5b 100644 --- a/src/common/des.c +++ b/src/common/des.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/des.h b/src/common/des.h index 2a33196c8..297619083 100644 --- a/src/common/des.h +++ b/src/common/des.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/ers.c b/src/common/ers.c index cd0ad736a..49edb8824 100644 --- a/src/common/ers.c +++ b/src/common/ers.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/ers.h b/src/common/ers.h index 3d1ea18bd..18397a081 100644 --- a/src/common/ers.h +++ b/src/common/ers.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/extraconf.c b/src/common/extraconf.c index 1cf3293c7..8df91716b 100644 --- a/src/common/extraconf.c +++ b/src/common/extraconf.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/extraconf.h b/src/common/extraconf.h index 43ee85c20..6959d17a6 100644 --- a/src/common/extraconf.h +++ b/src/common/extraconf.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/grfio.c b/src/common/grfio.c index 6db8c1d0d..57ea78097 100644 --- a/src/common/grfio.c +++ b/src/common/grfio.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/grfio.h b/src/common/grfio.h index 92d77dd74..d9f97ebb0 100644 --- a/src/common/grfio.h +++ b/src/common/grfio.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/hercules.h b/src/common/hercules.h index 008a1424b..cc025a0b8 100644 --- a/src/common/hercules.h +++ b/src/common/hercules.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2015-2024 Hercules Dev Team + * Copyright (C) 2015-2025 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 diff --git a/src/common/mapcharpackets.h b/src/common/mapcharpackets.h index fe997208e..50de3579f 100644 --- a/src/common/mapcharpackets.h +++ b/src/common/mapcharpackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/common/mapindex.c b/src/common/mapindex.c index 0a604e19d..4cfb9414e 100644 --- a/src/common/mapindex.c +++ b/src/common/mapindex.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/mapindex.h b/src/common/mapindex.h index ad69d8c95..f82294a69 100644 --- a/src/common/mapindex.h +++ b/src/common/mapindex.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/md5calc.c b/src/common/md5calc.c index e4e69e455..c243de754 100644 --- a/src/common/md5calc.c +++ b/src/common/md5calc.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/md5calc.h b/src/common/md5calc.h index 027ea9097..914ebc70c 100644 --- a/src/common/md5calc.h +++ b/src/common/md5calc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/memmgr.c b/src/common/memmgr.c index 127970a17..d26a1990d 100644 --- a/src/common/memmgr.c +++ b/src/common/memmgr.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/memmgr.h b/src/common/memmgr.h index 91a94a516..70e168e17 100644 --- a/src/common/memmgr.h +++ b/src/common/memmgr.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/memmgr_inc.h b/src/common/memmgr_inc.h index cf5c048df..1d7655eb8 100644 --- a/src/common/memmgr_inc.h +++ b/src/common/memmgr_inc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/mmo.h b/src/common/mmo.h index 1a2c3b31c..2c7e454b5 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/mutex.c b/src/common/mutex.c index 412fdc314..5e297b9e6 100644 --- a/src/common/mutex.c +++ b/src/common/mutex.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) rAthena Project (www.rathena.org) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/mutex.h b/src/common/mutex.h index 306df33a5..228698ebe 100644 --- a/src/common/mutex.h +++ b/src/common/mutex.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) rAthena Project (www.rathena.org) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/nullpo.c b/src/common/nullpo.c index e8442ea48..82c614cf6 100644 --- a/src/common/nullpo.c +++ b/src/common/nullpo.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2011-2024 Hercules Dev Team + * Copyright (C) 2011-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/nullpo.h b/src/common/nullpo.h index 60ebce4f8..966c8972b 100644 --- a/src/common/nullpo.h +++ b/src/common/nullpo.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets.c b/src/common/packets.c index b65a218ac..1b6c87df4 100644 --- a/src/common/packets.c +++ b/src/common/packets.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/packets.h b/src/common/packets.h index a4dea570a..a7ec1195e 100644 --- a/src/common/packets.h +++ b/src/common/packets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/packets/packets2003_len_main.h b/src/common/packets/packets2003_len_main.h index dbd3e8bc2..0da7306af 100644 --- a/src/common/packets/packets2003_len_main.h +++ b/src/common/packets/packets2003_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2003_len_sak.h b/src/common/packets/packets2003_len_sak.h index dbe14253a..e1fabe8f2 100644 --- a/src/common/packets/packets2003_len_sak.h +++ b/src/common/packets/packets2003_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2004_len_ad.h b/src/common/packets/packets2004_len_ad.h index bd501b2b1..1c522a062 100644 --- a/src/common/packets/packets2004_len_ad.h +++ b/src/common/packets/packets2004_len_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2004_len_main.h b/src/common/packets/packets2004_len_main.h index 1e7b2b497..a3671dcdf 100644 --- a/src/common/packets/packets2004_len_main.h +++ b/src/common/packets/packets2004_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2004_len_sak.h b/src/common/packets/packets2004_len_sak.h index a1e967e36..4b12cfb40 100644 --- a/src/common/packets/packets2004_len_sak.h +++ b/src/common/packets/packets2004_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2005_len_ad.h b/src/common/packets/packets2005_len_ad.h index 2e5ba6587..b6ca6fa44 100644 --- a/src/common/packets/packets2005_len_ad.h +++ b/src/common/packets/packets2005_len_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2005_len_main.h b/src/common/packets/packets2005_len_main.h index 6c8ea8032..68cf782ad 100644 --- a/src/common/packets/packets2005_len_main.h +++ b/src/common/packets/packets2005_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2005_len_sak.h b/src/common/packets/packets2005_len_sak.h index 2864936d4..f96d91785 100644 --- a/src/common/packets/packets2005_len_sak.h +++ b/src/common/packets/packets2005_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2006_len_ad.h b/src/common/packets/packets2006_len_ad.h index 5e1f9d60b..954b31f39 100644 --- a/src/common/packets/packets2006_len_ad.h +++ b/src/common/packets/packets2006_len_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2006_len_main.h b/src/common/packets/packets2006_len_main.h index 0b79b9164..1656e2939 100644 --- a/src/common/packets/packets2006_len_main.h +++ b/src/common/packets/packets2006_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2006_len_sak.h b/src/common/packets/packets2006_len_sak.h index d1a823ca0..4e0f2e403 100644 --- a/src/common/packets/packets2006_len_sak.h +++ b/src/common/packets/packets2006_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2007_len_ad.h b/src/common/packets/packets2007_len_ad.h index 221e0bf2d..f08fb5ef0 100644 --- a/src/common/packets/packets2007_len_ad.h +++ b/src/common/packets/packets2007_len_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2007_len_main.h b/src/common/packets/packets2007_len_main.h index fc6144bbe..b97a4b37e 100644 --- a/src/common/packets/packets2007_len_main.h +++ b/src/common/packets/packets2007_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2007_len_sak.h b/src/common/packets/packets2007_len_sak.h index 3a8eabf86..4b1baf628 100644 --- a/src/common/packets/packets2007_len_sak.h +++ b/src/common/packets/packets2007_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2008_len_ad.h b/src/common/packets/packets2008_len_ad.h index 26945e877..f0dba9168 100644 --- a/src/common/packets/packets2008_len_ad.h +++ b/src/common/packets/packets2008_len_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2008_len_main.h b/src/common/packets/packets2008_len_main.h index de19f3ad2..e99b21f77 100644 --- a/src/common/packets/packets2008_len_main.h +++ b/src/common/packets/packets2008_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2008_len_re.h b/src/common/packets/packets2008_len_re.h index 6b31330c4..eddcfdd43 100644 --- a/src/common/packets/packets2008_len_re.h +++ b/src/common/packets/packets2008_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2008_len_sak.h b/src/common/packets/packets2008_len_sak.h index 3df78cf49..49ace5e29 100644 --- a/src/common/packets/packets2008_len_sak.h +++ b/src/common/packets/packets2008_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2009_len_main.h b/src/common/packets/packets2009_len_main.h index 155a5885f..f5d60c7ad 100644 --- a/src/common/packets/packets2009_len_main.h +++ b/src/common/packets/packets2009_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2009_len_re.h b/src/common/packets/packets2009_len_re.h index 53229d063..da6edf726 100644 --- a/src/common/packets/packets2009_len_re.h +++ b/src/common/packets/packets2009_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2009_len_sak.h b/src/common/packets/packets2009_len_sak.h index 98d081966..0ab4843e1 100644 --- a/src/common/packets/packets2009_len_sak.h +++ b/src/common/packets/packets2009_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2010_len_main.h b/src/common/packets/packets2010_len_main.h index 0bd6b06ce..2ae7a6699 100644 --- a/src/common/packets/packets2010_len_main.h +++ b/src/common/packets/packets2010_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2010_len_re.h b/src/common/packets/packets2010_len_re.h index 758ca9e27..365a81d1b 100644 --- a/src/common/packets/packets2010_len_re.h +++ b/src/common/packets/packets2010_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2011_len_main.h b/src/common/packets/packets2011_len_main.h index de385ab55..f0f27503d 100644 --- a/src/common/packets/packets2011_len_main.h +++ b/src/common/packets/packets2011_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2011_len_re.h b/src/common/packets/packets2011_len_re.h index 4713e4f76..bb26a6139 100644 --- a/src/common/packets/packets2011_len_re.h +++ b/src/common/packets/packets2011_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2012_len_main.h b/src/common/packets/packets2012_len_main.h index c14dd28f0..43bad09a6 100644 --- a/src/common/packets/packets2012_len_main.h +++ b/src/common/packets/packets2012_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2012_len_re.h b/src/common/packets/packets2012_len_re.h index 242e10907..d7a57e297 100644 --- a/src/common/packets/packets2012_len_re.h +++ b/src/common/packets/packets2012_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2013_len_main.h b/src/common/packets/packets2013_len_main.h index 26a9458a6..19e90272b 100644 --- a/src/common/packets/packets2013_len_main.h +++ b/src/common/packets/packets2013_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2013_len_re.h b/src/common/packets/packets2013_len_re.h index 11bd3e5ba..b0968bca7 100644 --- a/src/common/packets/packets2013_len_re.h +++ b/src/common/packets/packets2013_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2014_len_main.h b/src/common/packets/packets2014_len_main.h index f904a4f74..368f0a46d 100644 --- a/src/common/packets/packets2014_len_main.h +++ b/src/common/packets/packets2014_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2014_len_re.h b/src/common/packets/packets2014_len_re.h index 6258662f5..8ac556819 100644 --- a/src/common/packets/packets2014_len_re.h +++ b/src/common/packets/packets2014_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2015_len_main.h b/src/common/packets/packets2015_len_main.h index 13273268c..df6a3e420 100644 --- a/src/common/packets/packets2015_len_main.h +++ b/src/common/packets/packets2015_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2015_len_re.h b/src/common/packets/packets2015_len_re.h index 1b663060e..3ff979c23 100644 --- a/src/common/packets/packets2015_len_re.h +++ b/src/common/packets/packets2015_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2016_len_main.h b/src/common/packets/packets2016_len_main.h index 7794ad1af..98d7d9324 100644 --- a/src/common/packets/packets2016_len_main.h +++ b/src/common/packets/packets2016_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2016_len_re.h b/src/common/packets/packets2016_len_re.h index 854c07072..823712b47 100644 --- a/src/common/packets/packets2016_len_re.h +++ b/src/common/packets/packets2016_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2017_len_main.h b/src/common/packets/packets2017_len_main.h index 6f192a94d..a76a3181a 100644 --- a/src/common/packets/packets2017_len_main.h +++ b/src/common/packets/packets2017_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2017_len_re.h b/src/common/packets/packets2017_len_re.h index 6014703e8..d9484af3c 100644 --- a/src/common/packets/packets2017_len_re.h +++ b/src/common/packets/packets2017_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2017_len_zero.h b/src/common/packets/packets2017_len_zero.h index b3de03794..cb01e0566 100644 --- a/src/common/packets/packets2017_len_zero.h +++ b/src/common/packets/packets2017_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2018_len_main.h b/src/common/packets/packets2018_len_main.h index ea4fb26fb..037e62259 100644 --- a/src/common/packets/packets2018_len_main.h +++ b/src/common/packets/packets2018_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2018_len_re.h b/src/common/packets/packets2018_len_re.h index 22b8e53f0..2d2b708e4 100644 --- a/src/common/packets/packets2018_len_re.h +++ b/src/common/packets/packets2018_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2018_len_zero.h b/src/common/packets/packets2018_len_zero.h index f3d18ec60..a84e6e173 100644 --- a/src/common/packets/packets2018_len_zero.h +++ b/src/common/packets/packets2018_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2019_len_main.h b/src/common/packets/packets2019_len_main.h index 48e0b45c0..9ede5dfdb 100644 --- a/src/common/packets/packets2019_len_main.h +++ b/src/common/packets/packets2019_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2019_len_re.h b/src/common/packets/packets2019_len_re.h index 3e59f2a3f..0db0047b7 100644 --- a/src/common/packets/packets2019_len_re.h +++ b/src/common/packets/packets2019_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2019_len_zero.h b/src/common/packets/packets2019_len_zero.h index d3577dd15..e43a9e05a 100644 --- a/src/common/packets/packets2019_len_zero.h +++ b/src/common/packets/packets2019_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2020_len_main.h b/src/common/packets/packets2020_len_main.h index 9926cd185..cbd9f8ab3 100644 --- a/src/common/packets/packets2020_len_main.h +++ b/src/common/packets/packets2020_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2020_len_re.h b/src/common/packets/packets2020_len_re.h index 65dd9ac26..1c908ba5c 100644 --- a/src/common/packets/packets2020_len_re.h +++ b/src/common/packets/packets2020_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2020_len_zero.h b/src/common/packets/packets2020_len_zero.h index 6755c670b..3d9795fbc 100644 --- a/src/common/packets/packets2020_len_zero.h +++ b/src/common/packets/packets2020_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2021_len_main.h b/src/common/packets/packets2021_len_main.h index 925eed138..f774b20f6 100644 --- a/src/common/packets/packets2021_len_main.h +++ b/src/common/packets/packets2021_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2021_len_re.h b/src/common/packets/packets2021_len_re.h index 9ab3aec2a..67bc825d4 100644 --- a/src/common/packets/packets2021_len_re.h +++ b/src/common/packets/packets2021_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2021_len_zero.h b/src/common/packets/packets2021_len_zero.h index 5d2f8b5c5..1c4c46970 100644 --- a/src/common/packets/packets2021_len_zero.h +++ b/src/common/packets/packets2021_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2022_len_main.h b/src/common/packets/packets2022_len_main.h index 85d723710..adaedc22d 100644 --- a/src/common/packets/packets2022_len_main.h +++ b/src/common/packets/packets2022_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets2022_len_zero.h b/src/common/packets/packets2022_len_zero.h index f95896a69..62fd44967 100644 --- a/src/common/packets/packets2022_len_zero.h +++ b/src/common/packets/packets2022_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets_len_ad.h b/src/common/packets/packets_len_ad.h index a41cce63c..9e735d737 100644 --- a/src/common/packets/packets_len_ad.h +++ b/src/common/packets/packets_len_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2019-2024 Hercules Dev Team + * Copyright (C) 2019-2025 Hercules Dev Team * Copyright (C) 2019-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets_len_main.h b/src/common/packets/packets_len_main.h index 38144179a..49c66ce47 100644 --- a/src/common/packets/packets_len_main.h +++ b/src/common/packets/packets_len_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets_len_re.h b/src/common/packets/packets_len_re.h index 1d9d103f5..58d01325d 100644 --- a/src/common/packets/packets_len_re.h +++ b/src/common/packets/packets_len_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets_len_sak.h b/src/common/packets/packets_len_sak.h index b762717f1..1c9da1317 100644 --- a/src/common/packets/packets_len_sak.h +++ b/src/common/packets/packets_len_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2019-2024 Hercules Dev Team + * Copyright (C) 2019-2025 Hercules Dev Team * Copyright (C) 2019-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets/packets_len_zero.h b/src/common/packets/packets_len_zero.h index af1f66de3..9f697bc8c 100644 --- a/src/common/packets/packets_len_zero.h +++ b/src/common/packets/packets_len_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/packets_chrif_len.h b/src/common/packets_chrif_len.h index 3521e0123..bcea38e49 100644 --- a/src/common/packets_chrif_len.h +++ b/src/common/packets_chrif_len.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/packets_inter_len.h b/src/common/packets_inter_len.h index a0ead825e..a7e5ffc16 100644 --- a/src/common/packets_inter_len.h +++ b/src/common/packets_inter_len.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/packets_intif_len.h b/src/common/packets_intif_len.h index 352e96b3a..03469d15d 100644 --- a/src/common/packets_intif_len.h +++ b/src/common/packets_intif_len.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/packets_len.h b/src/common/packets_len.h index f99b39e87..926253309 100644 --- a/src/common/packets_len.h +++ b/src/common/packets_len.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/common/packets_struct.h b/src/common/packets_struct.h index 9edc74b42..1649d9d92 100644 --- a/src/common/packets_struct.h +++ b/src/common/packets_struct.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2022-2024 Hercules Dev Team + * Copyright (C) 2022-2025 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 diff --git a/src/common/packetsmacro.h b/src/common/packetsmacro.h index caf1b98cd..3ecebfbc8 100644 --- a/src/common/packetsmacro.h +++ b/src/common/packetsmacro.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/packetsstatic_len.h b/src/common/packetsstatic_len.h index 852c82f85..ce9a26016 100644 --- a/src/common/packetsstatic_len.h +++ b/src/common/packetsstatic_len.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/common/random.c b/src/common/random.c index 89ba06df6..2e24f3373 100644 --- a/src/common/random.c +++ b/src/common/random.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/random.h b/src/common/random.h index 38fbf8cfb..cadcb0d39 100644 --- a/src/common/random.h +++ b/src/common/random.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/showmsg.c b/src/common/showmsg.c index 66da63a6a..9bf1c7c97 100644 --- a/src/common/showmsg.c +++ b/src/common/showmsg.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/showmsg.h b/src/common/showmsg.h index 8ca5a0f72..8d57441b6 100644 --- a/src/common/showmsg.h +++ b/src/common/showmsg.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/socket.c b/src/common/socket.c index cfd3a30e2..818aef51c 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/socket.h b/src/common/socket.h index 4f0a2e666..e5a46f9c8 100644 --- a/src/common/socket.h +++ b/src/common/socket.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/spinlock.h b/src/common/spinlock.h index 240c761a3..1dfd3e35c 100644 --- a/src/common/spinlock.h +++ b/src/common/spinlock.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) rAthena Project (www.rathena.org) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/sql.c b/src/common/sql.c index 64ea4b18a..5aad11881 100644 --- a/src/common/sql.c +++ b/src/common/sql.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/sql.h b/src/common/sql.h index 6a8be2812..74a3e9b74 100644 --- a/src/common/sql.h +++ b/src/common/sql.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/strlib.c b/src/common/strlib.c index e5ad73132..57c133a45 100644 --- a/src/common/strlib.c +++ b/src/common/strlib.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/strlib.h b/src/common/strlib.h index 9038ae036..a0ad5b82d 100644 --- a/src/common/strlib.h +++ b/src/common/strlib.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/sysinfo.c b/src/common/sysinfo.c index 70d49b36a..3dd4b6f5b 100644 --- a/src/common/sysinfo.c +++ b/src/common/sysinfo.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/sysinfo.h b/src/common/sysinfo.h index 69dc2086d..bd0aec976 100644 --- a/src/common/sysinfo.h +++ b/src/common/sysinfo.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/thread.c b/src/common/thread.c index 53d018d0f..dd5ecd0c3 100644 --- a/src/common/thread.c +++ b/src/common/thread.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) rAthena Project (www.rathena.org) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/thread.h b/src/common/thread.h index 489f18e5d..1439f0a7c 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) rAthena Project (www.rathena.org) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/timer.c b/src/common/timer.c index 17e27d2fa..52cfe388f 100644 --- a/src/common/timer.c +++ b/src/common/timer.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/timer.h b/src/common/timer.h index 44efbe3af..588160b19 100644 --- a/src/common/timer.h +++ b/src/common/timer.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/utils.c b/src/common/utils.c index 1a5c5a7a6..9cc13c255 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/utils.h b/src/common/utils.h index 7bfdaf73c..0e2fd1112 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/common/winapi.h b/src/common/winapi.h index 5f0d05e51..02394f81e 100644 --- a/src/common/winapi.h +++ b/src/common/winapi.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/config/classes/general.h b/src/config/classes/general.h index f76fb958a..f02de24f7 100644 --- a/src/config/classes/general.h +++ b/src/config/classes/general.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/config/const.h b/src/config/const.h index e3ca8269b..4028826d2 100644 --- a/src/config/const.h +++ b/src/config/const.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/config/core.h b/src/config/core.h index 3adc57a90..f652116b3 100644 --- a/src/config/core.h +++ b/src/config/core.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/config/renewal.h b/src/config/renewal.h index 0b7922657..bc0f7e855 100644 --- a/src/config/renewal.h +++ b/src/config/renewal.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/config/secure.h b/src/config/secure.h index 0e2cd1f0c..0d9750fdc 100644 --- a/src/config/secure.h +++ b/src/config/secure.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/HPMlogin.c b/src/login/HPMlogin.c index c1b87fa24..f5ef7b77a 100644 --- a/src/login/HPMlogin.c +++ b/src/login/HPMlogin.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2014-2024 Hercules Dev Team + * Copyright (C) 2014-2025 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 diff --git a/src/login/HPMlogin.h b/src/login/HPMlogin.h index c4add85ae..85f10d02f 100644 --- a/src/login/HPMlogin.h +++ b/src/login/HPMlogin.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2014-2024 Hercules Dev Team + * Copyright (C) 2014-2025 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 diff --git a/src/login/Makefile.in b/src/login/Makefile.in index fa1747509..658f28536 100644 --- a/src/login/Makefile.in +++ b/src/login/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/account.c b/src/login/account.c index f068b3150..48fe8bc80 100644 --- a/src/login/account.c +++ b/src/login/account.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/account.h b/src/login/account.h index fdda173b0..c262eaf3a 100644 --- a/src/login/account.h +++ b/src/login/account.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/apipackets.h b/src/login/apipackets.h index a813e2c01..9a893c115 100644 --- a/src/login/apipackets.h +++ b/src/login/apipackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/ipban.c b/src/login/ipban.c index 85e384cd4..ea5de3be3 100644 --- a/src/login/ipban.c +++ b/src/login/ipban.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/ipban.h b/src/login/ipban.h index 6be8deb8b..9cd585cd9 100644 --- a/src/login/ipban.h +++ b/src/login/ipban.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/lapiif.c b/src/login/lapiif.c index 0ed182978..b3bc7acec 100644 --- a/src/login/lapiif.c +++ b/src/login/lapiif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/login/lapiif.h b/src/login/lapiif.h index 4dc9d22cb..7a0a17b9e 100644 --- a/src/login/lapiif.h +++ b/src/login/lapiif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/login/lclif.c b/src/login/lclif.c index 64db761de..b0375b974 100644 --- a/src/login/lclif.c +++ b/src/login/lclif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/login/lclif.h b/src/login/lclif.h index a2fe72be2..ce0d80282 100644 --- a/src/login/lclif.h +++ b/src/login/lclif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/login/lclif.p.h b/src/login/lclif.p.h index ddc3992c1..456cd59b2 100644 --- a/src/login/lclif.p.h +++ b/src/login/lclif.p.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/login/login.c b/src/login/login.c index 206d01b07..0666abe62 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/login.h b/src/login/login.h index 2a0d67dce..73e243c45 100644 --- a/src/login/login.h +++ b/src/login/login.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/loginlog.c b/src/login/loginlog.c index 121cbabd4..832c146b6 100644 --- a/src/login/loginlog.c +++ b/src/login/loginlog.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/loginlog.h b/src/login/loginlog.h index ebaa7708c..06998f5c0 100644 --- a/src/login/loginlog.h +++ b/src/login/loginlog.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/login/packets_ac_struct.h b/src/login/packets_ac_struct.h index c6dc5a6d6..fb8688e52 100644 --- a/src/login/packets_ac_struct.h +++ b/src/login/packets_ac_struct.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/login/packets_ca_struct.h b/src/login/packets_ca_struct.h index 14c209cb6..46efc1c5c 100644 --- a/src/login/packets_ca_struct.h +++ b/src/login/packets_ca_struct.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/map/HPMmap.c b/src/map/HPMmap.c index e8a219257..43e265394 100644 --- a/src/map/HPMmap.c +++ b/src/map/HPMmap.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/HPMmap.h b/src/map/HPMmap.h index fca38250c..bc1aaa5b3 100644 --- a/src/map/HPMmap.h +++ b/src/map/HPMmap.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/Makefile.in b/src/map/Makefile.in index c83990d84..116c70a35 100644 --- a/src/map/Makefile.in +++ b/src/map/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/achievement.c b/src/map/achievement.c index 950efcff2..9653ea33d 100644 --- a/src/map/achievement.c +++ b/src/map/achievement.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2017-2024 Hercules Dev Team +* Copyright (C) 2017-2025 Hercules Dev Team * Copyright (C) Smokexyz * Copyright (C) Dastgir * diff --git a/src/map/achievement.h b/src/map/achievement.h index e5df613a5..6d5a9ac51 100644 --- a/src/map/achievement.h +++ b/src/map/achievement.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2018-2024 Hercules Dev Team +* Copyright (C) 2018-2025 Hercules Dev Team * Copyright (C) Smokexyz * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/apipackets.h b/src/map/apipackets.h index 5144bf18d..7d3842db7 100644 --- a/src/map/apipackets.h +++ b/src/map/apipackets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 9eca9a093..8ab41e8ec 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/atcommand.h b/src/map/atcommand.h index 6b4b7370b..faf5019e4 100644 --- a/src/map/atcommand.h +++ b/src/map/atcommand.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/battle.c b/src/map/battle.c index 38da0f50a..0488da2b4 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/battle.h b/src/map/battle.h index 647303f76..cb92b9b8b 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/battleground.c b/src/map/battleground.c index e68888c63..a7ace3d0c 100644 --- a/src/map/battleground.c +++ b/src/map/battleground.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/battleground.h b/src/map/battleground.h index 3dd58d1c5..26f989505 100644 --- a/src/map/battleground.h +++ b/src/map/battleground.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/buyingstore.c b/src/map/buyingstore.c index b86e5a334..c8c566b1e 100644 --- a/src/map/buyingstore.c +++ b/src/map/buyingstore.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/buyingstore.h b/src/map/buyingstore.h index 556980710..766cce005 100644 --- a/src/map/buyingstore.h +++ b/src/map/buyingstore.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/channel.c b/src/map/channel.c index bc44fb9f6..8ab170918 100644 --- a/src/map/channel.c +++ b/src/map/channel.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/channel.h b/src/map/channel.h index ed512aee8..90b2a7790 100644 --- a/src/map/channel.h +++ b/src/map/channel.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/chat.c b/src/map/chat.c index 1a3a270cd..6bf6338c6 100644 --- a/src/map/chat.c +++ b/src/map/chat.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/chat.h b/src/map/chat.h index 3896e2fc8..ffc06c1d5 100644 --- a/src/map/chat.h +++ b/src/map/chat.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/chrif.c b/src/map/chrif.c index d0f576b61..d77402a8d 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/chrif.h b/src/map/chrif.h index 44631798c..2b4bb09a4 100644 --- a/src/map/chrif.h +++ b/src/map/chrif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/clan.c b/src/map/clan.c index 7479a0cf2..27db42b59 100644 --- a/src/map/clan.c +++ b/src/map/clan.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/map/clan.h b/src/map/clan.h index ed41f96d5..720d12d16 100644 --- a/src/map/clan.h +++ b/src/map/clan.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/map/clif.c b/src/map/clif.c index abb8ca3da..605346866 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/clif.h b/src/map/clif.h index 5637b576c..122f73ec9 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/date.c b/src/map/date.c index 1ffdfc26b..791001350 100644 --- a/src/map/date.c +++ b/src/map/date.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/date.h b/src/map/date.h index 96a7a64be..6361b59ff 100644 --- a/src/map/date.h +++ b/src/map/date.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/duel.c b/src/map/duel.c index 4bcef1cea..7b9f935a9 100644 --- a/src/map/duel.c +++ b/src/map/duel.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/duel.h b/src/map/duel.h index b500289cd..89c7d21b1 100644 --- a/src/map/duel.h +++ b/src/map/duel.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/elemental.c b/src/map/elemental.c index 582ecabbe..d9accfcdf 100644 --- a/src/map/elemental.c +++ b/src/map/elemental.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/elemental.h b/src/map/elemental.h index 9b24a8293..8f5038e2c 100644 --- a/src/map/elemental.h +++ b/src/map/elemental.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/enchantui.c b/src/map/enchantui.c index ecdd2832d..cb276d37a 100644 --- a/src/map/enchantui.c +++ b/src/map/enchantui.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2021-2024 Hercules Dev Team + * Copyright (C) 2021-2025 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 diff --git a/src/map/enchantui.h b/src/map/enchantui.h index bcb1abde7..3bb12ee94 100644 --- a/src/map/enchantui.h +++ b/src/map/enchantui.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2021-2024 Hercules Dev Team + * Copyright (C) 2021-2025 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 diff --git a/src/map/goldpc.c b/src/map/goldpc.c index 67d101236..57fb2ef5e 100644 --- a/src/map/goldpc.c +++ b/src/map/goldpc.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2023-2024 Hercules Dev Team + * Copyright (C) 2023-2025 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 diff --git a/src/map/goldpc.h b/src/map/goldpc.h index 90bfbe91f..1b542acc3 100644 --- a/src/map/goldpc.h +++ b/src/map/goldpc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2023-2024 Hercules Dev Team + * Copyright (C) 2023-2025 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 diff --git a/src/map/grader.c b/src/map/grader.c index 2107c63c4..1b91b7ecd 100644 --- a/src/map/grader.c +++ b/src/map/grader.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2021-2024 Hercules Dev Team + * Copyright (C) 2021-2025 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 diff --git a/src/map/grader.h b/src/map/grader.h index 770d12ead..b2ff3da52 100644 --- a/src/map/grader.h +++ b/src/map/grader.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2021-2024 Hercules Dev Team + * Copyright (C) 2021-2025 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 diff --git a/src/map/guild.c b/src/map/guild.c index 3bb81384f..a34f67021 100644 --- a/src/map/guild.c +++ b/src/map/guild.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/guild.h b/src/map/guild.h index ebe1c1e36..8633253e3 100644 --- a/src/map/guild.h +++ b/src/map/guild.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/homunculus.c b/src/map/homunculus.c index c0fb79645..f9c8b066e 100644 --- a/src/map/homunculus.c +++ b/src/map/homunculus.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/homunculus.h b/src/map/homunculus.h index 96c88fb82..d8ab06f97 100644 --- a/src/map/homunculus.h +++ b/src/map/homunculus.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/instance.c b/src/map/instance.c index d76f57e03..d88afbf2a 100644 --- a/src/map/instance.c +++ b/src/map/instance.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/instance.h b/src/map/instance.h index 9365b64a6..59b07b590 100644 --- a/src/map/instance.h +++ b/src/map/instance.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/intif.c b/src/map/intif.c index ee78f33d2..eff847548 100644 --- a/src/map/intif.c +++ b/src/map/intif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/intif.h b/src/map/intif.h index 17531f0b5..08a23c8d8 100644 --- a/src/map/intif.h +++ b/src/map/intif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/irc-bot.c b/src/map/irc-bot.c index dda85ef2f..8a10b294f 100644 --- a/src/map/irc-bot.c +++ b/src/map/irc-bot.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/irc-bot.h b/src/map/irc-bot.h index 25d9d331c..a405df542 100644 --- a/src/map/irc-bot.h +++ b/src/map/irc-bot.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/itemdb.c b/src/map/itemdb.c index 364030d7e..d8793e612 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/itemdb.h b/src/map/itemdb.h index 725886d0b..6b1108641 100644 --- a/src/map/itemdb.h +++ b/src/map/itemdb.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/log.c b/src/map/log.c index 69c7760ae..8bf6d0a58 100644 --- a/src/map/log.c +++ b/src/map/log.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/log.h b/src/map/log.h index 684974bc2..24b441370 100644 --- a/src/map/log.h +++ b/src/map/log.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/macro.c b/src/map/macro.c index d12078a6a..731f8925c 100644 --- a/src/map/macro.c +++ b/src/map/macro.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2021-2024 Hercules Dev Team + * Copyright (C) 2021-2025 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 diff --git a/src/map/macro.h b/src/map/macro.h index 01a03d8d3..8b62a219a 100644 --- a/src/map/macro.h +++ b/src/map/macro.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2021-2024 Hercules Dev Team + * Copyright (C) 2021-2025 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 diff --git a/src/map/mail.c b/src/map/mail.c index 4be26fad3..a63dccbfd 100644 --- a/src/map/mail.c +++ b/src/map/mail.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mail.h b/src/map/mail.h index 9f213442c..5c9139a1d 100644 --- a/src/map/mail.h +++ b/src/map/mail.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/map.c b/src/map/map.c index d181fe563..2a0a2a7e4 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/map.h b/src/map/map.h index e2814f75c..a4312b1c5 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mapdefines.h b/src/map/mapdefines.h index 2e783e07d..94019a23c 100644 --- a/src/map/mapdefines.h +++ b/src/map/mapdefines.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mapiif.c b/src/map/mapiif.c index 869ddafc3..e232b05c1 100644 --- a/src/map/mapiif.c +++ b/src/map/mapiif.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/map/mapiif.h b/src/map/mapiif.h index 19a0c1393..851943c60 100644 --- a/src/map/mapiif.h +++ b/src/map/mapiif.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * Copyright (C) Athena Dev Teams * diff --git a/src/map/mapreg.h b/src/map/mapreg.h index eb8504a79..6ee8da749 100644 --- a/src/map/mapreg.h +++ b/src/map/mapreg.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mapreg_sql.c b/src/map/mapreg_sql.c index 8e0badda6..85f106a2f 100644 --- a/src/map/mapreg_sql.c +++ b/src/map/mapreg_sql.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mercenary.c b/src/map/mercenary.c index 8032dca3a..ad49909f5 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mercenary.h b/src/map/mercenary.h index d48ebc2bd..67aa81a3a 100644 --- a/src/map/mercenary.h +++ b/src/map/mercenary.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/messages.h b/src/map/messages.h index 133a75603..00f2bb6de 100644 --- a/src/map/messages.h +++ b/src/map/messages.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/messages_ad.h b/src/map/messages_ad.h index 67b09274d..7becd2ade 100644 --- a/src/map/messages_ad.h +++ b/src/map/messages_ad.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/messages_main.h b/src/map/messages_main.h index 04314f785..1014b7a77 100644 --- a/src/map/messages_main.h +++ b/src/map/messages_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/messages_re.h b/src/map/messages_re.h index 78b292401..9a56fdbac 100644 --- a/src/map/messages_re.h +++ b/src/map/messages_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/messages_sak.h b/src/map/messages_sak.h index 774dad11f..37cf9949a 100644 --- a/src/map/messages_sak.h +++ b/src/map/messages_sak.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2020 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/messages_zero.h b/src/map/messages_zero.h index cf9818b3a..ec7a6e479 100644 --- a/src/map/messages_zero.h +++ b/src/map/messages_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mob.c b/src/map/mob.c index 8c53a5bee..0106d0673 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/mob.h b/src/map/mob.h index a259ea4b9..73ff850af 100644 --- a/src/map/mob.h +++ b/src/map/mob.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/npc.c b/src/map/npc.c index 0ea39b855..d7cd06b14 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/npc.h b/src/map/npc.h index 0307a07e5..228357425 100644 --- a/src/map/npc.h +++ b/src/map/npc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/npc_chat.c b/src/map/npc_chat.c index 60e711328..f17ac68a7 100644 --- a/src/map/npc_chat.c +++ b/src/map/npc_chat.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/packets.h b/src/map/packets.h index c2f2c21b2..292636375 100644 --- a/src/map/packets.h +++ b/src/map/packets.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/packets_keys_main.h b/src/map/packets_keys_main.h index 8d53c9c71..de276289d 100644 --- a/src/map/packets_keys_main.h +++ b/src/map/packets_keys_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/packets_keys_zero.h b/src/map/packets_keys_zero.h index 8ea5f308a..32a0286f5 100644 --- a/src/map/packets_keys_zero.h +++ b/src/map/packets_keys_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/packets_shuffle_main.h b/src/map/packets_shuffle_main.h index a8afcf1f3..18fd232e3 100644 --- a/src/map/packets_shuffle_main.h +++ b/src/map/packets_shuffle_main.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/packets_shuffle_re.h b/src/map/packets_shuffle_re.h index e82c483b9..e9eb42b5e 100644 --- a/src/map/packets_shuffle_re.h +++ b/src/map/packets_shuffle_re.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/packets_shuffle_zero.h b/src/map/packets_shuffle_zero.h index 7f33b4f27..d1b795809 100644 --- a/src/map/packets_shuffle_zero.h +++ b/src/map/packets_shuffle_zero.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2018-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index ddaaa7cb0..7e4105793 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/map/party.c b/src/map/party.c index 90cdd90b6..12ff2e046 100644 --- a/src/map/party.c +++ b/src/map/party.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/party.h b/src/map/party.h index a6ba4e909..33a5f558d 100644 --- a/src/map/party.h +++ b/src/map/party.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/path.c b/src/map/path.c index daf86f5e5..eb46494ed 100644 --- a/src/map/path.c +++ b/src/map/path.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/path.h b/src/map/path.h index 713b7776d..d9c356709 100644 --- a/src/map/path.h +++ b/src/map/path.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/pc.c b/src/map/pc.c index 2decb491b..12d2444e7 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/pc.h b/src/map/pc.h index 6b8b32bf7..657dbf47a 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/pc_groups.c b/src/map/pc_groups.c index 597f1a333..b70c10d3b 100644 --- a/src/map/pc_groups.c +++ b/src/map/pc_groups.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/pc_groups.h b/src/map/pc_groups.h index ac075ef47..8ac3103a9 100644 --- a/src/map/pc_groups.h +++ b/src/map/pc_groups.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/pet.c b/src/map/pet.c index 8d53fa8cd..5f5af820a 100644 --- a/src/map/pet.c +++ b/src/map/pet.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/pet.h b/src/map/pet.h index 1ce08af2f..e85f2a656 100644 --- a/src/map/pet.h +++ b/src/map/pet.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/quest.c b/src/map/quest.c index d63ec945c..94ae73fc1 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/quest.h b/src/map/quest.h index 60d57b377..9452fa08b 100644 --- a/src/map/quest.h +++ b/src/map/quest.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/refine.c b/src/map/refine.c index 63c77525e..8dacae0cc 100644 --- a/src/map/refine.c +++ b/src/map/refine.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2019-2024 Hercules Dev Team +* Copyright (C) 2019-2025 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 diff --git a/src/map/refine.h b/src/map/refine.h index f6b78a456..ce95c3f11 100644 --- a/src/map/refine.h +++ b/src/map/refine.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2019-2024 Hercules Dev Team +* Copyright (C) 2019-2025 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 diff --git a/src/map/refine.p.h b/src/map/refine.p.h index f666fd7e9..c758378a3 100644 --- a/src/map/refine.p.h +++ b/src/map/refine.p.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2019-2024 Hercules Dev Team +* Copyright (C) 2019-2025 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 diff --git a/src/map/rodex.c b/src/map/rodex.c index 4372cc280..cfd603995 100644 --- a/src/map/rodex.c +++ b/src/map/rodex.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/map/rodex.h b/src/map/rodex.h index 883c717c8..4b64f18ef 100644 --- a/src/map/rodex.h +++ b/src/map/rodex.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2017-2024 Hercules Dev Team + * Copyright (C) 2017-2025 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 diff --git a/src/map/script.c b/src/map/script.c index 920f27c27..e4d16f68a 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/script.h b/src/map/script.h index e74b51692..a00d59929 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/searchstore.c b/src/map/searchstore.c index df3d8fa6f..c34461b49 100644 --- a/src/map/searchstore.c +++ b/src/map/searchstore.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/searchstore.h b/src/map/searchstore.h index 965be5449..a74813385 100644 --- a/src/map/searchstore.h +++ b/src/map/searchstore.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/skill.c b/src/map/skill.c index 211ec9068..02b92e74b 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/skill.h b/src/map/skill.h index bbf8bc69d..a261824b9 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/status.c b/src/map/status.c index 756f3dd62..2b75c1f9c 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/status.h b/src/map/status.h index 6f6712f06..96ce9a285 100644 --- a/src/map/status.h +++ b/src/map/status.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/storage.c b/src/map/storage.c index 6542da49c..f8b15e7c5 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/storage.h b/src/map/storage.h index b9653e15f..c32c9371e 100644 --- a/src/map/storage.h +++ b/src/map/storage.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/stylist.c b/src/map/stylist.c index 1fc1829af..1a6f0dfbc 100644 --- a/src/map/stylist.c +++ b/src/map/stylist.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 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 diff --git a/src/map/stylist.h b/src/map/stylist.h index e15b79902..e54f65353 100644 --- a/src/map/stylist.h +++ b/src/map/stylist.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2018-2024 Hercules Dev Team + * Copyright (C) 2018-2025 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 diff --git a/src/map/trade.c b/src/map/trade.c index 909d67f12..7a304e9e9 100644 --- a/src/map/trade.c +++ b/src/map/trade.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/trade.h b/src/map/trade.h index b06ad6a80..871c4fc79 100644 --- a/src/map/trade.h +++ b/src/map/trade.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/unit.c b/src/map/unit.c index 26e39f369..bde6c43de 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/unit.h b/src/map/unit.h index da61f7223..344820ff6 100644 --- a/src/map/unit.h +++ b/src/map/unit.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/unitdefines.h b/src/map/unitdefines.h index 856abcb76..01d09d5b6 100644 --- a/src/map/unitdefines.h +++ b/src/map/unitdefines.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/vending.c b/src/map/vending.c index 18f0c8135..d8a301a51 100644 --- a/src/map/vending.c +++ b/src/map/vending.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/map/vending.h b/src/map/vending.h index eaf132ea5..aea2f159d 100644 --- a/src/map/vending.h +++ b/src/map/vending.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/plugins/HPMHooking.c b/src/plugins/HPMHooking.c index 6be9c5629..af6d40c83 100644 --- a/src/plugins/HPMHooking.c +++ b/src/plugins/HPMHooking.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/HPMHooking.h b/src/plugins/HPMHooking.h index 36a88774e..9d8cacde9 100644 --- a/src/plugins/HPMHooking.h +++ b/src/plugins/HPMHooking.h @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/plugins/Makefile.in b/src/plugins/Makefile.in index 2378004de..bf8fdfcce 100644 --- a/src/plugins/Makefile.in +++ b/src/plugins/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2013-2024 Hercules Dev Team +# Copyright (C) 2013-2025 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 diff --git a/src/plugins/constdb2doc.c b/src/plugins/constdb2doc.c index 1fe69cfde..4b32a670a 100644 --- a/src/plugins/constdb2doc.c +++ b/src/plugins/constdb2doc.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 Hercules Dev Team * Copyright (C) 2016 Haru * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/plugins/db2sql.c b/src/plugins/db2sql.c index 3ce208a6a..337065609 100644 --- a/src/plugins/db2sql.c +++ b/src/plugins/db2sql.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/dbghelpplug.c b/src/plugins/dbghelpplug.c index 3698a669d..74cf0bcd2 100644 --- a/src/plugins/dbghelpplug.c +++ b/src/plugins/dbghelpplug.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/plugins/generate-translations.c b/src/plugins/generate-translations.c index c7c5eba9f..9038d1a99 100644 --- a/src/plugins/generate-translations.c +++ b/src/plugins/generate-translations.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2016-2024 Hercules Dev Team + * Copyright (C) 2016-2025 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 diff --git a/src/plugins/httpsample.c b/src/plugins/httpsample.c index 29455c311..fd5381301 100644 --- a/src/plugins/httpsample.c +++ b/src/plugins/httpsample.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 Hercules Dev Team * Copyright (C) 2020-2022 Andrei Karas (4144) * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/plugins/mapcache.c b/src/plugins/mapcache.c index 24c9b9dbd..cb88e05c2 100644 --- a/src/plugins/mapcache.c +++ b/src/plugins/mapcache.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2013-2024 Hercules Dev Team +* Copyright (C) 2013-2025 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 diff --git a/src/plugins/sample.c b/src/plugins/sample.c index 67c5f2d38..0315fba34 100644 --- a/src/plugins/sample.c +++ b/src/plugins/sample.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2013-2024 Hercules Dev Team + * Copyright (C) 2013-2025 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 diff --git a/src/plugins/script_mapquit.c b/src/plugins/script_mapquit.c index ef3c3dcb1..7fbab99ee 100644 --- a/src/plugins/script_mapquit.c +++ b/src/plugins/script_mapquit.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2014-2024 Hercules Dev Team + * Copyright (C) 2014-2025 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 diff --git a/src/test/Makefile.in b/src/test/Makefile.in index 7db8e3a63..9801136d5 100644 --- a/src/test/Makefile.in +++ b/src/test/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/src/test/test_base62.c b/src/test/test_base62.c index 0b0a20938..f2e433985 100644 --- a/src/test/test_base62.c +++ b/src/test/test_base62.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2023-2024 Hercules Dev Team + * Copyright (C) 2023-2025 Hercules Dev Team * Copyright (C) 2023 KirieZ * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/test/test_chunked.c b/src/test/test_chunked.c index 08b761e85..49f67cabd 100644 --- a/src/test/test_chunked.c +++ b/src/test/test_chunked.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 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 diff --git a/src/test/test_libconfig.c b/src/test/test_libconfig.c index af2fa5f35..b2f38f9a2 100644 --- a/src/test/test_libconfig.c +++ b/src/test/test_libconfig.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2015-2024 Hercules Dev Team + * Copyright (C) 2015-2025 Hercules Dev Team * Copyright (C) 2015 Haru * * Hercules is free software: you can redistribute it and/or modify diff --git a/src/test/test_spinlock.c b/src/test/test_spinlock.c index 512e0407c..a84b696a7 100644 --- a/src/test/test_spinlock.c +++ b/src/test/test_spinlock.c @@ -2,7 +2,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) Athena Dev Teams * * Hercules is free software: you can redistribute it and/or modify diff --git a/sysinfogen.sh b/sysinfogen.sh index fa5bcc3cf..a0304018e 100755 --- a/sysinfogen.sh +++ b/sysinfogen.sh @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2014-2024 Hercules Dev Team +# Copyright (C) 2014-2025 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 diff --git a/tools/HPMHookGen/HPMDataCheckGen.pl b/tools/HPMHookGen/HPMDataCheckGen.pl index 596e28e7d..7a13ad1e5 100644 --- a/tools/HPMHookGen/HPMDataCheckGen.pl +++ b/tools/HPMHookGen/HPMDataCheckGen.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2014-2024 Hercules Dev Team +# Copyright (C) 2014-2025 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 diff --git a/tools/HPMHookGen/HPMHookGen.pl b/tools/HPMHookGen/HPMHookGen.pl index 49f9cc6c0..42aa7772f 100755 --- a/tools/HPMHookGen/HPMHookGen.pl +++ b/tools/HPMHookGen/HPMHookGen.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2013-2024 Hercules Dev Team +# Copyright (C) 2013-2025 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 diff --git a/tools/HPMHookGen/Makefile.in b/tools/HPMHookGen/Makefile.in index 37b0d5162..d09027f76 100644 --- a/tools/HPMHookGen/Makefile.in +++ b/tools/HPMHookGen/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # Copyright (C) Athena Dev Teams # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/HPMHookGen/preprocess.py b/tools/HPMHookGen/preprocess.py index 8cd0fa4fb..865f35f77 100755 --- a/tools/HPMHookGen/preprocess.py +++ b/tools/HPMHookGen/preprocess.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2019-2024 Hercules Dev Team +# Copyright (C) 2019-2025 Hercules Dev Team # Copyright (C) 2020 Andrei Karas (4144) # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/Script-Checker.applescript b/tools/Script-Checker.applescript index 7928c45cb..94a294d92 100644 --- a/tools/Script-Checker.applescript +++ b/tools/Script-Checker.applescript @@ -2,7 +2,7 @@ This file is part of Hercules. http://herc.ws - http://github.com/HerculesWS/Hercules - Copyright (C) 2014-2024 Hercules Dev Team + Copyright (C) 2014-2025 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 diff --git a/tools/attr_fix_converter.php b/tools/attr_fix_converter.php index 99a2bb902..53a5e3b51 100644 --- a/tools/attr_fix_converter.php +++ b/tools/attr_fix_converter.php @@ -3,7 +3,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * - * Copyright (C) 2012-2024 Hercules Dev Team + * Copyright (C) 2012-2025 Hercules Dev Team * Copyright (C) 2021 KirieZ * * Hercules is free software: you can redistribute it and/or modify @@ -285,7 +285,7 @@ function get_file_header() //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2015-2024 Hercules Dev Team +//= Copyright (C) 2015-2025 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 diff --git a/tools/check-doc b/tools/check-doc index 426b21fde..d646a8d09 100755 --- a/tools/check-doc +++ b/tools/check-doc @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2012-2024 Hercules Dev Team +# Copyright (C) 2012-2025 Hercules Dev Team # checking-doc script by trojal # modified by lighta # diff --git a/tools/checksql.py b/tools/checksql.py index 646fa154b..24b030495 100755 --- a/tools/checksql.py +++ b/tools/checksql.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2014-2024 Hercules Dev Team +# Copyright (C) 2014-2025 Hercules Dev Team # Copyright (C) 2023 Andrei Karas (4144) # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/ci/retry.sh b/tools/ci/retry.sh index 51fb645d8..453627557 100755 --- a/tools/ci/retry.sh +++ b/tools/ci/retry.sh @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2016-2024 Hercules Dev Team +# Copyright (C) 2016-2025 Hercules Dev Team # Copyright (C) 2016 Haru # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/ci/travis.sh b/tools/ci/travis.sh index 518dcb31f..3ba4481c7 100755 --- a/tools/ci/travis.sh +++ b/tools/ci/travis.sh @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2014-2024 Hercules Dev Team +# Copyright (C) 2014-2025 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 diff --git a/tools/ci/windows.ps1 b/tools/ci/windows.ps1 index a1dd853f3..27ead14f8 100644 --- a/tools/ci/windows.ps1 +++ b/tools/ci/windows.ps1 @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2024 Hercules Dev Team +# Copyright (C) 2025 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 diff --git a/tools/configconverter.pl b/tools/configconverter.pl index 942d51bfd..d911457d1 100755 --- a/tools/configconverter.pl +++ b/tools/configconverter.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2016-2024 Hercules Dev Team +# Copyright (C) 2016-2025 Hercules Dev Team # Copyright (C) 2016 Haru # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/constdbconverter.pl b/tools/constdbconverter.pl index 899b32064..bade09977 100755 --- a/tools/constdbconverter.pl +++ b/tools/constdbconverter.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2016-2024 Hercules Dev Team +# Copyright (C) 2016-2025 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 diff --git a/tools/doxygen/Makefile.in b/tools/doxygen/Makefile.in index d2b0d14ac..fd136e2b8 100644 --- a/tools/doxygen/Makefile.in +++ b/tools/doxygen/Makefile.in @@ -1,7 +1,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2016-2024 Hercules Dev Team +# Copyright (C) 2016-2025 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 diff --git a/tools/homundbconverter.py b/tools/homundbconverter.py index 8df17e6d6..99c35b902 100644 --- a/tools/homundbconverter.py +++ b/tools/homundbconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2019-2024 Hercules Dev Team +# Copyright (C) 2019-2025 Hercules Dev Team # Copyright (C) 2019 Asheraf # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/item_merge.lua b/tools/item_merge.lua index 816ba5a47..743f16bef 100644 --- a/tools/item_merge.lua +++ b/tools/item_merge.lua @@ -1,7 +1,7 @@ -- This file is part of Hercules. -- http://herc.ws - http://github.com/HerculesWS/Hercules -- --- Copyright (C) 2014-2024 Hercules Dev Team +-- Copyright (C) 2014-2025 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 diff --git a/tools/itemcombodbconverter.py b/tools/itemcombodbconverter.py index 9f102817f..a37588b3e 100644 --- a/tools/itemcombodbconverter.py +++ b/tools/itemcombodbconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2019-2024 Hercules Dev Team +# Copyright (C) 2019-2025 Hercules Dev Team # Copyright (C) 2019 Asheraf # # Hercules is free software: you can redistribute it and/or modify @@ -40,7 +40,7 @@ def ConvertFile(args): //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/tools/itemdb_jobmask_converter.pl b/tools/itemdb_jobmask_converter.pl index 8d3db000b..0fb677d34 100644 --- a/tools/itemdb_jobmask_converter.pl +++ b/tools/itemdb_jobmask_converter.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2016-2024 Hercules Dev Team +# Copyright (C) 2016-2025 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 diff --git a/tools/itemdbconverter.pl b/tools/itemdbconverter.pl index ea8e70130..7fb19c28c 100755 --- a/tools/itemdbconverter.pl +++ b/tools/itemdbconverter.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2013-2024 Hercules Dev Team +# Copyright (C) 2013-2025 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 diff --git a/tools/mobavailconverter.py b/tools/mobavailconverter.py index 8dc7579a7..311ad0a7a 100644 --- a/tools/mobavailconverter.py +++ b/tools/mobavailconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2019-2024 Hercules Dev Team +# Copyright (C) 2019-2025 Hercules Dev Team # Copyright (C) 2019 Asheraf # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/mobdbconvall.sh b/tools/mobdbconvall.sh index d8a0846f6..33ec66d1c 100755 --- a/tools/mobdbconvall.sh +++ b/tools/mobdbconvall.sh @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2015-2024 Hercules Dev Team +# Copyright (C) 2015-2025 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 diff --git a/tools/mobdbconverter.py b/tools/mobdbconverter.py index 5967cf806..c08c299e3 100755 --- a/tools/mobdbconverter.py +++ b/tools/mobdbconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2015-2024 Hercules Dev Team +# Copyright (C) 2015-2025 Hercules Dev Team # Copyright (C) 2015 Andrei Karas (4144) # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/mobgroupconverter.py b/tools/mobgroupconverter.py index 2dc4c9cb6..7b3ce6d84 100644 --- a/tools/mobgroupconverter.py +++ b/tools/mobgroupconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2021-2024 Hercules Dev Team +# Copyright (C) 2021-2025 Hercules Dev Team # Copyright (C) 2021 Asheraf # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/mobskilldbconverter.py b/tools/mobskilldbconverter.py index 6f4c59bad..e4f556ddf 100755 --- a/tools/mobskilldbconverter.py +++ b/tools/mobskilldbconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2018-2024 Hercules Dev Team +# Copyright (C) 2018-2025 Hercules Dev Team # Copyright (C) 2018 Asheraf # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/petdbconverter.py b/tools/petdbconverter.py index 1a6729471..8f1e8ca9b 100644 --- a/tools/petdbconverter.py +++ b/tools/petdbconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2018-2024 Hercules Dev Team +# Copyright (C) 2018-2025 Hercules Dev Team # Copyright (C) 2018 Asheraf # Copyright (C) 2015 Andrei Karas (4144) # diff --git a/tools/petevolutionconverter.py b/tools/petevolutionconverter.py index f45cb5ea9..997d7d125 100644 --- a/tools/petevolutionconverter.py +++ b/tools/petevolutionconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2018-2024 Hercules Dev Team +# Copyright (C) 2018-2025 Hercules Dev Team # Copyright (C) 2018 Dastgir # # Hercules is free software: you can redistribute it and/or modify @@ -39,7 +39,7 @@ def printHeader(): //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2018-2024 Hercules Dev Team +//= Copyright (C) 2018-2025 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 diff --git a/tools/questdbconverter.pl b/tools/questdbconverter.pl index 9e44ecdc9..b4339a4ca 100755 --- a/tools/questdbconverter.pl +++ b/tools/questdbconverter.pl @@ -3,7 +3,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2015-2024 Hercules Dev Team +# Copyright (C) 2015-2025 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 diff --git a/tools/scconfigconverter.py b/tools/scconfigconverter.py index d4d9b2756..81ba5e354 100644 --- a/tools/scconfigconverter.py +++ b/tools/scconfigconverter.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2019-2024 Hercules Dev Team +# Copyright (C) 2019-2025 Hercules Dev Team # Copyright (C) 2019 Asheraf # # Hercules is free software: you can redistribute it and/or modify @@ -37,7 +37,7 @@ //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2019-2024 Hercules Dev Team +//= Copyright (C) 2019-2025 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 diff --git a/tools/skilldbconverter.php b/tools/skilldbconverter.php index 31075fca4..34d942e2c 100644 --- a/tools/skilldbconverter.php +++ b/tools/skilldbconverter.php @@ -11,7 +11,7 @@ * This file is part of Hercules. * http://herc.ws - http://github.com/HerculesWS/Hercules * -* Copyright (C) 2016-2024 Hercules Dev Team +* Copyright (C) 2016-2025 Hercules Dev Team * Copyright (C) 2016 Smokexyz * * Hercules is free software: you can redistribute it and/or modify @@ -939,7 +939,7 @@ function printcredits() print " | | | | __/ | | (__| |_| | | __/\__ \ \n"; print " \_| |_/\___|_| \___|\__,_|_|\___||___/\n"; print "Hercules Skill Database TXT to Libconfig Converter by Smokexyz\n"; - print "Copyright (C) 2016-2024 Hercules Dev Team\n"; + print "Copyright (C) 2016-2025 Hercules Dev Team\n"; print "-----------------------------------------------\n\n"; } @@ -956,7 +956,7 @@ function getcomments($re) //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= -//= Copyright (C) 2014-2024 Hercules Dev Team +//= Copyright (C) 2014-2025 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 diff --git a/tools/utils/common.py b/tools/utils/common.py index 7a92c100e..151a0d0b6 100644 --- a/tools/utils/common.py +++ b/tools/utils/common.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2018-2024 Hercules Dev Team +# Copyright (C) 2018-2025 Hercules Dev Team # Copyright (C) 2018 Asheraf # # Hercules is free software: you can redistribute it and/or modify diff --git a/tools/utils/libconf.py b/tools/utils/libconf.py index c5219a355..72641d6be 100644 --- a/tools/utils/libconf.py +++ b/tools/utils/libconf.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf8 -*- # -# Copyright (C) 2018-2024 Hercules Dev Team +# Copyright (C) 2018-2025 Hercules Dev Team # # This library is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/tools/validateinterfaces.py b/tools/validateinterfaces.py index 1bee64cbe..1fa5e3e91 100755 --- a/tools/validateinterfaces.py +++ b/tools/validateinterfaces.py @@ -4,7 +4,7 @@ # This file is part of Hercules. # http://herc.ws - http://github.com/HerculesWS/Hercules # -# Copyright (C) 2014-2024 Hercules Dev Team +# Copyright (C) 2014-2025 Hercules Dev Team # Copyright (C) 2014 Andrei Karas (4144) # # Hercules is free software: you can redistribute it and/or modify From c1fa5502eb08143a0e6e7862577fa57480919c0f Mon Sep 17 00:00:00 2001 From: Haru Date: Sat, 1 Feb 2025 01:43:40 +0100 Subject: [PATCH 6/6] Release v2025.01 Signed-off-by: Haru --- CHANGELOG.md | 7 +++++++ doc/constants_pre-re.md | 2 +- doc/constants_re.md | 2 +- src/config/core.h | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae087babf..71e4a237a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,12 @@ If you are reading this in a text editor, simply ignore this section ### Removed --> +## [v2025.01] `January 2025` + +### Added + +- Added some validation checks for unusual/suspicious whitespace in incoming chat messages. (#3335) + ## [v2024.11] `November 2024` ### Changed @@ -3192,6 +3198,7 @@ Note: everything included in this release is part of PR #3198 which consists of - New versioning scheme and project changelogs/release notes (#1853) [Unreleased]: https://github.com/HerculesWS/Hercules/compare/stable...master +[v2025.01]: https://github.com/HerculesWS/Hercules/compare/v2024.11...v2025.01 [v2024.11]: https://github.com/HerculesWS/Hercules/compare/v2024.10...v2024.11 [v2024.10]: https://github.com/HerculesWS/Hercules/compare/v2024.09...v2024.10 [v2024.09]: https://github.com/HerculesWS/Hercules/compare/v2024.08...v2024.09 diff --git a/doc/constants_pre-re.md b/doc/constants_pre-re.md index 6c0d1e033..366d38379 100644 --- a/doc/constants_pre-re.md +++ b/doc/constants_pre-re.md @@ -4878,7 +4878,7 @@ ### Server defines - `PACKETVER`: 20190530 -- `HERCULES_VERSION`: 202411000 +- `HERCULES_VERSION`: 202501000 - `MAX_LEVEL`: 175 - `MAX_STORAGE`: 600 - `MAX_GUILD_STORAGE`: 500 diff --git a/doc/constants_re.md b/doc/constants_re.md index 16916beb8..aa17b66ce 100644 --- a/doc/constants_re.md +++ b/doc/constants_re.md @@ -4878,7 +4878,7 @@ ### Server defines - `PACKETVER`: 20190530 -- `HERCULES_VERSION`: 202411000 +- `HERCULES_VERSION`: 202501000 - `MAX_LEVEL`: 175 - `MAX_STORAGE`: 600 - `MAX_GUILD_STORAGE`: 500 diff --git a/src/config/core.h b/src/config/core.h index f652116b3..f38678b1c 100644 --- a/src/config/core.h +++ b/src/config/core.h @@ -22,7 +22,7 @@ #define CONFIG_CORE_H /// Hercules version. From tag vYYYY.MM(+PPP) -> YYYYMMPPP -#define HERCULES_VERSION 202411000 +#define HERCULES_VERSION 202501000 /// Max number of items on @autolootid list #define AUTOLOOTITEM_SIZE 10