Not sure if it's allright to post this here, but take a look if you want. It's an anime-themed notice addon I made, for mIRC.
http://www.ferricorp.com/misc/scripts
mIRC scripting? meh. I got some decent code to push.
; /xdcc list <bot>
; /xdcc <bot> <package>
;========================
alias xdcc {
if ($1 == list) {ctcp $2 xdcc list}
elseif ($1 != list) {ctcp $1 xdcc send $2}
}
The lazy man's way of doing XDCC :P
>>1: That is terribly dorky.
Kudos to Squeeks, I edited it a tiny bit after.
Very similar to yours, eh?
;====xdcc leech script====
; usage: /xdcc <nick> <package number>
; /xdcc list <nick>
; 1) Requests XDCC pack from server
; 2) Requests XDCC listing from server
alias xdcc {
if ($1 != list) {
query $1 xdcc send $chr(35) $+ $2
}
if ($1 = list) {
query $2 xdcc list
}
}
irssi is a fantastic client, but if you're going that route with xdcc & fserve, might as well just use iroffer.
The above mIRC scripts are for clients not for rooters or people wanting to run bots. Trust me, it takes more than just a single alias to be an XDCC script.
That's true. I'll never understand why people use mIRC for serving when they're obviously idling 95% of the time though.
I know someone whose irssi client has been up for over a year, and you can even upgrade without shutting it down. Now that's neat.
>>8 now if only every other piece of software could do that.