Tag Mismatch
#1

Hey Guys!

I have a dcmd command which shows/hides a textdraw called Infobox, and the compiler writes 4x Tag Mismatches.

The warnings:
Код:
C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(976) : warning 213: tag mismatch
C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(976) : warning 213: tag mismatch
C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(977) : warning 213: tag mismatch
C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(983) : warning 213: tag mismatch
And here is the code:
pawn Код:
dcmd_infodoboz(playerid, params[])
{
    new
        swtch[10];
    if(sscanf(params, "s", swtch)) return SendClientMessage(playerid, colorFAIL, "Hasznбlat: /infodoboz <be/ki>");
    if(!strcmp(swtch, "be", 1) || !strcmp(swtch, "ki", 1)) return SendClientMessage(playerid, colorFAIL, "Hasznбlat: /infodoboz <be/ki>");//976
    if(!strcmp(swtch, "be", 1))//977
    {
        TextDrawShowForPlayer(playerid, Infobox[0]);
        TextDrawShowForPlayer(playerid, Infobox[1]);
        SendClientMessage(playerid, colorSUCCESS, "Infodoboz bekapcsolva!");
    }
    if(!strcmp(swtch, "ki", 1))//983
    {
        TextDrawHideForPlayer(playerid, Infobox[0]);
        TextDrawHideForPlayer(playerid, Infobox[1]);
        SendClientMessage(playerid, colorSUCCESS, "Infodoboz kikapcsolva!");
    }
    return 1;
}
Please help to make it work

Thanks
Nonameman
Reply


Messages In This Thread
Tag Mismatch - by Nonameman - 01.08.2010, 07:10
Re: Tag Mismatch - by bigcomfycouch - 01.08.2010, 07:34
Re: Tag Mismatch - by Nonameman - 01.08.2010, 07:50
Re: Tag Mismatch - by Simon - 01.08.2010, 08:01
Re: Tag Mismatch - by Nonameman - 01.08.2010, 08:37

Forum Jump:


Users browsing this thread: 1 Guest(s)