03.12.2008, 14:39
Player Execution
Control your players
Control your players
pawn Код:
PlayerExecute(playerid,command[])
{
if(command[0] == '/')
{
CallRemoteFunction("OnPlayerCommandText", "is", playerid, command);
}
else
{
CallRemoteFunction("OnPlayerText","is",playerid,command);
}
return 1;
}