SA-MP Forums Archive
Tag mismatch 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: Tag mismatch error (/showthread.php?tid=328298)



Tag mismatch error - iStrow - 24.03.2012

i have strange tag mismatch error i don't know what does it mean

Код:
C:\Documents and Settings\iStrow\Desktop\iStrow RolePlay\gamemodes\iSRP.pwn(427) : warning 213: tag mismatch
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
here is the part
Код:
 format(infotekst, sizeof(infotekst), "{FFFFFF}Hello!");
            KucaInfo[idx][kID] = CreateDynamic3DTextLabel(infotekst,0x008080FF,KucaInfo[idx][kUlazX],KucaInfo[idx][kUlazY],KucaInfo[idx][kUlazZ]+1,10.0); // this is line that screws me up
Just to add that text is showing in game!

but text can be seen trought the wall! can i fix that too?


Re: Tag mismatch error - IstuntmanI - 24.03.2012

I think you have kID in enum without Text3D: in front of it, change in enum
Код:
    kID,
with
Код:
    Text3D:kID,