02.06.2013, 13:11
I think the easiest way for you is to use the y_hooks include, otherwise u'll need to write your own hooking system, or you could use old school techniques by calling an include function from a callback, something like
which i assume u dont want to use,
take a look at this thread ( https://sampforum.blast.hk/showthread.php?tid=85907 ), it may help you
pawn Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid)
{
Include_OnTakeDamage(playerid, issuerid, ammount, weaponid);
return 1;
}
take a look at this thread ( https://sampforum.blast.hk/showthread.php?tid=85907 ), it may help you