new coordsstring[500];
format(coordsstring, sizeof(coordsstring), " %s\n Nivel: [ %d ] Sexo: [ %s ] Edad: [ %d ] Dinero: [ $%d ] Banco: [ $%d ] Telefono: [ %d ] Premium: [ %s ]\n Horas Jugadas: [ %d ] Tiempo Arrestado: [ %d ] Trabajo: [ %s ] Respeto: [ %d/%d ]\n Drogas: [ %d ] Materiales: [ %d ] Equipo: [ %s ] Faccion: [ %s ] Rango: [ %s ]\n Casa: [ %d ] Negocio: [ %d ] Vehiculo1: [ %d ] Alquiler: [ %d ] Interior: [ %d ] MundoVirtual: [ %d ] Local: [ %d ] ",name,level,atext,age,cash,account,pnumber,drank,ptime,arrests,jtext,exp,expamount,drugs,mats,ttext,ftext,rtext,housekey,bizkey,carkey,HireCar[targetid],intir,virworld,local);
ShowPlayerDialog(playerid,DialogStats,DIALOG_STYLE_MSGBOX,"Tus Stats",coordsstring,"Aceptar","");
esta muy larga la linea,
1. has el format de una parte del contenido luego usa strcat 2.- has la segunda parte del contenido luego usa de nuevo strcat asi sucesivamente EDIT: si quieres ejemplo dime |
new coordsstring[500],iString[128];
format(iString,128, " %s\n Nivel: [ %d ] Sexo: [ %s ] Edad: [ %d ] Dinero: [ %d ]\n",name,level,atext,age,cash);
strcat(coordsstring,iString);
format(iString,128,"Banco: [ $%d ] Telefono: [ %d ] Premium: [ %s ]",saldoenbanco,telefono,premium);
strcat(coordsstring,iString);
ShowPlayerDialog(playerid,DialogStats,DIALOG_STYLE_MSGBOX,"Tus Stats",coordsstring,"Aceptar","");
format(coordsstring, sizeof(coordsstring), " %s\n Nivel: [ %d ] Sexo: [ %s ] Edad: [ %d ] Dinero: [ $%d ] Banco: [ $%d ] Telefono: [ %d ] Premium: [ %s ]\n Horas Jugadas: [ %d ] Tiempo Arrestado: [ %d ] Trabajo: [ %s ] Respeto: [ %d/%d ]\n"
" Drogas: [ %d ] Materiales: [ %d ] Equipo: [ %s ] Faccion: [ %s ] Rango: [ %s ]\n Casa: [ %d ] Negocio: [ %d ] Vehiculo1: [ %d ] Alquiler: [ %d ] Interior: [ %d ] MundoVirtual: [ %d ] Local: [ %d ] ",
name,level,atext,age,cash,account,pnumber,drank,ptime,arrests,jtext,exp,expamount,drugs,mats,ttext,ftext,rtext,housekey,bizkey,carkey,HireCar[targetid],intir,virworld,local);
pawn Код:
|