Jump to content

Question

Posted (edited)

Hello, i adapted in my Extender the drop from Trevorj the only problem i face is when items are on group it shows this weird numbers
https://prnt.sc/EKMQqleho8Ku
when item is single it shows the % normally. Can someone guide me, some people told me it is HTML issue but i doubt it, i think something is wrong on the calculation.. it should so for example 1/100 mobs or something like that.

Edited by Vision

4 answers to this question

Recommended Posts

  • 0
Posted (edited)

It has nothing to do with the html. You should not convert your number to a scientific format and instead, you should use a fixed type. For example, the value 1.521e-003 is equal to 0.001521.

 

int main() {
    double ex1 = 1.521e-003;
    cout << "Value = " << fixed << ex1 << endl;
    return 0;
}

 

Edited by melron
  • 0
Posted
On 1/1/2023 at 1:40 PM, melron said:

It has nothing to do with the html. You should not convert your number to a scientific format and instead, you should use a fixed type. For example, the value 1.521e-003 is equal to 0.001521.

 

int main() {
    double ex1 = 1.521e-003;
    cout << "Value = " << fixed << ex1 << endl;
    return 0;
}

 

Thanks now i can understand whats going on! Fixed ty

Guest
This topic is now closed to further replies.


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock