Ir para conteúdo
  • 0

como colocar para aparecer o lvl na frente do nome do player no chat


jackfan

Pergunta

4 respostass a esta questão

Posts Recomendados

  • 0

talvez seja em chat.cpp nessa parte..

 

bool ChatChannel::talk(Player* player, SpeakClasses type, const std::string& text, uint32_t _time/* = 0*/)
{
   UsersMap::iterator it = m_users.find(player->getID());
   if(it == m_users.end())
       return false;

   if(m_condition && !player->hasFlag(PlayerFlag_CannotBeMuted))
   {
       if(Condition* condition = m_condition->clone())
           player->addCondition(condition);
   }

   for(it = m_users.begin(); it != m_users.end(); ++it)
       it->second->sendToChannel(player, type, text, m_id, _time);

   if(hasFlag(CHANNELFLAG_LOGGED) && m_file->is_open())
       *m_file << "[" << formatDate() << "] " << player->getName() << ": " << text << std::endl;

   return true;
}

 

 

talvez tenha q por.. -n garanto q va funcionar e nem q seja ae ms q tem q mudar... ;x -

*m_file << "[" << formatDate() << "] " << player->getName() << "[" << player->getLevel() << "]: " << text << std::endl;

maximo q meu conhecimento pode lhe ajudar... ;x

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...