SA-MP Forums Archive
Little help here? ;) - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Little help here? ;) (/showthread.php?tid=104316)



Little help here? ;) - Henry11200 - 23.10.2009

So i have this:
Код:
new Lol[MAX_PLAYERS][200];
and this:
Код:
for(new i=0; i<201; i++)
{
Lol[playerid][i] = CreatePlayer3DTextLabel(playerid,"[!]",COLOR_RED,dx,dy,dz,50.0);
}
And error is like this:
Код:
D:\SA-Serv 3\gamemodes\lol.pwn(3606) : warning 213: tag mismatch
So what's the problem?


Re: Little help here? ;) - Malice - 23.10.2009

Код:
new PlayerText3D:Lol[MAX_PLAYERS][200];
It is just a warning you are getting because that function is tagged. By the way, that variable is huge.



Re: Little help here? ;) - Henry11200 - 23.10.2009

Tyvm. and that variable is actually smaller, 200 is just a random number.