SA-MP Forums Archive
undefined symbol "cache_get_row_int" - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: undefined symbol "cache_get_row_int" (/showthread.php?tid=660752)



undefined symbol "cache_get_row_int" - Alpay0098 - 12.11.2018

Hi ppl,
sry to reopen another continuous problem xd
"undefined symbol "cache_get_row_int""
I don't understand what to do, some people say your a_mysql is out of date some say it's too updated, some say use cache_get_field_row_int instead. anyone please? reputation guaranteed


Re: undefined symbol "cache_get_row_int" - v1k1nG - 12.11.2018

Quote:
Originally Posted by Alpay0098
Посмотреть сообщение
Hi ppl,
some people say your a_mysql is out of date some say it's too updated
How can something be too much updated to be faulty?


Anyways, code is needed


Re: undefined symbol "cache_get_row_int" - RoboN1X - 12.11.2018

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:
Код:
variable = cache_get_row_int(x, y);
it becomes this in R40+:
Код:
cache_get_value_index_int(x, y, variable);
Here is useful tutorial for that:
https://sampforum.blast.hk/showthread.php?tid=616103