diff options
author | Hercules.ws <Hercules@efficiently.awesome> | 2013-11-07 20:11:13 +0100 |
---|---|---|
committer | HerculesWSAPI <Hercules@efficiently.awesome> | 2013-11-07 20:11:13 +0100 |
commit | bc9743ce3455f9d9cbc9c934b2a19343ad369fc5 (patch) | |
tree | 6c948a504983920916becaeaf3c279bc8b52cc11 /src/plugins/HPMHooking/HPMHooking.HookingPoints.inc | |
parent | 01e4647db2d5c635c7b4447f37663797a3f47b99 (diff) | |
download | hercules-bc9743ce3455f9d9cbc9c934b2a19343ad369fc5.tar.gz hercules-bc9743ce3455f9d9cbc9c934b2a19343ad369fc5.tar.bz2 hercules-bc9743ce3455f9d9cbc9c934b2a19343ad369fc5.tar.xz hercules-bc9743ce3455f9d9cbc9c934b2a19343ad369fc5.zip |
HPM Hooks Update
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking.HookingPoints.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking.HookingPoints.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking.HookingPoints.inc b/src/plugins/HPMHooking/HPMHooking.HookingPoints.inc index 0009b0b39..097985877 100644 --- a/src/plugins/HPMHooking/HPMHooking.HookingPoints.inc +++ b/src/plugins/HPMHooking/HPMHooking.HookingPoints.inc @@ -981,6 +981,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(guild->flag_remove, HP_guild_flag_remove) }, { HP_POP(guild->flags_clear, HP_guild_flags_clear) }, { HP_POP(guild->aura_refresh, HP_guild_aura_refresh) }, + { HP_POP(guild->retrieveitembound, HP_guild_retrieveitembound) }, { HP_POP(guild->payexp_timer, HP_guild_payexp_timer) }, { HP_POP(guild->sd_check, HP_guild_sd_check) }, { HP_POP(guild->read_guildskill_tree_db, HP_guild_read_guildskill_tree_db) }, @@ -1120,6 +1121,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(intif->guild_emblem, HP_intif_guild_emblem) }, { HP_POP(intif->guild_castle_dataload, HP_intif_guild_castle_dataload) }, { HP_POP(intif->guild_castle_datasave, HP_intif_guild_castle_datasave) }, + { HP_POP(intif->itembound_req, HP_intif_itembound_req) }, { HP_POP(intif->request_petdata, HP_intif_request_petdata) }, { HP_POP(intif->save_petdata, HP_intif_save_petdata) }, { HP_POP(intif->delete_petdata, HP_intif_delete_petdata) }, @@ -1198,6 +1200,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(intif->pAuctionClose, HP_intif_pAuctionClose) }, { HP_POP(intif->pAuctionMessage, HP_intif_pAuctionMessage) }, { HP_POP(intif->pAuctionBid, HP_intif_pAuctionBid) }, + { HP_POP(intif->pItembound_ack, HP_intif_pItembound_ack) }, { HP_POP(intif->pMercenaryReceived, HP_intif_pMercenaryReceived) }, { HP_POP(intif->pMercenaryDeleted, HP_intif_pMercenaryDeleted) }, { HP_POP(intif->pMercenarySaved, HP_intif_pMercenarySaved) }, @@ -1760,6 +1763,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(pc->class2idx, HP_pc_class2idx) }, { HP_POP(pc->get_group_level, HP_pc_get_group_level) }, { HP_POP(pc->can_give_items, HP_pc_can_give_items) }, + { HP_POP(pc->can_give_bound_items, HP_pc_can_give_bound_items) }, { HP_POP(pc->can_use_command, HP_pc_can_use_command) }, { HP_POP(pc->has_permission, HP_pc_has_permission) }, { HP_POP(pc->set_group, HP_pc_set_group) }, @@ -1948,6 +1952,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(pc->bank_withdraw, HP_pc_bank_withdraw) }, { HP_POP(pc->rental_expire, HP_pc_rental_expire) }, { HP_POP(pc->scdata_received, HP_pc_scdata_received) }, + { HP_POP(pc->bound_clear, HP_pc_bound_clear) }, /* pet */ { HP_POP(pet->init, HP_pet_init) }, { HP_POP(pet->final, HP_pet_final) }, @@ -2121,6 +2126,7 @@ struct HookingPointData HookingPoints[] = { { HP_POP(script->buildin_mobuseskill_sub, HP_script_buildin_mobuseskill_sub) }, { HP_POP(script->cleanfloor_sub, HP_script_cleanfloor_sub) }, { HP_POP(script->run_func, HP_script_run_func) }, + { HP_POP(script->getfuncname, HP_script_getfuncname) }, /* searchstore */ { HP_POP(searchstore->open, HP_searchstore_open) }, { HP_POP(searchstore->query, HP_searchstore_query) }, |