os << "{" << item->getClientID() << "|" << item->getNameDescription() << "}";
os << item->getNameDescription();
can you accommodate?That is in container.cpp from otservbr sources
It is written that way to correctly display the messages in the client 12 of tibia![]()
otservbr-global/src/container.cpp at f772d06808939ab0ddb98815b49e495e24cfb435 · opentibiabr/otservbr-global
OTServBR-Global datapack was migrated to Canary repository: https://github.com/opentibiabr/canary - opentibiabr/otservbr-globalgithub.com
os << "{" << item->getClientID() << "|" << item->getNameDescription() << "}";
os << item->getNameDescription();
thanks bro, it worked for mechange this:
os << "{" << item->getClientID() << "|" << item->getNameDescription() << "}";
for
os << item->getNameDescription();
Basically that ^ should be enough
:v ok dnt worrythanks bro, it worked for me