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



Tag mismatch HELP! please? - BigAl - 18.11.2010

I get a tag mismatch with this....

TextDrawShowForPlayer(playerid, Private);
TextDrawShowForPlayer(playerid, PrivateFirstClass);
TextDrawShowForPlayer(playerid, Cernal);
TextDrawShowForPlayer(playerid, CernalFirstClass);
TextDrawShowForPlayer(playerid, Corpral);
TextDrawShowForPlayer(playerid, CorpralFirstClass);

if(gPlayerLogged[playerid] == 0) {
TextDrawHideForPlayer(playerid, Private);
TextDrawHideForPlayer(playerid, PrivateFirstClass);
TextDrawHideForPlayer(playerid, Cernal);
TextDrawHideForPlayer(playerid, CernalFirstClass);
TextDrawHideForPlayer(playerid, Corpral);
TextDrawHideForPlayer(playerid, CorpralFirstClass);
}
return 1;
}

Warnings:

C:\Users\Ross\Desktop\G2x andreas\gamemodes\UltimatePwnage.pwn(189) : warning 213: tag mismatch
C:\Users\Ross\Desktop\G2x andreas\gamemodes\UltimatePwnage.pwn(190) : warning 213: tag mismatch
C:\Users\Ross\Desktop\G2x andreas\gamemodes\UltimatePwnage.pwn(197) : warning 213: tag mismatch
C:\Users\Ross\Desktop\G2x andreas\gamemodes\UltimatePwnage.pwn(19 : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


4 Warnings.


Re: Tag mismatch HELP! please? - BigAl - 18.11.2010

BUMP: I need bad help please?


Re: Tag mismatch HELP! please? - MadeMan - 18.11.2010

Which lines?


Re: Tag mismatch HELP! please? - [NoV]LaZ - 18.11.2010

Text draws use the Text: tag to define a variable.
pawn Код:
new Text: Private;



Re: Tag mismatch HELP! please? - BigAl - 18.11.2010

all of them :/

Well TextDrawShowForPlayer and TextDrawHideForPlayer All of them


Re: Tag mismatch HELP! please? - MadeMan - 18.11.2010

Change this

pawn Код:
new Private;
new PrivateFirstClass;
to

pawn Код:
new Text:Private;
new Text:PrivateFirstClass;



Re: Tag mismatch HELP! please? - BigAl - 18.11.2010

i have new Text:Private ETC but it still comes up with this :/


Re: Tag mismatch HELP! please? - sansko - 18.11.2010

2 things, post code and use the [pawn] things


Re: Tag mismatch HELP! please? - dark_clown - 18.11.2010

Quote:
Originally Posted by sansko
Посмотреть сообщение
2 things, post code and use the [pawn] things
with yah buddie