diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-09 14:02:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-11 11:31:37 +0300 |
commit | d5cbfe3188c9c0f91f74772237606863c5ff6114 (patch) | |
tree | ccad1a20804797410746f784e1e356f8e5108a2e /src/plugins/HPMHooking/HPMHooking_map.Hooks.inc | |
parent | 7dfdffc814f164fe7f6461f9767cc531ef150c83 (diff) | |
download | hercules-d5cbfe3188c9c0f91f74772237606863c5ff6114.tar.gz hercules-d5cbfe3188c9c0f91f74772237606863c5ff6114.tar.bz2 hercules-d5cbfe3188c9c0f91f74772237606863c5ff6114.tar.xz hercules-d5cbfe3188c9c0f91f74772237606863c5ff6114.zip |
Update HPM hooks.
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.Hooks.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.Hooks.inc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc index 3249949e7..9efaa6718 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc @@ -52854,6 +52854,33 @@ void HP_pc_expire_check(struct map_session_data *sd) { } return; } +bool HP_pc_db_checkid(unsigned int class_) { + int hIndex = 0; + bool retVal___ = false; + if( HPMHooks.count.HP_pc_db_checkid_pre ) { + bool (*preHookFunc) (unsigned int *class_); + *HPMforce_return = false; + for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_db_checkid_pre; hIndex++ ) { + preHookFunc = HPMHooks.list.HP_pc_db_checkid_pre[hIndex].func; + retVal___ = preHookFunc(&class_); + } + if( *HPMforce_return ) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.pc.db_checkid(class_); + } + if( HPMHooks.count.HP_pc_db_checkid_post ) { + bool (*postHookFunc) (bool retVal___, unsigned int *class_); + for(hIndex = 0; hIndex < HPMHooks.count.HP_pc_db_checkid_post; hIndex++ ) { + postHookFunc = HPMHooks.list.HP_pc_db_checkid_post[hIndex].func; + retVal___ = postHookFunc(retVal___, &class_); + } + } + return retVal___; +} void HP_pc_autotrade_load(void) { int hIndex = 0; if( HPMHooks.count.HP_pc_autotrade_load_pre ) { |