Variable String 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: Variable String Error (
/showthread.php?tid=624159)
Variable String Error -
NeroX98 - 11.12.2016
I have this:
Код:
enum IgracPodatoci
{
Lozinka[512]
}
new iData[MAX_PLAYERS][IgracPodatoci];
When i try to change that value to something:
Код:
iData[playerid][Lozinka] = "asd";
I get this error:
Код:
error 047: array sizes do not match, or destination array is too small
Respuesta: Variable String Error -
GoldenLion - 11.12.2016
You must use format or strcat/strcpy.