02.03.2018, 16:56
PHP код:
public OnPlayerText(playerid, text[])
{
new Comando;
if(strcmp(Comando, "creditos", true) == 0)
{
SendClientMessage(playerid,-1,"Servidor feito por fulano de tal");
return 1;
}
if(strcmp(Comando, "ajuda", true) == 0)
{
SendClientMessage(playerid,-1,"Comando ajuda exemplo");
return 1;
}
//
return 1;
}