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=585765)



Tag mismatch - andreistalker - 16.08.2015

Code
PHP код:
P_Data[playerid][pCarHealth1] = cache_get_field_content_float(0"CarHealth1"); 
Error:
PHP код:
warning 213tag mismatch 



Re: Tag mismatch - X337 - 16.08.2015

Change
Код:
pCarHealth1
to
Код:
Float:pCarHealth1
inside enum


Re: Tag mismatch - Beckett - 16.08.2015

A Vehicle's health is a float, not an integer therefore you have to mark it as a float.