18.03.2017, 15:31
(
Последний раз редактировалось Sibuscus; 18.03.2017 в 18:58.
)
I followed this tutorial ->https://sampforum.blast.hk/showthread.php?tid=574714, as it seemed most recent and when I compile I get there errors:
I HAVE THE LATEST mysql plugins. I have the R41-2 version, this is my server.cfg plugins line:
My includes:
THE THINGS ABOVE IN GREEN WERE FIXED. I have new warnings:
I get this:
here
Код:
gamemodes\test.pwn(367) : error 017: undefined symbol "cache_get_data" gamemodes\test.pwn(370) : error 017: undefined symbol "cache_get_field_content" gamemodes\test.pwn(371) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(366) : warning 203: symbol is never used: "fields" gamemodes\test.pwn(384) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(385) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(386) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(387) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(388) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(390) : error 017: undefined symbol "cache_get_field_content_float" gamemodes\test.pwn(391) : error 017: undefined symbol "cache_get_field_content_float" gamemodes\test.pwn(392) : error 017: undefined symbol "cache_get_field_content_float" gamemodes\test.pwn(393) : error 017: undefined symbol "cache_get_field_content_float" gamemodes\test.pwn(395) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(396) : error 017: undefined symbol "cache_get_field_content_int" gamemodes\test.pwn(576) : error 017: undefined symbol "LOG_ALL" gamemodes\test.pwn(577) : warning 213: tag mismatch gamemodes\test.pwn(602) : warning 225: unreachable code gamemodes\test.pwn(847) : warning 213: tag mismatch gamemodes\test.pwn(848) : warning 213: tag mismatch gamemodes\test.pwn(870) : warning 213: tag mismatch gamemodes\test.pwn(870) : error 017: undefined symbol "Player" gamemodes\test.pwn(870) : warning 215: expression has no effect gamemodes\test.pwn(870) : error 001: expected token: ";", but found "]" gamemodes\test.pwn(870) : error 029: invalid expression, assumed zero gamemodes\test.pwn(870) : fatal error 107: too many error messages on one line
Код:
plugins mysql nativechecker sscanf Whirlpool streamer
Код:
#include <a_samp> #include <a_mysql> #include <nex-ac> #include <foreach> #include <streamer> #include <YSI\y_ini> #include <zcmd> #include <sscanf2>
THE THINGS ABOVE IN GREEN WERE FIXED. I have new warnings:
I get this:
Код:
(578) : warning 213: tag mismatch (847) : warning 213: tag mismatch (848) : warning 213: tag mismatch
Код:
577 mysql_log(ALL); 578 g_Sql = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DATABASE); 847 mysql_format(g_Sql, query, sizeof(query), "SELECT `Password`, `ID` FROM `accounts` WHERE `Name` = '%e' LIMIT 1", PlayerName); 848 mysql_tquery(g_Sql, query, "OnAccountCheck", "i", playerid);