gamemodes\dl05.pwn(14727) : error 021: symbol already defined: "coordsstring"
gamemodes\dl05.pwn(14736) : error 032: array index out of bounds (variable "coordsstring")
gamemodes\dl05.pwn(14738) : error 035: argument type mismatch (argument 3)
Zeilen:
new coordsstring[256];
new coordsstring[7][256],string2[256];
format(coordsstring[0], sizeof(coordsstring),"*** Deine Stats ***");
format(coordsstring[1], sizeof(coordsstring), "Level:[%d] Geschlecht:[%s] Alter:[%d] Herkunft:[%s] Spawnenergie:[%.1f] Geld:[$%d] Bank:[$%d] Ph:[%d]", level,atext,age,otext,shealth+50, cash, account, pnumber);
format(coordsstring[2], sizeof(coordsstring), "Premium Rang:[%s] Verheiratet:[%s] Spielzeit:[%d] LottoNr:[%d] Job:[%s]", drank,married,ptime,lotto,jtext);
format(coordsstring[3], sizeof(coordsstring), "Fische:[%d] Gröster Fisch:[%d] Verbrechen:[%d] Gefängniszeit:[%d] Gesucht:[%d]", fishes,bigfish,crimes,arrests,warrests );
format(coordsstring[4], sizeof(coordsstring), "Getöttet:[%d] Tode:[%d] Nächstes Level:[$%d] Respekt:[%d/%d] WantedLevel:[%d] Familie:[%s]",kills,deaths,costlevel,exp,expamount,wanted,f2text);
format(coordsstring[5], sizeof(coordsstring), "Drogen:[%d] Materialien:[%d] Team:[%s] Krankheit:[%s] Organisation:[%s] Rang:[%s]",drugs,mats,ttext,dtext,ftext,rtext);
format(coordsstring[6], sizeof(coordsstring), "Spielminuten seit Login: [%d] Spielminuten Insgesamt: [%d]",PlayerInfo[targetid][pMinutesSinceLogin],PlayerInfo[targetid][pGesamtMinutes]);
format(coordsstring[7], sizeof(coordsstring), "Hausnr.:[%d] Geschäft: [%d]", housekey,bizkey);
format(string2,sizeof(string2),"%s\n%s\n%s",coordsstring[0],coordsstring[1],coordsstring[2],coordsstring[3],coordsstring[4],coordsstring[5],coordsstring[6]);
ShowPlayerDialog(playerid,DIALOG_STATS,"Stats",string2,"Ok","Schließen");