diff options
author | Hercules.ws <Hercules@efficiently.awesome> | 2015-12-20 17:07:17 +0100 |
---|---|---|
committer | HerculesWSAPI <Hercules@efficiently.awesome> | 2015-12-20 17:07:17 +0100 |
commit | 85b248789470161cb7212949b936307b7e05ba4f (patch) | |
tree | 06845c5a580cd04f5128d6719d802a00531ee32d /src/plugins/HPMHooking/HPMHooking_map.Hooks.inc | |
parent | 8382ee1cea443ac62a16c21c750423f3a2a624af (diff) | |
download | hercules-85b248789470161cb7212949b936307b7e05ba4f.tar.gz hercules-85b248789470161cb7212949b936307b7e05ba4f.tar.bz2 hercules-85b248789470161cb7212949b936307b7e05ba4f.tar.xz hercules-85b248789470161cb7212949b936307b7e05ba4f.zip |
HPM Hooks Update
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
Diffstat (limited to 'src/plugins/HPMHooking/HPMHooking_map.Hooks.inc')
-rw-r--r-- | src/plugins/HPMHooking/HPMHooking_map.Hooks.inc | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc index 4c828dc56..8f6ec125b 100644 --- a/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc +++ b/src/plugins/HPMHooking/HPMHooking_map.Hooks.inc @@ -59445,6 +59445,87 @@ TBL_PC* HP_script_rid2sd(struct script_state *st) { } return retVal___; } +TBL_PC* HP_script_id2sd(struct script_state *st, int account_id) { + int hIndex = 0; + TBL_PC* retVal___ = NULL; + if( HPMHooks.count.HP_script_id2sd_pre ) { + TBL_PC* (*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; + retVal___ = preHookFunc(st, &account_id); + } + if( *HPMforce_return ) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.script.id2sd(st, account_id); + } + if( HPMHooks.count.HP_script_id2sd_post ) { + TBL_PC* (*postHookFunc) (TBL_PC* 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); + } + } + return retVal___; +} +TBL_PC* HP_script_charid2sd(struct script_state *st, int char_id) { + int hIndex = 0; + TBL_PC* retVal___ = NULL; + if( HPMHooks.count.HP_script_charid2sd_pre ) { + TBL_PC* (*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; + retVal___ = preHookFunc(st, &char_id); + } + if( *HPMforce_return ) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.script.charid2sd(st, char_id); + } + if( HPMHooks.count.HP_script_charid2sd_post ) { + TBL_PC* (*postHookFunc) (TBL_PC* 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); + } + } + return retVal___; +} +TBL_PC* HP_script_nick2sd(struct script_state *st, const char *name) { + int hIndex = 0; + TBL_PC* retVal___ = NULL; + if( HPMHooks.count.HP_script_nick2sd_pre ) { + TBL_PC* (*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; + retVal___ = preHookFunc(st, name); + } + if( *HPMforce_return ) { + *HPMforce_return = false; + return retVal___; + } + } + { + retVal___ = HPMHooks.source.script.nick2sd(st, name); + } + if( HPMHooks.count.HP_script_nick2sd_post ) { + TBL_PC* (*postHookFunc) (TBL_PC* 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); + } + } + return retVal___; +} void HP_script_detach_rid(struct script_state *st) { int hIndex = 0; if( HPMHooks.count.HP_script_detach_rid_pre ) { |