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



Tag mismatch... - Miguel - 25.03.2010

pawn Код:
stock TextDrawShowForPlayerEx(playerid, Text:textdrawid, time)
{
    if(playerid < 0)
    {
        foreach(Player, i)
        {
            TextDrawShowForPlayer(i, textdrawid);
            SetTimerEx("HideTextDrawEx", time, false, "dd", i, textdrawid); // 2976
        }
    }
    else
    {
        TextDrawShowForPlayer(playerid, textdrawid);
        SetTimerEx("HideTextDrawEx", time, false, "dd", playerid, textdrawid); // 2982
    }
    return 1;
}
Код:
***.pwn(2976) : warning 213: tag mismatch
***.pwn(2982) : warning 213: tag mismatch
I have no idea of what's wrong but I think it's something easy... could you help me?


Re: Tag mismatch... - Kyosaur - 25.03.2010

Edit. Nvm, sorry.


Re: Tag mismatch... - Jefff - 25.03.2010

Код:
i,_:textdrawid);