08.12.2014, 18:03
@Dusk : What if the "i" index is pointing on a Float: tagged variable in the enum ? And what about booleans, or about arrays ? (In both the database AND the server variables)
My way to fix it was to check what tag does the variable has using tagof and then using the good function (or, about booleans, just adding a bool: before the cache_get_row_int).
To fix it for arrays, I checked out whether the variable[1] index existed. If so, then that was a string. Else, then it wasn't a string (by saying "string" I also refer to arrays).
My way to fix it was to check what tag does the variable has using tagof and then using the good function (or, about booleans, just adding a bool: before the cache_get_row_int).
To fix it for arrays, I checked out whether the variable[1] index existed. If so, then that was a string. Else, then it wasn't a string (by saying "string" I also refer to arrays).