[Pawn] [HELP!] Filescript giving me errors for a week - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3) --- Forum: Pawn Scripting (https://forum.open.mp/forumdisplay.php?fid=10) --- Thread: [Pawn] [HELP!] Filescript giving me errors for a week (/showthread.php?tid=1633) |
[HELP!] Filescript giving me errors for a week - MiniKLK - 2021-02-02 Hello, everyone, i finally compiled this filescript i take from another gm, but it still not working on the server and this appears on the console, i don't know if someone of you can help me with this error, i tryed updating my mysql and a lot of libraryes but nothing, thanks you so much, really!. This is my discord if you can or want to help me: ??#3040 If you can't add me, i'll try to add you, just let me know your Discord tag. Bless. RE: [HELP!] Filescript giving me errors for a week - Nestea - 2021-02-03 Uhmm, I recommend you to contact any mysql database user maybe they can help you about this problem. RE: [HELP!] Filescript giving me errors for a week - Kwarde - 2021-02-10 Run time error 19 (file or function not found) means a function used in the mode (more specifically a native function: a function declared with "native", eg. "native print(const string[])") wasn't found. Such functions should exist in either the standard samp runtime or a plugin. Make sure that the MySQL plugin is loaded. If it is, you are using an incorrect version. For example, if you are using the latest version (R41-4) it would be incompatible with old scripts. cache_get_field_content (one of the functions not found according to your log) for example is a function from before version R40: https://github.com/pBlueG/SA-MP-MySQL/releases/tag/R40 Quote:renamed cache_get_field_content to cache_get_value_name (_int and _float likewise) Check the changelogs here and find out what function should be what and change this in your copied script. |