What is Scoop? Scoop is a scripting language used for creating scripts in mIRC, a popular Internet Relay Chat (IRC) client. Scoop allows you to automate tasks, create custom commands, and enhance your overall IRC experience.
Basic Syntax The basic syntax of a Scoop script is as follows:
alias command_name
// code here
alias is the keyword used to define a new command.command_name is the name of the command you want to create.{} is the script that will be executed when the command is triggered.Example: Simple Hello World Script
alias hello
echo Hello World!
In this example, the hello command will echo "Hello World!" to the current channel or console.
Variables
Scoop uses variables to store and manipulate data. You can declare variables using the var keyword:
var $variable_name = value
$variable_name is the name of the variable.value is the value assigned to the variable.Example: Using Variables
var $name = John
alias greet
echo Hello, $name !
In this example, the greet command will echo "Hello, John !" to the current channel or console.
Commands Scoop provides various commands to interact with IRC channels and users. Some common commands include:
echo: sends text to the current channel or console.notice: sends a notice to a user.msg: sends a private message to a user.join: joins a channel.part: leaves a channel.Example: Simple Chatbot Script
alias chatbot
var $user = $nick
var $message = $1-
if ($message == !hello)
echo Hello, $user !
In this example, the chatbot script checks if the user types !hello and responds with "Hello, $user !".
Events
Scoop scripts can also respond to events, such as when a user joins or leaves a channel. You can use the on keyword to define event handlers:
on ^join:#channel
// code here
^join:#channel specifies the event (join) and the channel.Example: Welcome Message Script
on ^join:#mychannel
var $user = $nick
echo Welcome, $user ! to #mychannel
In this example, the script echoes a welcome message to the channel when a user joins.
Putting it All Together Here's a more complex script that demonstrates multiple concepts:
alias chatbot
var $user = $nick
var $message = $1-
if ($message == !hello)
echo Hello, $user !
on ^join:#mychannel
var $user = $nick
echo Welcome, $user ! to #mychannel
alias greet
var $name = John
echo Hello, $name !
This script defines three commands: chatbot, greet, and a welcome message event handler.
Loading Scripts in mIRC To load a Scoop script in mIRC: scoop script mirc
After installation:
mircEven veteran users faced issues. Here is a fix list for the most frequent errors.
For Windows users who live in the terminal, Scoop + mIRC is a match made in CLI heaven. No more bookmarking download pages or dodging fake "download" buttons. Just clean, scriptable, and maintainable IRC.
Get started today:
scoop install mirc
Happy chatting! 🎧💬
Have questions? Drop a reply or check out Scoop’s GitHub and mIRC’s official site.
Scoop Script is a well-known legacy "full script" designed for
, the iconic Internet Relay Chat client. Emerging during the peak era of IRC (late 90s to early 2000s), it served as a comprehensive suite of modifications and automations that transformed the standard chat interface into a more powerful, visually customized environment. Origins and Community Role
In the landscape of mIRC scripting (mSL), Scoop Script was categorized as a full script
, meaning it wasn't just a small addon but a total overhaul of the client's appearance and functionality. The Gateway to Programming
: For many early internet users, scripts like Scoop were their first introduction to coding. By modifying
files, users learned the basics of event-driven programming and automation. Cultural Context
: It belongs to a "legendary" era of IRC alongside other famous scripts like InzaneScript Ninja Script . These scripts were often shared on community hubs like mircscripts.org
, which acted as repositories for the community's collective creativity. Core Functionalities
Like most full scripts of the time, Scoop Script likely integrated several standard mIRC features into a streamlined, user-friendly interface: Automated Moderation What is Scoop
events to manage channels, kick/ban unruly users, or respond to specific triggers automatically. Visual Theming
: Customizing the "skin" of the mIRC window to include unique colors, fonts, and personalized menus. Utility Tools
: Features such as "away" systems, file server (FSERV) management for sharing content, and "clones" or bots used for various channel tasks. Preservation and Legacy
As users migrated from IRC to modern platforms like Discord or Telegram, many original script repositories disappeared. Today, Scoop Script lives on primarily through nostalgia and digital preservation projects:
"Scoop Script" is a classic, multi-functional automation tool designed for the mIRC chat client. Popularized in the early 2000s, it transformed the standard IRC experience by providing a highly customized interface, automated moderation tools, and unique multimedia features. Key Features of Scoop Script
Scoop Script gained a following due to its "out-of-the-box" readiness for power users. Its primary capabilities include:
Multilingual Support: While standard mIRC was primarily English, Scoop Script offered a robust Portuguese version, making it a staple for Brazilian and Portuguese IRC communities.
System Automation: It automates complex workflows, including file consolidation, dataset preparation, and routine maintenance, reducing the need for manual mSL (mIRC Scripting Language) coding.
Multimedia Integration: The script includes built-in support for controlling MP3 players directly from the chat window and even featured early SMS messaging capabilities for mobile phones.
Security & Protection: Users benefit from integrated antivirus alerts and automated "away" systems to manage presence when they are not at their computer. Why Use a Custom Script for mIRC?
Standard mIRC is a blank canvas. Advanced users leverage "full scripts" like Scoop to avoid writing their own code from scratch.
Ease of Use: It provides a graphical user interface (GUI) for complex tasks that would otherwise require typing long IRC commands.
Channel Management: Includes automated "remotes" that can kick or ban users based on specific words (regex) or join/part events.
Efficiency: It uses aliases (shortcuts) and identifiers (data retrieval) to streamline frequent interactions. How to Install and Load Scoop Script
To use Scoop Script, you must first have the mIRC executable installed on your Windows machine. alias is the keyword used to define a new command
Introduction to Scoop Scripting in mIRC
Scoop is a powerful scripting language used in mIRC, a popular Internet Relay Chat (IRC) client. With Scoop, you can automate tasks, create custom commands, and enhance your overall IRC experience. In this post, we'll cover the basics of Scoop scripting and provide a useful example script to get you started.
Basic Scoop Syntax
Before we dive into the script, let's cover some basic Scoop syntax:
alias is used to create a new command or alias.var is used to declare variables.set is used to set the value of a variable.unset is used to unset a variable.if and else statements are used for conditional logic.loop is used to create loops.Example Script: Auto-Response Bot
Here's a simple script that creates an auto-response bot:
alias autobot
var %nick = $nick
var %msg = $1-
if (%msg == !hello)
msg $chan Hello, $nick! How are you today?
if (%msg == !help)
msg $chan Available commands: !hello, !help
on *:TEXT:!*:*:*:autobot
Let's break down this script:
autobot alias is defined, which takes two parameters: %nick and %msg.%msg) matches specific commands (!hello or !help).How to Use This Script
To use this script in mIRC:
Tips and Next Steps
Scoop Script is a comprehensive, customizable add-on pack designed to enhance the standard mIRC interface, popular for its user-friendly interface and automation features. It frequently features Portuguese localization for regional communities, along with multimedia support, security tools, and automated messaging capabilities. mIRC Scripting - Wikibooks, open books for an open world
Scoop Script is a notable Portuguese-language mIRC script from the early 2000s, recognized for its user-friendly interface, built-in MP3 player, and security features tailored for the Luso-Brazilian IRC community. While celebrated for nostalgia, the script is considered obsolete for modern, secure IRC usage. For more details on the 2004 version, visit TechTudo.
Here’s a step-by-step guide to using Scoop (the Windows command-line installer) to install, manage, and script mIRC (the popular IRC client).
Once Scoop is ready, installing mIRC is a single line:
scoop install mirc
Scoop will:
/S for unattended setup).mirc.exe to your PATH.Some Scoop variants included packet spoofing (.spoof) that faked upload speeds. A cheater could appear to upload at 10 MB/s on a 56k modem. This led to "Scoop wars" where scripts detected and banned spoofers.