09.12.2016, 16:12
Quote:
|
Is it just me, or i have to update a thousand lines now and create over thousand variables just to make R40+ work.
|
Quote:
|
It's certainly not just you, I mean; this is harder than I thought it'd be, I do not comprehend somethings whilst I'm literally doing the same as described in the tutorial. Unless someone can help and/or convince me not to downgrade again to R39, I'm going to do it.
|
About the "over thousands variables", it's not like you cannot create a function similar to cache_num_rows and keep it the same style:
pawn Code:
cache_get_row_int(row_idx, column_idx)
{
new retrieved_number;
cache_get_value_index_int(row_idx, column_idx, retrieved_number);
return retrieved_number;
}


