SA-MP Forums Archive
Warning 213: tag mismatch need help! - 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: Warning 213: tag mismatch need help! (/showthread.php?tid=476371)



Warning 213: tag mismatch need help! - DheWardhana - 17.11.2013

need help for fix my "Warning 213: tag mismatch" anywrong with my code? please help

Warning:
Quote:

D:\Work\DONE TO UPLOAD~ NOEDIT!!\gamemodes\stpn.pwn(1369) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Warning.

Code:
PHP код:
public healthFade(playerid)
{
    new 
Float:Health;
    
GetPlayerHealth(playeridHealth);
    if (
Health <= 20)
    {
     
FadeColorForPlayer(playerid,255,0,0,0,255,0,0,255,25,1000); //EROR LINE (1369)
     
healTimer[playerid] = SetTimerEx("healUser",healthGain*1000,true,"i",playerid);
    }
    if (
Health 20)
    {
     
KillTimer(fadeTimer[playerid]);
     
KillTimer(healTimer[playerid] );
    }
    return 
1;

please help


Re: Warning 213: tag mismatch need help! - [D]ry[D]esert - 17.11.2013

Show us your FadeColorForPlayer function.