Array sizes error - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Array sizes error (
/showthread.php?tid=661715)
Array sizes error -
GameOvr - 12.12.2018
Код:
CKS.pwn(3190) : error 047: array sizes do not match, or destination array is too small
CKS.pwn(3208) : error 047: array sizes do not match, or destination array is too small
IDK why that error occurs and here.. those lines.
pawn Код:
tempgname[playerid] = inputtext; //CKS.pwn(3190)
tempgtag[playerid] = inputtext; //CKS.pwn(3208)
//here the vars
new tempgname[MAX_PLAYERS][30];
new tempgtag[MAX_PLAYERS][6];
plz help me
Re: Array sizes error -
Kaliber - 12.12.2018
Do it like this:
PHP код:
format(tempgname[playerid],30, inputtext);
format(tempgtag[playerid],6, inputtext);
Re: Array sizes error -
GameOvr - 12.12.2018
Thank you bro it worked

+REP