T2-BoL/scripts/modScripts/shared/numericProcessing.cs

15 lines
331 B
C#
Raw Normal View History

2012-07-27 21:22:05 +00:00
// -----------------------------------------------------
// Number Processing
// -----------------------------------------------------
function decimalToPercent(%decimal) //Doesn't work very nicely at the time.. probably won't be used after a bit
{
return %decimal * 100;
}
function isDecimal(%num)
{
return strStr(%num,".");
}