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)
+--- Thread: tag mismatch (
/showthread.php?tid=587625)
tag mismatch -
JoshNudock - 01.09.2015
Hello, can someone help me? I can not resolve this error, is this problem?
Код HTML:
C:\Users\2\Desktop\Nova pasta\gamemode\gamemodes\2.pwn(48992) : warning 213: tag mismatch
C:\Users\2\Desktop\Nova pasta\gamemode\gamemodes\2.pwn(48992) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Warnings.
PHP код:
if (IsPaused(playerid) && GetPausedTime(playerid) >= 5) //warning 213 "GetPausedTime(playerid) >= 5"
Re: tag mismatch -
MarvinPWN - 01.09.2015
PHP код:
if (IsPaused(playerid) && GetPausedTime(playerid) >= 5)
to
PHP код:
if (IsPaused(playerid) == true && GetPausedTime(playerid) >= 5)