Máte otázku? Napíšte nám
Po–Pá: 8:30-17:00

Scoop Script Mirc May 2026

This script scoops the last message from a specific user in a different channel.

; Scoop user's last message from #source to #target
on *:TEXT:!scoopuser *:#target: 
  var %targetuser = $2
  var %sourcechan = $3
  var %lines = $lines(%sourcechan.log)  ; Assumes logging is on
  var %lastline = $read(%sourcechan.log, %lines)
  if (%targetuser isin %lastline) 
    msg #target Scooped from %sourcechan : %lastline

Even veteran users faced issues. Here is a fix list for the most frequent errors. scoop script mirc

First, ensure Scoop is installed. Open PowerShell (5.1 or later) and run: This script scoops the last message from a

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh | iex
Hore