12-31-2020, 03:36 PM
where you see
pText->setFontColor(0xFF9533FF);
you can replace the hex value with . 0xcolorFF
using html color picker to get the value
2
/monthly_2020_12/image.png.6efa99f78750279dcca7a92aa345993f.png" />
So final result would be
Ox in the front FF at the end (color in the middle)
pText->setFontColor(0xcc9900FF);
This would display gold number for online counter.

