|
C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(41) : error 017: undefined symbol "mysql_store_result" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(43) : error 017: undefined symbol "mysql_num_rows" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(49) : error 017: undefined symbol "mysql_free_result" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(77) : error 017: undefined symbol "mysql_store_result" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(8 : error 017: undefined symbol "mysql_store_result"C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(90) : error 017: undefined symbol "mysql_num_rows" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(100) : error 017: undefined symbol "mysql_num_rows" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(104) : error 017: undefined symbol "mysql_free_result" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(12 : error 017: undefined symbol "mysql_store_result"C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(130) : error 017: undefined symbol "mysql_fetch_row_format" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(131) : error 017: undefined symbol "mysql_fetch_field_row" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(132) : error 017: undefined symbol "mysql_fetch_field_row" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(134) : error 017: undefined symbol "mysql_free_result" |
C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(41) : error 017: undefined symbol "mysql_query" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(77) : error 017: undefined symbol "mysql_query" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(88) : error 017: undefined symbol "mysql_query" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(119) : error 017: undefined symbol "mysql_query" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(127) : error 017: undefined symbol "mysql_query" C:\Users\Vinicius\Desktop\samp037_svr_R2-1-1_win32\gamemodes\GM.pwn(30) : warning 204: symbol is assigned a value that is never used: "mysql"
mysql_function_query(handle,"SELECT id FROM players WHERE name='Arakuta'",true,"Response_GetPlayerID","d",playerid);
forward Response_GetPlayerID(playerid);
public Response_GetPlayerID(playerid)
{
new rows, fields;
cache_get_data(rows,fields);
if(rows)
{
// foi encontrado o que procuramos
new pID = cache_get_row_int(0,0); // Pega o primeiro campo da primeira linha encontrada
printf("O ID ъnico de Arakuta й %d",pID);
}
return 1;
}