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

mIRC socket read text from url

I have been trying to use mIRC to read a short line of text from a url and echo/ write it in to chat when someone types !test. The socket host is XXXXXXXXXXXX because it is running on wamp on my PC. The data on the page is not long, Here is the…
Blood_Wolf89
  • 65
  • 2
  • 9
0
votes
1 answer

Mircscript on join on/off

I have this command for a onjoin event: on !*:join:#:{ msg $chan MESSAGE } How can i switch this message on/off by using example: !onjoin on OR !onjoin off Thanks
user3135461
  • 11
  • 1
  • 4
0
votes
2 answers

mIRC script running a C# program, but getting a FileNotFound error

I'm trying to set up an mIRC bot for my channel, and my current project is playing an audio file on my computer whenever a certain event happens. I've written a short C# console app that gets the name of the file from the arguments, and plays that…
electroball09
  • 93
  • 1
  • 3
  • 8
0
votes
1 answer

Would this mIRC script be possible? how difficult?

At my workplace we use mIRC for realtime communication for those of us who need to be constantly in touch with others. Sometimes it happens that I have to leave my desk for an hour or two at a time, and sometimes I get a PM in mIRC that I need…
Kefka
  • 1,655
  • 2
  • 15
  • 25
0
votes
1 answer

mIRC Twitch.tv bot points system on and off commands

I am currently working on a twitch.tv bot. What the bot is designed to do is to automatically give points to a user when they join chat on the mIRC end of things. A timer gets started and they receive 1 point every 30 mins. The problem with this…
Fandydur
  • 1
  • 1
  • 2
0
votes
1 answer

mIRC link protection [editing a script]

I found the following script posted by Sirus_Black. But I have a question that I am hoping he, or anyone can enlighten me with. on @*:text:*:#:linkpost $1- on @*:action:*:#:linkpost $1- on @*:notice:*:#:linkpost $1- alias -l linkpost { if ((!%p)…
jimieo
  • 5
  • 2
0
votes
1 answer

Using text and variable in matchtext

I have tried to implement prefixes to my bot without any luck ON *:TEXT:$($+(%prefix,LEVEL)):#: { msgs here } There is what I tried without success, any idea how I can fix it so I can use the prefix and the actual command?
user3740791
  • 91
  • 1
  • 10
0
votes
1 answer

mIRC 'null' delimiter for $gettok

Sorry if my title wasn't clear enough. I'm back for some more guidance! I'm trying to set up a unique language kicking bot. The chats I moderate have influxes of Russian language chat spammers. So I was trying to set up a bot that kicks someone when…
vika09
  • 19
  • 6
0
votes
1 answer

Modifying a Link Bot for MIRC

With the help of @Sirius_Black I set up this link monitoring bot for MIRC/Twitch. on @*:text:*:#:linkpost $1- on @*:action:*:#:linkpost $1- on @*:notice:*:#:linkpost $1- alias -l linkpost { if (!$hfind(permit,$nick)) { var %purge…
vika09
  • 19
  • 6
0
votes
1 answer

Allow irc connection to socket.io

Have now a node.js & socket.io real time chat, now i want to allow users who want to join with mIRC to connect to my chatbox. I tried allready to join with mirc by doing /server mydom.ch 5558 but it couldnt connect. Does anyone know how to allow…
John
  • 271
  • 1
  • 3
  • 5
0
votes
2 answers

Repeat task, random message Mirc Scipt

Currently it reads the text.txt at random and it displays on a channel on *:TEXT:!command:#channel:{ /msg $chan $read(text.txt) I don't understand how to make it auto execute at x minute intervals, whitout using the !command I've beginner at…
Alex_TNT
  • 5
  • 1
  • 3
0
votes
2 answers

IRC Script: Why isn't this code working? ON JOIN While loop keeps freezing

This piece of code is meant to create a variable when a person joins a channel. Then it is supposed to increase that variable every second that a person remains in the channel. Then it should check to see if that variable reaches 15, which would…
0
votes
1 answer

mIRC Link Bot for Twitch

This is quite a long post (specially the code below), so bear with me. With help from @Siris_Black, I've managed to get this thing working. //LINK PROTECTION on @*:text:*:#:linkpost $1- on @*:action:*:#:linkpost $1- on…
vika09
  • 19
  • 6
0
votes
1 answer

mIRC link protection script

I am currently using the follow script to prevent anyone from posting links on Twitch chat without getting any permissions. on @*:text:*:#:linkpost $1- on @*:action:*:#:linkpost $1- on @*:notice:*:#:linkpost $1- alias -l linkpost { if ((!%p) &&…
vika09
  • 19
  • 6
0
votes
2 answers

how to join channels with a variable username (mirc)

simple question, i guess, but I'm fairly new to this, so maybe you can help me. I made a bot for a chat, which i want to share with people. So, my first thought was: i'll add a command (!join), which then will let the bot join the specific channel.…
DasSaffe
  • 2,080
  • 1
  • 28
  • 67