13.07.2010, 11:01
This will work:
Yes but return them.
pawn Код:
#define SetPlayerHealth SetPlayerHealth2
#define SetPlayerPos SetPlayerPos2
pawn Код:
stock SetPlayerHealth2 (playerid, Float:health)
{
return SetPlayerHealth (playerid, health); //call a custom callback/function here
}
stock SetPlayerPos2 (playerid, Float:x, Float:y, Float:z)
{
return SetPlayerPos (playerid, x, y, z); //call a custom callback/function here
}