View Single Post
xerox8521
Senior Member
Join Date: Sep 2011
Old 04-09-2022 , 09:41   Re: float to int stock
Reply With Quote #4

You can also convert an integer to a float using the float function.

But in this case you need to use GetEntPropFloat as mentioned above

PHP Code:
int myValue 5;
float myFloatValue float(myValue); 

Last edited by xerox8521; 04-09-2022 at 09:41.
xerox8521 is offline