09.05.2011, 15:29
pawn Код:
if (strcmp("/radio", cmdtext, true, 10) == 0 || strcmp("/r", cmdtext, true, 10) == 0) //para comandos simples
if(strcmp(cmd, "/radio", true) == 0 || strcmp(cmd, "/r", true) == 0) //Para comandos complexos
tipo:
pawn Код:
if(!dini_Exists(arquivo))
{
new pNome[MAX_PLAYER_NAME];
GetPlayerName(playerid, pNome, sizeof(pNome));
format(arquivo, sizeof(arquivo), "%s.ini",pNome);
dini_Create(arquivo);
}