14.01.2011, 01:27
Hi there. This error is absolutely senseless, and I've tried of all, but nothin'. So, hope anyone can help me with this error:
With:
Give me undefined symbol INI_String. Also, I tried:
If anyone do use INI_String, and this structure, please tell me how to resolve
Код:
SAMP SERVER 0.3C\filterscripts\Untitled.pwn(83) : warning 213: tag mismatch
pawn Код:
forward LoadUser( playerid, name[ ], value[ ] );
public LoadUser( playerid, name[ ], value[ ] )
{
printf("Parse processed");
INI_Int("Deaths",Info[playerid][Deaths]);
INI_Int("Kills",Info[playerid][Kills]);
INI_Int("Banned",Info[playerid][Banned]);
INI_String("Reason",Info[playerid],Reason); // Line 83
return 1;
}
pawn Код:
INI_String("Reason",Info[playerid][Reason]);
pawn Код:
INI_String("Reason",Info[playerid],200); // All number = Tag dismatch
If anyone do use INI_String, and this structure, please tell me how to resolve