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

learn more… | top users | synonyms

3
votes
2answers
33 views

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 ...
-3
votes
0answers
32 views

mIRC - Mobile Verification System [closed]

I'm trying to make a mobile verification system through mIRC that can verify all the numbers in the world (might it use a website or a piece of code from my own server or website.) I am looking for a ...
0
votes
1answer
28 views

How to make an add-on for mIRC or any other IRC client that alarms you when a certain string is mentioned in a chat room?

It'd be quite useful to me to have an add-on that alerts me when something specific is said in a chat room, same way you're warned if your nick is mentioned, just for a string you'd like. How would ...
1
vote
1answer
62 views

PHP code doesnt “compile” when connecting via sockets

I am writing a script for mIRC that will fetch data from my webserver, that code is generated via PHP. It works just fine when i connect via my browser (firefox). However, when i connect via the mIRC ...
0
votes
1answer
27 views

Deleting from a dialog list merges the list?

Although I'm not not to programming for mIRC, I am new to working with dialog boxes as I previously had no use for them and my clients did not need to use them, therefore until now, I have not delved ...
1
vote
1answer
42 views

How to create a mIRC Dialog Side Menu?

I have quite a lot of knowledge of programming for mIRC, making scripts and whatnot but now I'm delving into creating a dialog so I can create a bot for people of which they can fine tune to their ...
0
votes
1answer
63 views

MIRC anti-flood script

I'm looking for a way to kick users for flood. The idea is: on [lessthanhalfop]:text:*:#chan: { If [timer$nick] !== 0 { set %kickstate$nick +1 if %kickstate$nick < 4 { kick $nick ...
0
votes
2answers
69 views

mIRC Remote (Python) Trigger to Private Message

How would I go about making a trigger (E.g. !Help) and then the bot will private message them a list. Not the type of message where it will open a new window, but where it will show in the channel but ...
0
votes
1answer
24 views

mirc $regsubex replace () value

set %some1 (2) set %some2 (3) Now can i get the value of some1 which is in the brackets and change it to something else using $regsubex So anyone can help?
0
votes
1answer
44 views

Submit Form using Sockets

I have 2 pages: http://emailser1.hostzi.com/default.php http://emailser1.hostzi.com/dira/sentmail.php Codes: http://emailser1.hostzi.com/default.php cointains: <html> ...
1
vote
1answer
54 views

check var in between

if (%var == 1 or 2 or 3 or 4 or 5) { } So what u want is to check whether the variable's value is in between 1-5 in mirc? I can do it like this: if (%var == 1) { } if (%var == 2) { } if (%var == ...
0
votes
1answer
36 views

Set variable in dialog boxes

/set %something sadf hmm, can I use combo dialog boxes to set a value to variable? If yes, how?
0
votes
1answer
18 views

Makethis script to run commands

http://prntscr.com/w9fb4 or on *:INPUT:#: { /set %ANSWER  $+ $1- /msg $active %ANSWER /unset %back.* /halt } So this remote turns all text we enter into bold....but we cant write ...
1
vote
1answer
351 views

C# Socket Send Picture JPEG

So I have found here in stackoverflow One code for sending through sockets a binary file, an image.. So i used it for test to my Project private void send_ss() { byte[] data = new ...
-1
votes
1answer
40 views

Mirc, emulate akicklist saving in file the ip

someone can suggest me as to do this: if i type: /akick nickname Nickname should to be kicked and banned from current channel and to same time i need to save in a file (for example: akicklist.txt) ...
0
votes
1answer
90 views

Respond to /me in mIRC scripts

When creating mIRC scripts, how do I detect when someone uses /me and what he has said? For example, if someone types "/me says hello" (which shows on screen something similar to "Name says hello"), ...
1
vote
1answer
61 views

What's the simplest way to split 10 random numbers into two lists where the difference in the sum of the lists is as small as possible

You get 10 numbers that you have to split into two lists where the sum of numbers in the lists have the smallest difference possible. so let's say you get: 10 29 59 39 20 17 29 48 33 45 how would ...
1
vote
2answers
147 views

How to check if $4 is registered in IRC?

I am quite an expert when it comes to programming in the MSL language, however I am unfamiliar with raw commands and whatnot. I am in development of a new script. In this script I would like to check ...
0
votes
1answer
66 views

mIRC on event variables

I've noticed a big lack in documentation from mIRC scripting abilities so I apologize if I've missed something but I've been searching everwhere. Basically, I have an on event when someone says ...
0
votes
1answer
55 views

mIRC Need to determine if 25 hours have passed since last script execution

Basically I have this script so far: on 1:TEXT:*some text*:#:{ if(($time(hh)-25) > $lasttime ) { This code gets executed only once per 25 hours $lasttime = $time(hh) } } I'm not sure if ...
0
votes
1answer
77 views

mIRC : $regsub not evaluating $asc on \1

I have a following code. on $*:text:/^(!|\.)bypass\b/Si:#:{ set %bypass.answer $2- %bypass.n = $regsub(%bypass.answer,/(.)/g,$chr(38) $+ $chr(35) $+ $asc(\1) $+ $chr(59), %bypass.answer) msg $chan ...
3
votes
2answers
401 views

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 ...
1
vote
1answer
269 views

mIRC bot - copy/paste lines in 2 channels

I’m a noob in mirc scripting, and I need some help. there’s 2 irc channels. let’s call then #channel1 and #channel2; There’s 2 bots. One is mine, let’s call him “mybot” (my bot is in both channels). ...
2
votes
1answer
428 views

Mirc control codes to html, through php

I realize this has been asked before, on this very forum no less, but the proposed solution was not reliable for me. I have been working on this for a week or more by now, and I stayed up 'till 3am ...
1
vote
1answer
202 views

Undefined index notice in php regexp

Well, I've tried searching over the internet for a few hours now, but so far it's been of no assistance. I am trying to figure out why I keep getting the following notice notice(yes, I am aware it is ...
0
votes
2answers
151 views

Post Trades to IRC from MT4

I attempted to create my own small program to post my trades to IRC. I had trouble finishing the program. Then I found this program which essentially accomplishes what I'm trying to do. There are two ...
1
vote
1answer
712 views

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 ...
0
votes
2answers
87 views

Passing string from binvar to a file

How can i write binvar to a file with line breaks? noop $hget(row, siirMisralari_txt, &binvar) fopen poemFile temp_text.txt fwrite -bn poemFile &binvar fclose poemFile bunset &binvar ...
1
vote
1answer
99 views

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 ...
1
vote
2answers
135 views

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 ...
-1
votes
2answers
329 views

Send email from mIRC

How can you make mIRC send emails? I just learned about : http://en.wikipedia.org/wiki/MIRC_scripting_language I would like to make somehow a script (that would be a bot?) that is watching a mIRC ...
2
votes
2answers
130 views

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

mirc with c# code

anyone experienced to connect mIRC with c# code ? i want to send and receive messages from the mIRC client to my code. i thought doing it with sockets but it's not working as expected... please ...
1
vote
2answers
164 views

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 ...
2
votes
3answers
1k views

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. ...
1
vote
1answer
732 views

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
0
votes
3answers
245 views

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, ...
0
votes
1answer
229 views

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

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 ...
1
vote
0answers
111 views

what can mirc bots do and not do give some examples [closed]

what can mirc bots do and not do give some examples
0
votes
1answer
208 views

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, ...
2
votes
1answer
96 views

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 ...
2
votes
1answer
5k views

Connect to an irc server with password [closed]

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 ...