• Be sure to join the discussion on our discord at: Discord.gg/serebii
  • If you're still waiting for the e-mail, be sure to check your junk/spam e-mail folders

Scripts

The Thrashmeister

<-- Made of awesome.
Can someone lend me their autojoin script for mIRC? I lost mine. --;

Also, I need a quote grab script. Like, if someone types !quote I'd give them a quote.

Thanks. :(
 

MS

Well-Known Member
K ;D

Auto Identifier :

www.mirc.net - Search for Auto Identify in Addons; and then choose the one you want to use.

and for the quotes it should be something like...

on *:TEXT:!quote:#: { /quote | halt }

Try that.
 
Z

ZeroMantis

Guest
Basic Quote Script:

In Remotes:

Code:
alias quote {msg $chan $read(quotes.txt) | halt }
alias addquote {write quotes.txt $1-}

Grabs random quote from "quotes.txt" which will be automatically created in your mIRC directory the first tiem you type "/addquote"

For other people to access it:

Code:
on *:TEXT:!quote:#: {quote | halt}

I advise you to change the !quote area since a lot of people use some variation of this script and a large number of them use "!quote". In some channel, if you say "!quote", you'd get about 10 responses.

Note; you can play around with the $read() command. In mIRC, type "/help $read". If you read enough, you can figure out how to create a "search for quote with this text" or "search for this number quote".
 
Top