Xchat figlet plug in
_ _ _ | |__ ___| | | ___ | '_ \ / _ \ | |/ _ \ | | | | __/ | | (_) | |_| |_|\___|_|_|\___/
_/ _/ _/
_/_/_/ _/_/ _/ _/ _/_/
_/ _/ _/_/_/_/ _/ _/ _/ _/
_/ _/ _/ _/ _/ _/ _/
_/ _/ _/_/_/ _/ _/ _/_/
#!/usr/bin/perl -w
IRC::register("SteveCs figlet script", "0.1", "", "");
IRC::print "Loading SteveCs figlet script 0.1\n";
IRC::add_command_handler("fig", "stevec_figlet");
sub stevec_figlet
{
@a=`figlet @_`;
for $b (@a){
chop $b;
IRC::command(" $b"); #don't just print $b if it starts
} #with a / or \ then the server
return 1; #might get angry and screw us up
}