25.06.2015, 04:14
when i compile i got this errors
Pleaz tell me how to fix
Codes
Код:
C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(3240) : error 017: undefined symbol "PlayerTextDrawSetPreviewModel" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(3241) : error 017: undefined symbol "PlayerTextDrawSetPreviewRot" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(15080) : error 017: undefined symbol "cache_get_data" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(15086) : error 017: undefined symbol "cache_get_field_content" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(15079) : warning 203: symbol is never used: "fields" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(30878) : error 017: undefined symbol "mysql_function_query" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(30876) : warning 204: symbol is assigned a value that is never used: "Query" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31154) : error 017: undefined symbol "cache_get_data" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31158) : error 017: undefined symbol "mysql_function_query" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31163) : error 017: undefined symbol "mysql_function_query" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31153) : warning 203: symbol is never used: "fields" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31199) : error 017: undefined symbol "mysql_function_query" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31206) : error 021: symbol already defined: "ScoreTDupdate" C:\Users\crввzя\Desktop\my files\Online Moroccan Players\gamemodes\OMP2.pwn(31213) : error 017: undefined symbol "mysql_function_query" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 11 Errors.
Codes
Код:
forward Medals_Update(playerid,slot); public Medals_Update(playerid,slot) { new rows,fields,str[168]; cache_get_data(rows, fields); ====> Line 31154 if(!rows) { format(str,sizeof(str),"INSERT INTO `medals` (`UserID`,`Medal%d`) VALUES ('%d',1)",slot, PlayerInfo[playerid][UserID]); mysql_function_query(YGG,str,false,"",""); } else { format(str,sizeof(str),"UPDATE `medals` SET `Medal%d` = 1 WHERE `UserID` = '%d'",slot, PlayerInfo[playerid][UserID]); mysql_function_query(YGG,str,false,"",""); } return 1; }