SA-MP Forums Archive
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=623397)



Tag Mismatch - fastayko - 01.12.2016

i get warning tag mismatch on the second line

Line1: new intt;
Line2: intt = Deathint[playerid];

And tag mismatch here too

GetVehiclePos(P_CarStats[playerid][PCarX1],P_CarStats[playerid][PCarY1],P_CarStats[playerid][PCarZ1]);

please help me


Re: Tag Mismatch - StrikerZ - 01.12.2016

Why would you use intt to declare Deathint[playerid]? Just use Deathint[playerid] instead. And for this it'd be

PHP код:
new vehicleid;
vehicleid GetPlayerVehicleID(playerid);
GetVehiclePos(vehicleid,P_CarStats[playerid][PCarX1],P_CarStats[playerid][PCarY1],P_CarStats[playerid][PCarZ1]); 



Re: Tag Mismatch - fastayko - 01.12.2016

+ rep