18.07.2015, 17:01
Hello everyone, I am experiencing a problem with the cache_get_row_int function within the MySQL R39-3 plugin..
I am trying to get a piece of data from my database that will be set to either 0 or 1, So I am using a bool variable for it.. however when i try to set the bool within enum, it comes back with tag mismatch, what is wrong with it?
I am trying to get a piece of data from my database that will be set to either 0 or 1, So I am using a bool variable for it.. however when i try to set the bool within enum, it comes back with tag mismatch, what is wrong with it?
Код:
../Modules/SQL_Functions.pwn(103) : warning 213: tag mismatch
Код:
enum Account_Data { bool:Tutorial } new AccountData[MAX_PLAYERS][Account_Data];
Код:
AccountData[playerid][Tutorial] = cache_get_row_int(0, 6); //Error on this line.