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
0
votes
1 answer

How to send a random line of text to a user followed by permanent ignore in mIRC

Below is an example of my mirc script that triggers on channel JOIN... on 1:JOIN:#:/timer 1 10 /msg $nick Welcome | /timer 1 20 If you like the game please vote on the main page | /timer 1 30 Thanks for visiting and enjoy your stay ignore $nick I…
MircUser
  • 3
  • 1
0
votes
1 answer

How to bind Mirc to Visual Studio in C#?

I am working on a game in unity and it requires some kind of chat client. I have to bind mIRC to Visual Studio and Unity so I can begin the next phase, coding the client. I am having issues with finding a tutorial since this is kind of a complicated…
Matt
  • 21
  • 5
0
votes
1 answer

mirc how to get a bot send subscriptions to user

Im currently looking Trying to get ideas on how to Create a .mrc script for users that can subscribe to Tv shows. I'm running xdcc's so once they add new release of a show to the channel, for example: Newly Added …
0
votes
2 answers

Mirc script to find exact match in customer list

I am using this to find customer name in text file. Names are each on a separate line. I need to find exact name. If searching for Nick specifically it should find Nick only but my code will say found even if only Nickolson is in te list.…
0
votes
0 answers

mirc - Script to add text to a file on computer

After 15 years, I dusted off a trivia script and restarted my trivia channel. Problem is that all my questions are more than 15 years old. So I want to give players the opportunity to send in their own questions and answers through the irc…
stefaanvd
  • 1
  • 1
  • 1
0
votes
1 answer

How to make script increment value every 1.5 seconds when triggered

I have been working on adding a 1.5 second delay to the "inc %x_note_id" portion but instead of it just doing it with one message at a time until the last one, it delays and then sends them all at once. How do I make it where it delays each…
0
votes
1 answer

How to add a 2 second delay to the postmessage alias (mIRC)

I've been trying for days to add a 2 second delay to the "postmessage" alias in this code. Nothing I've tried seems to work. How do you add a 2 second delay to this script ? Like make the first message be sent immediately when triggered but the…
0
votes
1 answer

mIRC chat bot doesn't acknowledge commands

Below is some code I have written for my ever growing bird-related chat bot. If I use the mIRC consolse, I can execute the alias blocks (eg. //fchirp [user] ), but for some reason, the bot doesn't acknowledge somebody typing "!chirp" from the main…
0
votes
3 answers

is this short mirc script correct?

on @:TEXT:*hello*:#:{ msg $chan test } If I have this right, this automatically will send the word 'test' when any channel admin says any sentence containing the word hello. Is this right? If not, how does this script need to be changed to do this?…
Kefka
  • 1,655
  • 2
  • 15
  • 25
0
votes
2 answers

Need help with a mIRC macro

I'm trying to make a script that will automatically says "see you later" as soon as one specific handle in a channel says the words "going home". I tried to do it on my own but got lost. Could anyone help me out?
Kefka
  • 1,655
  • 2
  • 15
  • 25
0
votes
2 answers

IRC String comparison is always true

I'm trying to simply compare a line in a text file to today's date. The line I want help with always seems to evaluate true for my code. Any examples? My code: set %lines $lines(test.txt) set %date $adate while (%i <= %lines) set %read…
0
votes
1 answer

$read() in conditional statements

I'm trying to write a command for an IRC chat bot to check viewers in each day. When someone types !chirp I want the bot to either: 1) add the users name and date they checked in, 2) add just the check in date if they're already on the list, or 3)…
0
votes
1 answer

I'm trying to implement a quote system in mIRC for my Twitch bot, reading from the text file works, but adding doesn't

I'm trying to build my own Twitch bot using mIRC and I've ran into a problem. I've been using simple commands to show TEXT when typing TEXT in the channel. When I got the basics I went further and I'm trying to implement a quote system now, it…
RickyR
  • 81
  • 1
  • 7
0
votes
1 answer

Use $2, $1, etc. in a text file?

First off let me say sorry for the wording on this, I am new to coding in mIRC and don't quite know the terms and/or how to do what I want. My goal is to use whatever the term for "$1" in a text file, such as this text file with a line containing…
skdfsfwse
  • 19
  • 7
0
votes
1 answer

Sending data to mIRC client through a python script

I'm currently making a twitch bot, I've got mIRC setup and the bot is in the chat, and I've tested some commands and everything seemed fine. I don't know any mIRC, but I do know python well, so I was wondering if I could make mIRC execute a python…
Filipe Rodrigues
  • 1,843
  • 2
  • 12
  • 21