17.07.2013, 18:04
Tф precisando de Ajuda , com esse comando de dar vip aki , para o vip sair automaticamente do player.
Exemplo: /darvip [ID] [Nivel] [Dias]
Exemplo: /darvip [ID] [Nivel] [Dias]
Код:
if(strcmp(cmd, "/darvip", true) == 0) { if(IsPlayerConnected(playerid)) { if(PlayerInfo[playerid][pAdmin] < 3000) { SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo tem autorizaзгo para usar esse comando."); return 1; } VipVaga(); if(VagaSobrando == 0) { SendClientMessage(playerid, COLOR_GRAD1, "Nгo hб mais vagas na lista use /limparvip primeiro."); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USE: /darvip [id] [Nivel]"); return 1; } new para1; new level; para1 = ReturnUser(tmp); tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USE: /darvip [id] [Nivel]"); return 1; } level = strval(tmp); GetPlayerName(para1, giveplayer, sizeof(giveplayer)); GetPlayerName(playerid, sendername, sizeof(sendername)); if(IsPlayerConnected(para1)) { if(para1 != INVALID_PLAYER_ID) { format(string, sizeof string, "Vocк deu VIP Nнvel %d para %s", level, giveplayer); SendClientMessage(playerid, COLOR_LIGHTBLUE, string); format(string, sizeof string, "Vocк ganhou VIP Nнvel %d do admin %s", level, sendername); SendClientMessage(para1, COLOR_LIGHTBLUE, string); getdate(year, month, day); gettime(hour,minute,second); PlayerInfo[para1][pVIP] = level; new var03 = 0; for(new i = 0; i < sizeof(VipInfo); i++) { if(strcmp(giveplayer,VipInfo[i][vNick],true)==0) { VipInfo[i][vTipo] = level; SaveVip(); var03 = 1; break; } } if(var03 == 0) { for(new i = 0; i < sizeof(VipInfo); i++) { if(strcmp("Ninguem",VipInfo[i][vNick],true)==0) { strmid(VipInfo[i][vNick], giveplayer, 0, strlen(giveplayer), 255); VipInfo[i][vTipo] = level; SaveVip(); break; } } } } } } return 1; } if (strcmp("/limparvip", cmdtext, true, 10) == 0) { if(PlayerInfo[playerid][pAdmin] < 3000) { SendClientMessage(playerid, COLOR_GRAD2, "Vocк nгo estб autorizado a usar este comando!"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USE: /limparvip [Vaga]"); return 1; } new Vagao = strval(tmp); if(Vagao < 0 || Vagao > 50) { SendClientMessage(playerid, COLOR_GREY, "Vaga mнnima 0 mбximo 50!"); return 1; } if(IsPlayerOnline(VipInfo[Vagao][vNick])) { new id=GetPlayerID(VipInfo[Vagao][vNick]); PlayerInfo[id][pVIP] = 0; SendClientMessage(id, COLOR_YELLOW, "Vocк perdeu seu VIP, renove-o e receba seus benefнcios de volta"); } getdate(year, month, day); gettime(hour,minute,second); strmid(VipInfo[Vagao][vNick], "Ninguem", 0, strlen("Ninguem"), 255); VipInfo[Vagao][vTipo] = 0; SaveVip(); format(string, sizeof(string), "Vocк Limpou A Vaga VIP Nє %d",Vagao); SendClientMessage(playerid, COLOR_LIGHTBLUE, string); return 1; }