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.
SendClientMessage(playerid, COLOR_GRAY, str);
format(str, sizeof(str), "> Age: | Money: | VIP: ", Character, Character, VIPRANKS[Character]);
This is the SQL data saved upon registration.
mysql_format(SQL_CONNECTION, query, sizeof(query), "UPDATE Accounts SET Admin = %d, VIP = %d WHERE SQLID = %d LIMIT 1",
Account,
Account,
Account);
And these are the ranks specifically used in as seen above
VIPRANKS[Character]
new VIPRANKS[][] =
{
"None",
"Bronze",
"Silver",
"Gold",
"Lifetime"
};
Please forgive me if i'm missing something obvious :)