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 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 #chan [reason:flood] echo > kickedlist.txt …
Tom
  • 1
  • 1
0
votes
2 answers

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 only them can see it (if you know what I mean.)…
user1043816
  • 139
  • 1
  • 4
  • 14
0
votes
1 answer

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?
Sasuke Kun
  • 2,449
  • 3
  • 15
  • 14
0
votes
1 answer

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:
Sasuke Kun
  • 2,449
  • 3
  • 15
  • 14
0
votes
1 answer

Set variable in dialog boxes

/set %something sadf hmm, can I use combo dialog boxes to set a value to variable? If yes, how?
Sasuke Kun
  • 2,449
  • 3
  • 15
  • 14
0
votes
1 answer

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 commands(in the iput sector of the Chanel) in the Chanel…
Sasuke Kun
  • 2,449
  • 3
  • 15
  • 14
0
votes
1 answer

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"), how would I respond something like "Welcome!"?
hoi
  • 3
  • 1
  • 1
0
votes
2 answers

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 something, I need to get there entire message, how is…
Tazmanian Tad
  • 193
  • 1
  • 2
  • 12
0
votes
1 answer

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 I'm doing this correctly but if I am I need to know…
Tazmanian Tad
  • 193
  • 1
  • 2
  • 12
0
votes
1 answer

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 %bypass.answer } Basically, I want !bypass…
Hrishikesh
  • 1,076
  • 1
  • 8
  • 22
0
votes
2 answers

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 problems: The first problem is, I just want a…
-1
votes
2 answers

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 channel, and if somebody says something (i would use…
Ash
  • 1,269
  • 3
  • 25
  • 49
-1
votes
1 answer

Creating a dll for mIRC using Delphi 2010

Using Delphi 2010, I am trying to write a dll for mIRC. Here is some information from the mIRC help file Technical notes This section contains technical information for programmers who want to create DLLs for use with mIRC. The routine in the DLL…
-1
votes
2 answers

mIRC Read command not performing

I am writing an mIRC script for a bot account to read a random line of text from a text file when a user keys in !read. As of now, when any user types !read, absolutely nothing happens. I have other commands set to work on TEXT commands, but this…
Eli
  • 23
  • 5
-1
votes
2 answers

If nick isin text file line x

I'm having an issue with my current code. on *:TEXT:*text*:#:{ if ($nick isin $read(test.txt, 1)) { msg $chan working. } } The issue I am having is if the nick "User1" is in test.txt, and "User12" types text, It will detect it as User1…
skdfsfwse
  • 19
  • 7
1 2 3
9
10