so i have plugin #1:
PHP Code:
#include <hamsandwich>
#include <amxmodx>
public plugin_init()
{
RegisterHam(Ham_TakeDamage, "player", "TakeDamage_Pre");
}
public TakeDamage_Pre(iVictim, iInflictor, iAttacker, Float:fDamage, iBitDamage)
{
HAM_SUPERCEDE
}
then in plugin #2 i want to hook take damage but i can't how to still be able to hook the forward while i supercede it.
__________________