# Longtext Checker Script

**Category:** mIRC_Addon
**Original Author:** Unknown

## Description
This script checks if a message exceeds 239 characters in length and takes appropriate actions such as kicking the user from the channel or sending a notice.

## Key Features
- **Message Length Check**: The script ensures that messages do not exceed 239 characters.
- **Operator Privilege Check**: Only operators can bypass this check.
- **Notice for Banned Users**: If a banned user tries to send a message, they receive a notice.
- **Kick for Exceeding Limit**: Messages exceeding the limit result in kicking the user from the channel.

## File Analysis
- **longtext.tcl** — A Tcl script that binds to public messages and checks their length before taking action. It uses `bind pubm - * pum_arg` to intercept all public messages, then checks if the message exceeds 239 characters. If so, it either kicks the user or sends a notice.