fiction
New member
Hi exist a way to make a calculation in decimal and the result round off?.
For example...
.@chance1 = (1/(1+10 **(((1580 - 1500)/400))));
.@chance2 = (1/(1+10 **(((1500 - 1580)/400))));
.@score1_new = 1500 + 32(1 - .@chance1);
.@score2_new = 1580 + 32(0 - .@chance2);
_____
.@chance1 = 0.38686317984
.@chance2 = 0.61313682015
.@score1_new = 1519.62037825 round off to 1520
Currently all numbers are round off to 0 when decimals exist :[
For example...
.@chance1 = (1/(1+10 **(((1580 - 1500)/400))));
.@chance2 = (1/(1+10 **(((1500 - 1580)/400))));
.@score1_new = 1500 + 32(1 - .@chance1);
.@score2_new = 1580 + 32(0 - .@chance2);
_____
.@chance1 = 0.38686317984
.@chance2 = 0.61313682015
.@score1_new = 1519.62037825 round off to 1520
Currently all numbers are round off to 0 when decimals exist :[