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
1
vote
1 answer

Voicing Script Bug

I'm working on an auto voice/devoice script snippet for an mIRC bot when a nick is lower case it'll voice the nick. Then when the nick is changed and it's upper it should devoice people or if there's an upper nick to lower case nick it voices them.…
Nalani
  • 387
  • 3
  • 13
1
vote
4 answers

How to check if a user is op so it wont try to them timeout when they post a link

I dont know a lot of irc. Original: on *:text:*http://*:#: { msg $chan .timeout $nick 1 } My attempt: on *:text:*http://*:#: if($nick != isop) { msg $chan .timeout $nick 1 } Edit: So I tried that and still no luck. It is still skipping over the…
1
vote
2 answers

Stuck trying to write script to register username with tilte

Working on a bot script to lookup a username on join and see if it's be regiester with a title for the channel I run. Like if my name is Ravenna. I want the bot to check if I've registered the title Mistress with the username Ravenna. I'm extremely…
Nalani
  • 387
  • 3
  • 13
1
vote
1 answer

How to save variable after closing mIRC?

I'm new to do this language and i'm trying to code my own bot. I alredy got the basics and manage to use variables and aliases, however i was looking forward to do a mini-game in my chat in which you could have your own pet, name it and level it…
1
vote
1 answer

mIRC: Check if INI-file has a key

I'm trying to see if there is a entry in a ini-file with a user's nick as the key or not. If not; make an entry. If it exists; post a error message. var %previous = $readini(numbers.ini,Number,$nick) if(%previous != $null) { msg $chan $nick ,…
PWL
  • 456
  • 4
  • 27
1
vote
2 answers

python program doesn't work when opened by run

I'm using Windows 7 x64, when I open my program by Windows - run it does not work properly. It stars, but the commands does not work the way they do, when I double click it. /run cmd /c start "" "C:\Python27\Scripts\bot.bat" /run cmd /c start python…
Commentator
  • 640
  • 1
  • 6
  • 22
1
vote
1 answer

How to correctly use $nick in mIRC msg?

So I'm starting to get really familiar with mIRC and the powers that it can do, however I have a small problem. So the basic code is: on *:text:!bet *:#aaron128l { msg $chan $nick, Your bet wasn't counted! } However the problem, arises bacause the…
Aaron128l
  • 113
  • 4
1
vote
1 answer

irc chat servers do not support arabic NickName

So, i have an iPhone IRC client code that connects with IRC servers perfectly. I can join rooms, and i can chat in room with other users and i can do private chat as well. I can send my chat message in Arabic, no problem. But there is a requirement…
M.Yessir
  • 202
  • 3
  • 11
1
vote
2 answers

mIRC socket inconsistently not working

I'm currently working on a new uptime command for my Twitch bot and I'm having problems with sockets. I'm trying to use this page http://api.twitch.tv/api/channels/duilio1337 to check if a streamer is online. It works fine sometimes but other times…
Duilio
  • 11
  • 1
1
vote
1 answer

Pulling data from a website (livebox)

I have tried this using the page sources but in the page source. The div tag i want is absent.
1
vote
1 answer

How to color text in private message in mIRC

am tring to input my each text line in private message colored, i use this code it is showing colored text but adding a space before text. how can i remove that space on *:INPUT:?:{ say 4 $strip($1-) halt } and also now commands like…
Maira Shah
  • 21
  • 3
1
vote
2 answers

mIRC autoresponder script with special character output

I'm trying to create an on-text script that when phrase "A" is typed in the channel, text output "B" is auto posted. What I have so far that isn't working: on 1:text:*Swagger's troops are home:*:/msg $chan psst! @Swagger your troops are home! Now…
ijirving
  • 21
  • 2
1
vote
1 answer

Two nearly identical aliases in mIRC, one fails?

I threw together two quick aliases for temperature conversion in mIRC. The one for going from Fahrenheit to Celsius works just fine, but going from Celsius to Fahrenheit gives me the error "* /echo: insufficient parameters (line 11,…
user3356436
1
vote
2 answers

ircDotNet bot fails to get messages from IRC channel, long login/logout

I'm trying to write bot for irc channel, which will read messages from channel, recognize if they are commands to him and do some actions depends on command which was send. I've choose ircDotNet because it was the only library that contains some…
csharp newbie
  • 647
  • 1
  • 12
  • 31
1
vote
1 answer

Regex mirc situation

Hello i'm having a script but when i try to catch info that i need i cant this is the part of html code that i would like to get:
2100.0
So on my socket y try to do this to get the 2100.0(2100.0 it is a…
1 2
3
9 10