Hello,
I'm working on a practice mission to test your marksmanship.
At the end of each test there are a lot of statistics like :
Number of shots
Accuracy
Missed targets
Average reactionspeed
...
Accuracy is calculated in percents (offcourse), but how can get % character in a format line?
Here's a snippet...
_acc = _targetsdown *100 / _shots
Hint format ["Accuracy : %1%",_acc]
When _targetsdown = 14 and _shots = 16 , result is :
Accuracy : 87.5
I want :
Accuracy : 87.5%
If possible...