Quick question about adding textNumber.

Hey guys, I'm wondering if there is a way to fix this. So, I got my "Money" as a textNumber(I know its not the best way to go about it) And I have it so When I kill an enemy I have a chance to obtain a random amount of money, like this.
What I'm having problems with, is that I'm not getting a whole number. I keep getting numbers like "25.50645". Is there a way so it's just Whole? like "25". The fraction is annoying haha.
Thank you!
- Code: Select all
GETMONEY=rand(5);
if(GETMONEY==0)
{
Money.textNumber+=rand(100);
}
What I'm having problems with, is that I'm not getting a whole number. I keep getting numbers like "25.50645". Is there a way so it's just Whole? like "25". The fraction is annoying haha.

Thank you!