mIRC scripting - Max_Coldheart - 30.10.2011
Yes so I've heard that there is something called "mIRC scripting". Where could I learn this, what do I need to do it, and what can I do with it? I've heard that some contests and something like that, but I'd like to get more info of it.
Have a nice day !
Re: mIRC scripting -
Infinity - 30.10.2011
Quote:
Originally Posted by Max_Coldheart
Yes so I've heard that there is something called "mIRC scripting". Where could I learn this, what do I need to do it, and what can I do with it? I've heard that some contests and something like that, but I'd like to get more info of it.
Have a nice day !
|
mIRC -> Tools -> Scripts Editor
It has it's own documentation.
Re: mIRC scripting -
Kostas' - 30.10.2011
Yes! There is, I first learn to script on mIRC months ago. And this month I have started on samp

Making a bot, it's easy.
Let me saw you a code I had made.
Код:
on *:connect: {
if ($nick = KBot) { /identify ****
}
else {
/identify ****
}
}
on *:TEXT:!noob *:#:{
var %noob = $rand(0,100)
if ($2 == Kostas) {
timer 1 1 msg $chan $2 is 0 percent noob!
timer 1 3 msg $chan $2 isnt a noob, $2 is pro! :)
}
else {
msg $chan $2 is %noob percent noob.
}
if (%noob > 0) && (%noob < 10) .timer 1 2 msg $chan $2 isnt a noob, this person is pro! :)
if (%noob > 11) && (%noob < 20 ) .timer 1 2 msg $chan $2 isnt much of a noob
if (%noob > 21) && (%noob < 30) .timer 1 2 msg $chan hmm $2 has a small hint of noobiness in them
if (%noob > 31) && (%noob < 40) .timer 1 2 msg $chan Don't worry, you're a below average noob
if (%noob > 41) && (%noob < 50) .timer 1 2 msg $chan $2 is your common harmless noob.
if (%noob > 51) && (%noob < 60) .timer 1 2 msg $chan look out for $2, they're an above average noob
if (%noob > 61) && (%noob < 70) .timer 1 2 msg $chan without proper medication, $2 's noobiness could spiral out of control LOL
if (%noob > 71) && (%noob < 80) .timer 1 2 msg $chan i think we should keep a close eye on $2,cuz $2 is a big noob
if (%noob > 81) && (%noob < 90) .timer 1 2 msg $chan lolxz $2 is one of the biggest noobs ever, wow
if (%noob > 91) && (%noob < 100) .timer 1 2 msg $chan holy crap, $2 is another version of Krys. HUGE NOOB xD
}
Re: mIRC scripting - Max_Coldheart - 30.10.2011
Quote:
Originally Posted by Infinity
mIRC -> Tools -> Scripts Editor
It has it's own documentation.
|
Where might I find this documentation?
Re: mIRC scripting -
Infinity - 30.10.2011
In mIRC's help. It has an entire block about scripting.
If that isn't enough, I'd recommend to look at some tutorials on ******.
Re: mIRC scripting - Max_Coldheart - 30.10.2011
Quote:
Originally Posted by Infinity
In mIRC's help. It has an entire block about scripting.
If that isn't enough, I'd recommend to look at some tutorials on ******.
|
Okay, thank you

EDIT: I can't find the mIRC's help.... where is it?
Re: mIRC scripting - Max_Coldheart - 30.10.2011
Bump
Re: mIRC scripting -
SloProKiller - 30.10.2011
Type /help then mIRC scripts.
Re: mIRC scripting - [MM]IKKE - 30.10.2011
Or use F1 or Help -> Help lol
I made a custom /help command in mIRC so /help doesn't work anymore
Anyhow the basics...You have to learn those from someone else or maybe some tutorial on the internet. I learnt the very basics (on *:TEXT:<text>:#: cmd) from someone and then I taught myself the rest using the help function

I still can't work with sockets etc though. And RAW is a bitch, too much possibilities