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 - Pausing hash table

Code; on *:text:!ticket *:#:{ var %hash $+(ticket.,#) if $istok(%owner,$nick,32) && $2 == on && !$hget(%hash) { hmake %hash msg # Ticket now is open. Use !ticket to join. } elseif $2 isnum && $2 > 0 && $hget(%hash) { …
0
votes
1 answer

Raffle price change on input

My Code for mIRC; on *:text:!raffle *:#:{ var %hash $+(raffle.,#) if ($nick isop #) && $2 == on && !$hget(%hash) { hmake %hash msg # The raffle now is open. Use !raffle and the amount of time you would like to enter to join. Remember, 1…
0
votes
1 answer

mIRC stop spam of bot - Twitch

Here's my code; on *:text:!points:#:{ msg # $nick has $readini(Points.ini,$+(#,.,$nick),Points) total points. } Thats ok but if 5 people do !points in a row, it spams the chat. How do I make it update every 10 seconds and then display a message…
0
votes
1 answer

!permit command for Twitch, mIRC/mSL

I want to make a !permit command that will let the user post a link for 20 seconds and not get blocked. If they don't ask a mod to permit them, they will get timed out. Also I was looking for add a !alwayspermit so they will always have permission…
user3695840
  • 1
  • 1
  • 1
  • 2
0
votes
2 answers

mIRC parsing for a name

So I've been getting a bothersome someone who keeps using my nickname. What I want to be able to do is perform the following command every time someone with exactly my nickname (let's say UserName) joins the channel I currently reside in: /msg…
0
votes
1 answer

Trigger value in a other line

ON *:TEXT:*3rd*:*: { ON *:TEXT:*->*:*: { if ($nick == Nickname) { %value = $mid($1-, $calc($pos($1-, 3rd, 1) + 14), $calc($pos($1-, Second, $pos($1-, Second, 0)) - $pos($1-, 3rd, 1) - 23)) } } …
0
votes
1 answer

Copy specific text between -> <-

I'm now using this code to copy a section in the text. I want to change the code so that it copys the whole text between 2 tags. Example -> this text copy <- (copy just between -> and <-) The code now is ON *:TEXT:*->*:*: { if ($nick ==…
0
votes
1 answer

Trying to read MIRC logs in ASP.net

I am trying to make a page that lets my admins read the MIRC Log files from our bot...I am having the hardest time trying to get this to work for some reason...i have taken bits and pieces of code to get what i have working...but it still either…
guycothal
  • 61
  • 6
0
votes
1 answer

mIRC/mSL words from readini, can they be split?

Brand new to mSL and just playing around with trying to make a bot. So I am trying to make something that when a user says a certain word, they get +1 to a count against their name. However they can then not say the word again to further increase…
jerrythebum
  • 330
  • 1
  • 6
  • 17
0
votes
1 answer

mIRC code alteration not working as planned

I've been trying to edit some code I've found for a group of mine, but I've been riddled with some bugs, mainly with the text now showing correctly on *:start:{ hmake uno 50 if ($isfile(uno.dat)) hload uno uno.dat } on *:exit: hsave uno…
Auro
  • 111
  • 3
0
votes
1 answer

MIRC scripting: how to save answer from bot

I have no privilegies to see database of stored users on some channel, but on channel is active bot. There is a command with parameters and bot answers with list of Users according to parameters. Is there any possibilities to save answer from bot…
0
votes
1 answer

Command Flood Protection mIRC

I have the following auto-responder on my bot on *:TEXT:*sparky*:*: { msg # $read(scripts/name-responses.txt) } on *:ACTION:*sparky*:*: { msg # $read(scripts/name-responses.txt) } I wanted to know how can I tell write a code, I'm guessing with an…
Luis M
  • 104
  • 1
  • 11
0
votes
1 answer

mIRC - User Level Command

I am currently working on a Twitch bot and I'm looking for a way that if I type something like !ulevel [user nick] [user level] into the twitch chat it will change the person with that nickname to the user level specified. I don't know if this will…
0
votes
1 answer

mIRC Bot : Listening for HTTP Requests

I have one mIRC Bot running on an IRC network. I was wondering if there is any way to "listen" to HTTP requests etc via sockets or any other method. What I mean by that is, say I have another forum, and whenever someone posts a new topic on this…
Hrishikesh
  • 1,076
  • 1
  • 8
  • 22
0
votes
1 answer

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 into them previously. alias ss { dialog -dm…
user2199660