08.05.2012, 22:18
Tenta:
pawn Код:
//CONNECT
Vip[playerid] = DOF2_GetInt("Nivel/Vip.ini",PlayerName(playerid));
//COMANDO
if(strcmp(cmd, "/darvip", true) == 0)
{
new tmp[128];
tmp = strtok(cmdtext, idx);
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,0xFFFFFFFF,"Comando reservado apenas para Administradores");
if(strlen(tmp) == 0) return SendClientMessage(playerid, 0xFFFFFFFF, "Uso do Comando: /darvip ID");
if(!IsPlayerConnected(strval(tmp))) return SendClientMessage(playerid, 0xFFFFFFFF, "Jogador invalido");
Vip[strval(tmp)] = 1;
SendClientMessage(strval(tmp), 0xFFFFFFFF, "{FF0000}Aviso:{A0D197} Agora es membro VIP do Patos-Tugas {FF0000}/VIP!");
SendClientMessage(playerid, TEAM_COMERCIO_COLOR, "{FF0000}Aviso:{A0D197} Desde estado VIP a um jogdor!");
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName,sizeof(pName));
new pName1[MAX_PLAYER_NAME];
GetPlayerName(strval(tmp),pName1,sizeof(pName1));
new string[248];
format(string,sizeof(string),"{FFB01F}O administrador/a {FFEA00}%s{FFB01F} colocou o{FFEA00} %s como VIP!",pName,pName1);
SendClientMessageToAll(TEAM_COMERCIO_COLOR, string);
DOF2_SetInt("Nivel/Vip.ini", pName1, 1);
DOF2_SaveFile();
return 1;
}
if(strcmp(cmd, "/tirarvip", true) == 0)
{
new tmp[128];
tmp = strtok(cmdtext, idx);
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,0xFFFFFFFF,"Comando reservado apenas para Administradores");
if(strlen(tmp) == 0) return SendClientMessage(playerid, 0xFFFFFFFF, "Uso do Comando: /tirarvip ID");
if(!IsPlayerConnected(strval(tmp))) return SendClientMessage(playerid, 0xFFFFFFFF, "Jogador invalido");
Vip[strval(tmp)] = 0;
SendClientMessage(strval(tmp), 0xFFFFFFFF, "{FF0000}Aviso:{A0D197} Agora ja nгo es VIP do Patos-Tugas");
SendClientMessage(playerid, TEAM_COMERCIO_COLOR, "{FF0000}Aviso:{A0D197} Tiraste estado Vip a um jogador!");
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid,pName,sizeof(pName));
new pName1[MAX_PLAYER_NAME];
GetPlayerName(strval(tmp),pName1,sizeof(pName1));
new string[248];
format(string,sizeof(string),"{FFB01F}O administrador/a{FFEA00} %s{FFB01F} tirou o{FFEA00} %s de jogador Vip!",pName,pName1);
SendClientMessageToAll(TEAM_COMERCIO_COLOR, string);
DOF2_SetInt("Nivel/Vip.ini", pName1, 0);
DOF2_SaveFile();
return 1;
}