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

How can I talk to a c# .dll in mIRC?

Is there a way? I've noticed COM objects are there but someone said they only work with C/C++... And even then, I'm not exactly sure what they are. I want to build a script for mIRC but I hate using MSL. Thank you. :)
Xenoprimate
  • 7,691
  • 15
  • 58
  • 95
3
votes
0 answers

Convert strange unicode characters into emoji code

I have a dll i suspect not to be supporting UTF-8 for emojis. (its an addon for mIRC) This dll changes mIRC (text based chat program), into a full HTML/Javascript. My problem is, when i receive a message containing emojis, they output like…
user3916429
  • 562
  • 6
  • 25
3
votes
1 answer

mIRC Bot simulate keystrokes

I would like to program my mIRC bot so every time someone writes "W" in the chat, the bot simulates the W key on my keyboard. I have tried: on *:text:W:#:sendkeys {W} alias sendkeys var %a = $ticks .comopen %a WScript.Shell | if !$comerr { …
user1172897
  • 99
  • 1
  • 4
  • 8
3
votes
1 answer

mIRC Execute command after X lines of chat

I'm a selflearned mIRC programmer and started very recently so my experience is quite limited. Here's the problem I have: I'm creating a chat bot for Twitch and have created besides a raffle system a timed message for promting the stream it's on…
Gryph
  • 55
  • 3
3
votes
2 answers

Mirc code to Spell check before adding variable

on *:text:@btag*:#: { if ( ## isin $2 ] { Set %Tag. [ $+ [ $nick ] ] $2 { Describe # $nick Has saved their Battletag } else { Describe # $nick $+ , Please enter your real Btag } } This is the code I have. What I…
3
votes
2 answers

Regex Replace of Mirc Colour Codes

I am making a small / simple IRC client, for a special use case. I would like to strip out the Mirc colour codes other users are typing from their Mirc / other similar clients. Screenshot : I have been trying for approx 1hr without success : string…
sprocket12
  • 5,368
  • 18
  • 64
  • 133
2
votes
2 answers

mIRC socket is not working

This socket is not working, I tried everything but it never actually displays the quote. Just the text beforehand. on $*:TEXT:/^[!@](motivate|mqod|mqotd)/Si:#:{ if ($chan !isin %notlist) { if ($sock(Motivation)) { notice $nick Please try again…
user798759
  • 42
  • 3
2
votes
3 answers

How do I change the color of links in mIRC?

In mIRC I want all links to look like html links (blue with an underline) so they stick out in channels and messages. I'm sure I have to write a remote script but I'm not sure what the code would be.
Jamie Taniguchi
  • 387
  • 4
  • 13
2
votes
1 answer

Parsing mIRC colors in php

I want to convert mirc color codes to html via php. Here is the example: http://searchirc.com/search.php?F=exact&T=chan&N=6246&I=anime-pirates Thanks
wonnie
  • 459
  • 3
  • 6
  • 19
2
votes
1 answer

Trouble with filenames that start with #

I am trying to use Chatty software for Twitch in order to retrieve the chatlog, but it saves it chatlog with a filename starting with # and I am not able to change that. Consequently, instead of the file the $.get returns the document itself i.e.…
jacobdo
  • 1,605
  • 3
  • 15
  • 34
2
votes
1 answer

Does mIRC Scripting have an escape character?

I'm trying to write a simple multi-line Alias that says several predefined strings of characters in mIRC. The problem is that the strings can contain: { } | which are all used in the scripting language to group sections of code/commands. So I was…
Eriol
  • 139
  • 6
2
votes
2 answers

did i make a command through a dialog in mirc?

i've created a dialog that allows to kick an user. this dialog has a textbox where the user must write the name of the one to kick and then press the OK button to kick. I created all the dialog but i don't understand how to give the command on the…
Francesco
  • 21
  • 2
2
votes
1 answer

Connect to an irc server with password

I'm writing script in remote.ini The script looks like on 1:start:{ server some.irc.server server -m another.irc.server } The script works well as when I open mIRC, it automatically connect to 2 servers above Now, I want to connect to an…
Tuan Anh Hoang-Vu
  • 1,994
  • 1
  • 21
  • 32
2
votes
1 answer

Get highest value from a file using mSL and mIRC

Currently I have an irc bot that when a user says a keyword e.g test1 they get +1 added to their count, which is stored in a file. However I wanted to know who had the biggest count (who was winning). I thought something like a while loop would…
jerrythebum
  • 330
  • 1
  • 6
  • 17
2
votes
1 answer

IRC time left on variable

I'm currently doing a Twitch chat bot using mIRC. Is there a way to check the time left for an assigned variable? That is, how long time it's left until it's removed. Example: I have a variable that is set to exist for 120 seconds (set -u120 %myvar…
Gryph
  • 55
  • 3
1
2 3
9 10