12.11.2018, 16:50
cache_get_row_int is a R33-R39 function, for R40+ change it to cache_get_value_index_int
So if your code is this in R33-R39:
it becomes this in R40+:
Here is useful tutorial for that:
https://sampforum.blast.hk/showthread.php?tid=616103
So if your code is this in R33-R39:
Код:
variable = cache_get_row_int(x, y);
Код:
cache_get_value_index_int(x, y, variable);
https://sampforum.blast.hk/showthread.php?tid=616103

