[Pawn] (4770) : warning 213: tag mismatch - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] (4770) : warning 213: tag mismatch (/showthread.php?tid=1441) |
(4770) : warning 213: tag mismatch - Stones - 2020-12-21 I'm finally returning to SAMP again after so many years, i'm just learning to code once again, not i'm getting a tag mismatch for this VIP stuff. This is part of something that is displayed in the stats command, this is the command i'm getting the warning from. PHP Code: SendClientMessage(playerid, COLOR_GRAY, str); This is the SQL data saved upon registration. PHP Code: mysql_format(SQL_CONNECTION, query, sizeof(query), "UPDATE Accounts SET Admin = %d, VIP = %d WHERE SQLID = %d LIMIT 1", And these are the ranks specifically used in as seen above PHP Code: VIPRANKS[Character[playerid][pVIP]][0] PHP Code: new VIPRANKS[][] = Please forgive me if i'm missing something obvious :) RE: (4770) : warning 213: tag mismatch - Stones - 2020-12-21 Yep it was me being retarded. changed PHP Code: VIPRANKS[Character[playerid][pVIP]][0] to? PHP Code: VIPRANKS[Account[playerid][pVIP]][0] RE: (4770) : warning 213: tag mismatch - Pinch - 2020-12-21 Glad you fixed it, those are the worst type of annoying errors - when you're sure that everything's fine and not seeing the obvious mistake(s), simply PAIN ?? RE: (4770) : warning 213: tag mismatch - Stones - 2020-12-21 (2020-12-21, 06:43 AM)Pinch Wrote: Glad you fixed it, those are the worst type of annoying errors - when you're sure that everything's fine and not seeing the obvious mistake(s), simply PAIN ?? I haven't done anything since my samp Dayz ownership almost 3 years ago??? it's slowly coming back to me though haha. |