14.10.2011, 16:34
pawn Код:
if (strcmp("/setvip", cmdtext, true) == 0)
{
if (IsPlayerAdmin(playerid))
{
new tmp[128], nvl, jugador, wiiStr[256], nombreusador[MAX_PLAYER_NAME], nombrejugador[MAX_PLAYER_NAME], archivo[256];
tmp = strtok(cmdtext, idx);
if (!strlen(tmp)) return SendClientMessage(playerid, COLOR_ROJO, "[Error] Usa: /setvip [ID] [DEL 0 AL 4].");
jugador = strval(tmp);
GetPlayerName(jugador, nombrejugador, sizeof( nombrejugador ));
GetPlayerName(playerid, nombreusador, sizeof( nombreusador ));
if(jugador == INVALID_PLAYER_ID)
{
SendClientMessage(playerid, -1, "Jugador no contectado");
return 1;
}
tmp = strtok(cmdtext,idx);
nvl = strval(tmp);
if(!strlen(tmp)) return SendClientMessage(playerid, -1, "[Error] Usa: /setvip [ID] [DEL 0 AL 4].");
if(nvl < 0 || nvl > 4)
{
SendClientMessage(playerid, COLOR_ROJO, "[Error]: El nivel V.I.P es solo entre 0 y 4.");
return 1;
}
if(nvl == Informacion[jugador][Premium]) return SendClientMessage(playerid, COLOR_ROJO, "[Error]: El jugador ya tiene ese nivel V.I.P.");
format(wiiStr, 256, "[Admin] %s Te Ha otorgado una cuenta V.I.P de nivel : %d.", nombreusador,nvl);
SendClientMessage(jugador, COLOR_VERDE_CLARO, wiiStr);
format(wiiStr, 256, "[Admin] Has otorgado una cuenta V.I.P de nivel : %d a %s.", nvl, nombrejugador);
SendClientMessage(playerid, COLOR_VERDE_CLARO, wiiStr);
PlayerPlaySound(jugador, 1057, 0.0, 0.0, 0.0);
Informacion[jugador][Premium] = nvl;
format(archivo, 128, "V.I.P/Usuarios/%s.ini", nombrejugador);
dini_IntSet(archivo, "V.I.P", nvl);
}
else
{
SendClientMessage(playerid, COLOR_ROJO, "[Error]: Comando Solo Para Admin Rcon!");
}
return 1;
}