25.08.2010, 17:48
(
Последний раз редактировалось sergio_xd; 25.08.2010 в 18:28.
)
ta ai manow:
pawn Код:
//
if((strcmp(cmd, "/deletarconta", true)==0 || strcmp(cmd, "/dc", true) ==0) && IsPlayerAdmin(playerid))
{
new tmp[128];
new file[128];
new tempx[128];
tempx = strtok(cmdtext, idx);
if(!strlen(tmpx))
{
//
SendClientMessage(playerid, 0xFFFFFFAA, "[USE:] /dc [conta]");
return 1;
}
format(file,sizeof(file),"RoxBrasil/contas/%s.ini",tempx);
if(!fexist(file))
{
fremove(file);
}
else
{
SendClientMessage(playerid, 0xB4B5B7FF, "Esta conta nгo existe aqui!");
return 1;
}
return 1;
}