tag misimatch - 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 misimatch (
/showthread.php?tid=499228)
tag misimatch -
AroseKhanNiazi - 07.03.2014
Код:
SetPlayerAttachedObject(playerid,
INT:PlayerInfo[playerid][pindex],
INT:PlayerInfo[playerid][pmodelid],
INT:PlayerInfo[playerid][pboneid],
Float:PlayerInfo[playerid][pfOffsetX],
Float:PlayerInfo[playerid][pfOffsetY],
Float:PlayerInfo[playerid][pfOffsetZ],
Float:PlayerInfo[playerid][pfRotX],
Float:PlayerInfo[playerid][pfRotY],
Float:PlayerInfo[playerid][pfRotZ],
Float:PlayerInfo[playerid][pfScaleX],
Float:PlayerInfo[playerid][pfScaleY],
Float:PlayerInfo[playerid][pfScaleZ]);
Код:
(1010 -- 1011) : warning 213: tag mismatch
(1010 -- 1012) : warning 213: tag mismatch
(1010 -- 1013) : warning 213: tag mismatch
line 1010-1013
Код:
SetPlayerAttachedObject(playerid,
INT:PlayerInfo[playerid][pindex],
INT:PlayerInfo[playerid][pmodelid],
all codes are under on playerspawn
Re: tag misimatch -
r3ct - 07.03.2014
get rid of INT: and FLOAT: infront of all the variables.
Re: tag misimatch -
Konstantinos - 07.03.2014
Remove any "INT:" you have in the script. It's not a tag and integers have no tags.
Re: tag misimatch -
AroseKhanNiazi - 07.03.2014
ok thx