12.09.2011, 14:17
Boa noite, estou aprendendo a usar zcmd+ sscanf e tenho uma duvida, como converto tmp, no caso esse code abaixo para zcmd e sscanf?
Ja tentei usar um code com params[0] mas o servidor se desligou ao executar esse comando, estranho...
Ja tentei usar um code com params[0] mas o servidor se desligou ao executar esse comando, estranho...
pawn Код:
if (strcmp(cmd, "/resetarconta", true)==0)
{
if((IsPlayerAdmin(playerid)))
{
new string[40];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USE: /resetarconta [Nome_Sobrenome]");
return 1;
}
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(giveplayer));
format(string, sizeof(string),"Arquivos/%s.ini",tmp);
dini_Remove(string);
}
return 1;
}