To jest zły dział przyjacielu.
Myślę że bawienie się na cip kliencie to na większą skale nie rozsądne, a OTclient to chyba open-source?
Sciągasz pic edytora i sobie zamieniasz znaki, za co ty chcesz człowieku pieniadze? XD
About level, you have to set it in source + add player group flags which will hide their level when they write anything on chat.
std::string Player::getDescription(int32_t lookDistance) const
{
std::stringstream s;
if(lookDistance == -1)
{
s << "yourself";
if(hasFlag(PlayerFlag_ShowGroupNameInsteadOfVocation))
s << ". You are " << group->getName();
}
else
{
s << nameDescription;
s << ". " << (sex % 2 ? "He" : "She");
if(hasFlag(PlayerFlag_ShowGroupNameInsteadOfVocation))
Boże ja po angielsku w polskim temacie pisałem ... Jeżeli masz TFSa : player.cpp poszukaj
Code:std::string Player::getDescription(int32_t lookDistance) const { std::stringstream s; if(lookDistance == -1) { s << "yourself"; if(hasFlag(PlayerFlag_ShowGroupNameInsteadOfVocation)) s << ". You are " << group->getName(); } else { s << nameDescription; s << ". " << (sex % 2 ? "He" : "She"); if(hasFlag(PlayerFlag_ShowGroupNameInsteadOfVocation))
Ale to klient powiększa te znaki, a nie silnik, więc to jest bez sensu.