Tag missmatch help - 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)
+--- Thread: Tag missmatch help (
/showthread.php?tid=537461)
Tag missmatch help -
Ryz - 15.09.2014
i have defined this already
new PlayerInfo[MAX_PLAYERS][PlayerData];
my one of new feature need this
new PlayerInfo[MAX_PLAYERS][pInfo];
when i do
new PlayerInfo[MAX_PLAYERS][PlayerData][pInfo];
he shows lot of tag missmatch errors
how to fix it?
Re: Tag missmatch help -
biker122 - 15.09.2014
As they're case-sensitive, why not use playerInfo?
Re: Tag missmatch help -
Ryz - 15.09.2014
i am trying to add this login system
https://sampforum.blast.hk/showthread.php?tid=90880
Re: Tag missmatch help -
biker122 - 15.09.2014
Just change all of the PlayerInfo to PInfo
and all the pInfo to PData
WHICH ARE IN THAT LOGIN SYSTEM.
Re: Tag missmatch help -
Ryz - 15.09.2014
Thank you done!