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



Tag mismatch - alex25alex - 10.08.2016

I have an error:

PHP код:
193    new money Carinfo[GetPlayerVehicleID(playerid)][Fuel]; 
PHP код:
enum Car
{
    
Float:Fuel,
}
new 
Carinfo[MAX_VEHICLES][Car]; 
Why?

PHP код:
\fuel.pwn(193) : warning 213tag mismatch 



Re: Tag mismatch - Konstantinos - 10.08.2016

Round it to an integer:
pawn Код:
new money = floatround(Carinfo[GetPlayerVehicleID(playerid)][Fuel], floatround_floor);
References:
https://sampwiki.blast.hk/wiki/Floatround
https://sampwiki.blast.hk/wiki/Floatround_method


Re: Tag mismatch - alex25alex - 10.08.2016

thanks!