Help Error
#1

when i compile i got this errors
Код:
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.
Pleaz tell me how to fix


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;
}
Reply
#2

i m using MySQL R5
Reply
#3

You can see the error "undefined symbol" probably its because you didn't load the include
Reply
#4

Update your mysql plugin.
Reply
#5

But im started Scripting with MySQL R5
and i m not pro scripter
Pleaz give me a good solution
Reply
#6

Pleaz Any Solution
Reply
#7

This is a solution, as he said.

Quote:
Originally Posted by Sithis
Посмотреть сообщение
Update your mysql plugin.
Reply
#8

Update you mysql plugins and Includes of pawno.
Download new ones.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)