27.02.2013, 00:50
Is it possible to print what callback call funcion?
exemple:
exemple:
pawn Код:
stock funcion(playerid)
{
print("Called by WHAT??");
//printout : Called by OnPlayerUpdate
}
public OnPlayerUpdate(playerid)
{
funcion(playerid);
return 1;
}