if(SAY_SHOUT == nType && g_GlobalChat)
{
if(pUser->stopSayTick == 0)
{
CHAR buff[8190];
int len = Assemble(buff, 8190, "cddSS", 0x4A, pUser->nObjectID, SAY_SHOUT, pUser->pSD->wszName, wTxt);
L2Server::BroadcastToAllUser(len, buff);
}else
{
pSocket->SendSystemMessage(147); //chatting is prohibited
}
unguard;
return false;
};