18.08.2013, 15:19
Estou com problema no comando de remover vip , ele diz conta inexistente :
PHP Code:
CMD:removervip(playerid,params[])
{
if(PlayerInfo[playerid][Admin] < 5) return SendClientMessage(playerid,COR_VERMELHO,"[ERRO]: Vocк nгo й administrador");
new name[50];
if(sscanf(params,"s[50]",name)) return SendClientMessage(playerid,Cinza,"[FAIL]: /removervip [nome]");
new string[200];
for(new a; a < MAX_PLAYERS; a++)
{
format(string,sizeof(string),Acc_Local,nome(a));
}
if(strcmp(name,string,true))
{
if(DOF2_FileExists(string))
{
DOF2_SetInt(string,"vip",0);
DOF2_SaveFile();
SendClientMessage(playerid,VerdeClaro,"[INFO]: Vip removido com sucesso ");
return 1;
}else
{
SendClientMessage(playerid,Cinza,"[ERRO]: Conta inexistente");
}
}else{
SendClientMessage(playerid,Cinza,"[ERRO]: Nome incorreto");
}
return 1;
}