Can you explain more, show screenshots/video of it happening?Hello
How can i do remove the bubble alert that showing on i enter in a room?
Post automatically merged:
Wich bin file i do edit in the swf?
public void SendPacket(IServerPacket packet, bool withRightsOnly = false)
foreach (RoomUser user in users)
{
if (user == null || user.IsBot)
continue;
if (user.GetClient() == null || user.GetClient().GetConnection() == null)
continue;
if (withRightsOnly && !CheckRights(user.GetClient()))
continue;
user.GetClient().SendPacket(packet);
}
if ((withRightsOnly && !CheckRights(user.GetClient())) || user.HideChatBubbles)