14.06.2015, 23:53
(
Последний раз редактировалось IgorLuiz; 15.06.2015 в 00:31.
)
nao testei mas coloca esse code
Код:
if(strcmp(cmd,"/corvip", true)== 0){ new aname[MAX_PLAYER_NAME]; GetPlayerName(playerid, aname, MAX_PLAYER_NAME); format(file, sizeof(file), PASTA_CONTAS, aname); if(PlayerInfo[playerid][pVip2] == 1){ new plid, skin; playerid = strval(tmp); tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, Vermelho, "* Digite: [ 1 a 5 ] * "); return 1; } skin = strval(tmp); if(skin>=6){ SendClientMessage(playerid, Vermelho, "(ERRO) Cor Invalido Tente, de 1 a 5 !"); return 1; } new pname[MAX_PLAYER_NAME]; GetPlayerName(playerid, pname, MAX_PLAYER_NAME); if(IsPlayerConnected(plid)){ if(skin == 1){ cVip[strval(tmp)] = 1; SendClientMessage(playerid, Laranja," Vocк Mudou Pra Cor Laranja !"); } if(skin == 2){ cVip[strval(tmp)] = 2; SendClientMessage(playerid, Vermelho," Vocк Mudou Pra Cor Vermelho !"); } if(skin == 3){ cVip[strval(tmp)] = 3; SendClientMessage(playerid, Roza," Vocк Mudou Pra Cor Rosa !"); } if(skin == 4){ cVip[strval(tmp)] = 4; SendClientMessage(playerid, VerdeClaro, " Vocк Mudou Pra Cor Verde Claro !"); } if(skin == 5){ cVip[strval(tmp)] = 5; SendClientMessage(playerid, AzulClaro," Vocк Mudou Pra Cor Azul Claro !"); } if(skin == 0){ cVip[strval(tmp)] = 0; format(string, sizeof(string), "Vc Desativou o Cor Vip !"); SendClientMessageToAll(Verde, string); if(IsPlayerAttachedObjectSlotUsed(playerid,1)) RemovePlayerAttachedObject(playerid,1); } return 1; }else{ SendClientMessage(playerid, Vermelho, "** Jogador nгo conectado."); return 1; } } }