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".