Tag Mismatch - 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 Mismatch (
/showthread.php?tid=659096)
Tag Mismatch -
NoteND - 23.09.2018
Hey!
Why am I getting tag mismatch on this code
bInfo[1][bEntranceX] = x;
bInfo[1][bEntranceY] = y;
bInfo[1][bEntranceZ] = z-1;
Re: Tag Mismatch -
Gforcez - 23.09.2018
Show us the X, y and z variables
Re: Tag Mismatch -
NoteND - 23.09.2018
new Float
, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
Re: Tag Mismatch -
Lokii - 23.09.2018
Maybe cause you forgot float tag
PHP код:
enum bInfo
{
Float:bEnteranceX,
Float:bEnteranceY,
Float:bEnteranceZ
}
Re: Tag Mismatch -
NoteND - 23.09.2018
yop just realized
didnt have Float before vars in enum
ty loki <3