[Ajuda] Deletar Conta
#2

Estб usando sscanf2?

#Edit
Tente:
Код:
CMD:deletarconta(playerid,params[])
{
	new arquivo[40],string[80];
	if(Jogador[playerid][pAdmin] < 2) return SendClientMessage(playerid,-1,"Vocк nгo esta autorizado a utilizar este comando!");
	if(isnull(params) || strlen(params) > MAX_PLAYER_NAME) SendClientMessage(playerid,-1,"Use: /deletarconta [Nome]");
	GetPlayerName(playerid,Name,sizeof(Name));
	format(arquivo, sizeof(arquivo), "Contas/%s.ini", params);
	if(!INI_Exist(arquivo)) return SendClientMessage(playerid, -1,"[ERRO] Conta Inexistente");
	INI_Remove(arquivo);
	for(new i; i != MAX_PLAYERS; ++i)
	{
		if(IsPlayerConnected(i))
		{
			if(Jogador[i][pAdmin] > 0)
			{
				format(string,sizeof(string),"O Admin %s deletou a conta %s", Name,params);
				SendClientMessage(i,-1,string);
			}
		}
	}
	return true;
}
Reply


Messages In This Thread
Deletar Conta - by Lord_Style - 20.10.2012, 17:24
Re: Deletar Conta - by humildadeforever - 20.10.2012, 17:30

Forum Jump:


Users browsing this thread: 1 Guest(s)