24.06.2016, 14:17
No.
Example:
Quote:
whats the difference between calling a CMD and emulating it? I imagine calling it is quite faster right?
|
PHP код:
public OnPlayerText(playerid, text[])
{
if (text[0] == '!')
{
text[0] = '/';
PC_EmulateCommand(playerid, text);
return 0;
}
return 1;
}