02.04.2016, 16:27
PHP код:
new Strcat[1000];
format(gstring, sizeof(gstring),"** RG de %s **\n",PlayerName(targetid));
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Nнvel:{D5DFED}[%d]\n{4B8DE3}Idade:{D5DFED}[%d]\n{4B8DE3}Sexo:{D5DFED}[%s]\n{4B8DE3}Dinheiro:{D5DFED}[R$%d]\n{4B8DE3}Banco:{D5DFED}[R$%d]\n{4B8DE3}Ouros:{D5DFED}[%d]\n{4B8DE3}Cash:{D5DFED}[%d]\n{4B8DE3}Celular:{D5DFED}[%d]\n", level,PlayerInfo[targetid][pAge],atext, cash, Conta,PlayerInfo[targetid][pOuros],Casher, pnumber);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Conta:{D5DFED}[%s]\n{4B8DE3}Casado Com:{D5DFED}[%s]\n{4B8DE3}Horas Jogadas:{D5DFED}[%d]\n{4B8DE3}Emprego:{D5DFED}[%s]\n", drank,married,PlayerInfo[targetid][pConnectTime],jtext);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Crimes Cometidos:{D5DFED}[%d]\n{4B8DE3}Matou:{D5DFED}[%d]\n{4B8DE3}Morreu:{D5DFED}[%d]\n{4B8DE3}Loteria:{D5DFED}[%d]\n{4B8DE3}Cidade:{D5DFED}[Los Santos]\n{4B8DE3}Vida:{D5DFED}[%.1f]\n", crimes,kills,deaths,lotto, shealth);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Prуximo Nнvel:{D5DFED}[R$%d]\n{4B8DE3}Respeito:{D5DFED}[%d/%d]\n{4B8DE3}Doenзas:{D5DFED}[%s]\n{4B8DE3}Nнvel de Procura:{D5DFED}[%d]\n{4B8DE3}Tempo Concessionбria {D5DFED}[%d/20]\n",costlevel,exp,expquantidade,dtext, Wanted, choras);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Materiais:{D5DFED}[%d]\n{4B8DE3}Safe Materiais:{D5DFED}[%d]\n{4B8DE3}Organizaзгo:{D5DFED}[%s]\n{4B8DE3}Cargo:{D5DFED}[%s]\n{4B8DE3}Email:{D5DFED}[%s]\n",mats,smats,NomeORG(targetid),GetPlayerCargo(targetid), PlayerInfo[targetid][pEmail]);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Sementes:{D5DFED}[%d]\n{4B8DE3}Maconha:{D5DFED}[%d]\n{4B8DE3}Cocaina:{D5DFED}[%d]\n{4B8DE3}Crack:{D5DFED}[%d]\n{4B8DE3}Safe Maconha:{D5DFED}[%d]\n{4B8DE3}Safe Cocaina:{D5DFED}[%d]\n{4B8DE3}Safe Crack:{D5DFED}[%d]\n",PlayerInfo[targetid][pSementes],Drogas,Drogas2,Drogas3,SafeDrogas,SafeDrogas2,SafeDrogas3);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Explosivos:{D5DFED}[%d]\n{4B8DE3}Cigarros:{D5DFED}[%d]\n{4B8DE3}Galгo de Gasolina:{D5DFED}[%s]\n{4B8DE3}Isqueiro:{D5DFED}[%s]\n{4B8DE3}Patins:{D5DFED}[%s]\n{4B8DE3}Rбdio:{D5DFED}[%s]\n",PlayerInfo[targetid][pExplosivos], PlayerInfo[targetid][pCigarros], galao, Isqueiro, ppatins, radiop);
strcat(Strcat, gstring);
if(PlayerInfo[playerid][pAdmin] >= 1 || PlayerInfo[playerid][pAdminTemp] >= 1)
{
format(gstring, sizeof(gstring), "{4B8DE3}Chave Casa: [%d]\n{4B8DE3}Chave Empresa:{D5DFED} [%d]\n{4B8DE3}Chave Fazenda: {D5DFED}[%d]\n{4B8DE3}Chave do Carro: {D5DFED}[%d]\n{4B8DE3}Interior:{D5DFED}[%d]\n{4B8DE3}Local:{D5DFED}[%d]\n", housekey,bizkey,fazkey,HireCar[targetid],intir,local);
strcat(Strcat, gstring);
format(gstring, sizeof(gstring), "{4B8DE3}Veнculo VIP(1):{D5DFED} [%d]\n{4B8DE3}Veнculo VIP(2):{D5DFED} [%d]\n{4B8DE3}Veнculo VIP(3):{D5DFED} [%d]\n{4B8DE3}Veнculo VIP(4):{D5DFED} [%d]\n{4B8DE3}Veнculo VIP(5):{D5DFED} [%d]\n", carro,carro2,carro3,carro4,carro5);
strcat(Strcat, gstring);
}
ShowPlayerDialog(playerid, 12345, DIALOG_STYLE_MSGBOX, "PAINEL RG", Strcat, "OK","");
}
}