SA-MP Forums Archive
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=656004)



warning 213: tag mismatch - SlayerHodge - 04.07.2018

Problem: Okay i have been looking through threads trying to understand what is happening here that is incorrect, For future users who may experience the same issue please Provide a brief explaination on the way to fix similar issues/warnings.

Code:
Код:
new joinedtable[MAX_PLAYERS]; 
line 11204: if(joinedtable[playerid] == false) return SendClientError(playerid, "You Haven't Joined a Dealer's Table!");
warning 213: tag mismatch


Re: warning 213: tag mismatch - DelK - 05.07.2018

Код:
 new bool:joinedtable[MAX_PLAYERS];



Re: warning 213: tag mismatch - SlayerHodge - 05.07.2018

MoveObject(Tolls[g][gID],Tolls[g][openX],Tolls[g][openY],Tolls[g][openZ], 5.0); same warnning

enum _tolls
{
tID,
tModelID,
tOpen,
Float:closeX, Float:closeY, Float:closeZ, Float: rotX, Float: rotY, Float: rotZ,
FloatpenX, FloatpenY, FloatpenZ, Float: openrotX, Float: openrotY, Float: openrotZ, //134.8956, 1941.5072, 21.5632
}
new Tolls[][_tolls] =
{ 0, 968,0, -92.5776, -912.1743, 18.2484, 0.0000, -90.0000, -208.0000, -92.5776, -912.1743, 18.2484, 0.0000, 0.0000, -208.0000}


Re: warning 213: tag mismatch - SlayerHodge - 05.07.2018

Quote:
Originally Posted by DelK
Посмотреть сообщение
Код:
 new bool:joinedtable[MAX_PLAYERS];
works thanks, could you assist with the above? i dont understand this warning.