12-30-2020, 06:08 PM
Set 1: Open client soruce file UIServerSelect.cpp. You will find this in Engine\Contents\Login.
Set 2: find this code:
else
{
pText->SetText(CTString(_S( 371, "¿øÈ°" )));
pText->setFontColor(0xCCCCCCFF);
}
}
Step 3 add this underneath.
else
{
CTString strTmp;
strTmp.PrintF("%d", pChannelInfo->iPlayerNum);
pText->SetText(strTmp);
pText->setFontColor(0xFF9533FF);
}
If added cuorrectly this will be the result:
/monthly_2020_12/image.png.1d8d718f97cf1415affd00db70bf0a78.png">
Enjoy. Found this code on my computer not sure who made it


