Questions tagged [mirc]

Windows based IRC (Internet Relay Chat) client. Featuring easy to use interface and powerfull scripting language.

mIRC is widely used, a shareware windows based client for IRC (Internet Relay Chat) written in C/C++ featuring easy to use interface, file transfers, multi-servers connection, IPv6, SSL encryption, UTF-8, UPnP, customizable sounds, spoken messages, tray notifications, message logging and much more. It also features it's own powerful scripting language mSL (mIRC Scripting Language) and loading DLLs via public API.

147 questions
2
votes
2 answers

Scrollbar in mIRC window

Is it possible to remove or hide (hide to allow mouse wheeling) a scroll bar within a custom mIRC window. The verticle scrollbar to be specific. If you look to the very right of the picture you see the scrollbar. Is there a way to remove it?
user2565679
  • 89
  • 1
  • 2
  • 8
2
votes
1 answer

mIRC Socket Chartset Fail

so i Have mIRC 7.21 that it has by default UTF-8 enabled. So i have this socket: on *:sockopen:_tmdb_*:{ sockwrite -tn $sockname GET $hget($sockname,url) HTTP/1.1 sockwrite -tn $sockname Host: "nah" sockwrite -tn $sockname User-Agent:…
Devian
  • 817
  • 1
  • 12
  • 22
1
vote
1 answer

MIRC script with remote command - only use once per minute

I have written a little mirc script, where if a regular chatter does .xcommand it will execute the alias /ycommand. Now, because of over usage, I would like to limit it so a user can only use it once per minute. And I am not sure how to do it, I…
qwerty1911
  • 47
  • 1
  • 8
1
vote
1 answer

Logging into google through mIRC without openID or otherwise

I need to login to google to access a private spreadsheet through mIRC. I can store the email and password in a variable, no problem; I just don't know the easiest way to actually login - I want it fully automatic, no user prompt required. I tried…
user938787
1
vote
2 answers

Pages loading twice

I'm using mIRC to open a socket to a website. The logs from the DB show that the page is opening at LEAST 2 times, sometimes 3. The 2nd time is usually 2 minutes from the first time. However, the socket is only opening once; I have an echo on…
user938787
1
vote
3 answers

How to use if statement with on *:CONNECT: mirc script

I would like to join three networks, authenticate towards nicksrv and send a message to a bot /or auto-join a few channels when I launch my IRC client. I am using mIRC 7.55. What the client should do depends on which network it is. So I have an if…
jared66
  • 13
  • 2
1
vote
3 answers

Mirc script, sockread

I'm trying to make a script which will take data from a webpage and post it on irc. I've managed to do it, but im not able to make it repeat its job multiple times. This is what i tried: alias mib { var %i = 0 %bitka = $1 while (%i <= 4) { …
crreep
  • 11
  • 1
1
vote
2 answers

mIRC/mSL pulling certian strings out of a wildcard

So I'm pretty new to mSl scripting, but I've done some other scripting before. I'm trying to figure out how to do some pattern matching, but I'm having a problem. Let's say I have the following text Someone has flipped a coin to Jim and it was…
gerrgheiser
  • 215
  • 1
  • 8
1
vote
1 answer

mIRC .txt timer based script

trying to make a timer delayed based script for mIRC for a scenario based game. everything is put together and should run but when I actually go to start the script it just says unknown command. SCRIPT { /TIMER1 1 1 /query #mircroom THIS IS…
grant8989
  • 13
  • 3
1
vote
1 answer

get onlye name of string removing tags using regex mirc?

i'm trying to catch only the nickname of a usernames on mirc usign regex but i cant catch this is the data which i want take the username and in involve this regex code: /^\x3a(:?(\[\w+\])?(\[\s\w+\s\]?))\s?(\w+)/i Here is on regexer: Regexer I…
Erick ls
  • 186
  • 8
1
vote
1 answer

MSL Socket Script displaying html and body tag

When ever the mirc radio bot announces the song playing and the ammount of listeners a stray html and body tag show up as seen below. The code for the radio bot is as follows #announcer on ctcp *:*:*:{ if ($1 == SRstats) { set %sctat.chan…
Nalani
  • 387
  • 3
  • 13
1
vote
1 answer

mIRC Script snippet misfirigin

Whenever somebody just types ! point the snippet runs through all of its commands for some reason I'm trying to find what causes this to happen, so far I cannot find the issue in the code alias -l sd { return " $+ $scriptdir $+ $$1 $+ " } on…
Nalani
  • 387
  • 3
  • 13
1
vote
1 answer

mirc treebar script firing off a set invaild parameters randomly

Below is the script I use for my treebar in my mirc client it fires of in the status window */set:invalid parameters not sure which set it is and most fixes I've tried including check for mismatched () or [] just cause other errors. Any help finding…
Nalani
  • 387
  • 3
  • 13
1
vote
1 answer

Creating Code to read another Streams Uptime and saving timestamp for quick find

Hey guys I'm trying to figure out a code in mirc that will allow me to access the uptime command in the stream I mod for so I can save it to quickly find parts of stream for Highlights and gifs and whatnot. So far I have tried something like this,…
1
vote
1 answer

On quit returns error mirc Script?

This section of code returns unknown command everytime somebody quits. on 1:QUIT:#By_the_Sea_of_Thassa: { if ($read(txt\free.txt,nw,$nick)) { /write -dl $+ $readn txt\free.txt } } Any help in fixing in so when the user quits it removes them…
Diana
  • 73
  • 9
1
2
3
9 10