Tag dismatch - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Tag dismatch (
/showthread.php?tid=210841)
Tag dismatch -
blackwave - 14.01.2011
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
Re: Tag dismatch -
MrDeath537 - 14.01.2011
Do you tried using:
pawn Код:
INI_String("Reason", Info[playerid][Reason], 128);
?