Tag dismatch
#1

Hi there. This error is absolutely senseless, and I've tried of all, but nothin'. So, hope anyone can help me with this error:
Код:
 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;
}
With:
pawn Код:
INI_String("Reason",Info[playerid][Reason]);
Give me undefined symbol INI_String. Also, I tried:
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
Reply
#2

Do you tried using:

pawn Код:
INI_String("Reason", Info[playerid][Reason], 128);
?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)