warning 213: 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: warning 213: tag mismatch (
/showthread.php?tid=652312)
warning 213: tag mismatch -
Pachino - 07.04.2018
I have this warning, I dont know how to solve this.
Line code:
Код:
if(IsPlayerInRangeOfPoint( playerid, 10, Houses[gouse][hInteriorX], Houses[gouse][hInteriorY], Houses[gouse][hInteriorZ] || WatchingTV[playerid] != 0))
Re: warning 213: tag mismatch -
SingleFFG - 07.04.2018
PHP код:
if(IsPlayerInRangeOfPoint( playerid, 10, Houses[gouse][hInteriorX], Houses[gouse][hInteriorY], Houses[gouse][hInteriorZ] || WatchingTV[playerid] != 0)
Re: warning 213: tag mismatch -
Mugala - 07.04.2018
close this function (IsPlayerInRangeOfPoint)
IsPlayerInRangeOfPoint(playerid, 10, Houses[gouse][hInteriorX], Houses[gouse][hInteriorY], Houses[gouse][hInteriorZ] || WatchingTV[playerid]
)
You have missed this -
)
so your code will be - if(IsPlayerInRangeOfPoint(playerid, 10, Houses[gouse][hInteriorX], Houses[gouse][hInteriorY], Houses[gouse][hInteriorZ]
) || WatchingTV[playerid] != 0
)