12.06.2014, 21:14
Basically, I've attempted re-compiling my Server with updated plugins and it's giving me 2 errors and around 150 warnings. (( I am not worried about the warnings, I am worried about the Errors )) Below are the errors and then underneath that the lines.
Код:
C:\Users\USER\Desktop\California Gaming\pawno\WCRP.pwn(356) : error 017: undefined symbol "enable_mutex" C:\Users\USER\Desktop\California Gaming\pawno\WCRP.pwn(422) : error 017: undefined symbol "mysql_ping"
Код:
348 - 358 { SetGameModeText(MODE_NAME); SendRconCommand("mapname San Andreas"); #if debug mysql_debug(1); #else mysql_debug(0); #endif enable_mutex(false); g_mysql_handle = mysql_connect(MYSQL_HOST,MYSQL_USER,MYSQL_DATABASE,MYSQL_PASSWORD); Command_SetDeniedReturn( false ); 419 - 425 } if(g_mysql_handle) mysql_close(g_mysql_handle); while(mysql_ping(g_mysql_handle) == 1) { #emit NOP } return 1;