Friday, August 25, 2006

A Simple mIRC for Automating XDCC Downloads

A lot of the fileserve bots on IRC these days have disabled the xdcc list command, presumably because of abuse from bots and crawlers. Here's a simple mIRC script that will automatically get the next pack. To kick it off, just type:
/xdcc start BotName Pack#
The script automatically stops at the last available pack.
on 1:FILERCVD:*: {
inc %xdcc_pack
/msg %xdcc_bot xdcc send %xdcc_pack
}

Alias xdccstart {
%xdcc_bot = $1
%xdcc_pack = $2
/msg %xdcc_bot xdcc send %xdcc_pack
}
Pretty simple really, I'd like to add the ability to fetch specific packs or skip packs based on description regex or pack size at some point. If the script goes nuts you can stop it with:
/remote off

Comments: Post a Comment



<< Home

This page is powered by Blogger. Isn't yours?