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,
Float

penX, Float

penY, Float

penZ, 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.