03.08.2012, 12:43
What is the difference between normally calling a function or by CallLocalFunction?
Example:
Example:
pawn Код:
public OnPlayerConnect(playerid)
{
if(IsPlayerNPC(playerid))
{
OnPlayerCommandText(playerid,"/SkipRegistration");
//CallLocalFunction("OnPlayerCommandText","ds",playerid,"/SkipRegistration");
}
return 1;
}