Integer to Float - 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: Integer to Float (
/showthread.php?tid=656466)
Integer to Float -
Usmanmemon - 16.07.2018
Is there any way to convert Integer number to Float ..
Re: Decimal to Float -
Dayrion - 16.07.2018
Decimal number is the same as "float tagged numbers" in pawn.
Re: Decimal to Float -
Usmanmemon - 16.07.2018
i mean i have Float:Gas for vehicle gas now i am counting its miles its giving me an warning 213: tag mismatch
so i used floatround to avoid it but now i need a decimal point between that miles like '5.3' remember i am using decimal %d not %f.
Re: Integer to Float -
Usmanmemon - 16.07.2018
Thanks but i fixed it my self i forget to add Float on my declared variable 'miles'.
Re: Integer to Float -
Gammix - 16.07.2018
PHP код:
new myInt = 5;
new Float:floatVersion = float(myInt);
Re: Integer to Float -
Dayrion - 16.07.2018
Quote:
Originally Posted by Gammix
PHP код:
new myInt = 5;
new Float:floatVersion = float(myInt);
|
Also, you can multiply the number by 1.0 to make it decimal.