view plugins/gaim.pl @ 2532:e0be17484d62

[gaim-migrate @ 2545] My wording sucked before. It still sucks. Im sleepy. North Carolina come on and raise up, take off your shirt, twist it round your head, spin it like a helicopter... committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Thu, 18 Oct 2001 06:59:26 +0000
parents a83b4a5ffcd6
children cd938f18f3f8
line wrap: on
line source

GAIM::register("gaim test", "0.0.1", "goodbye", "");

$ver = GAIM::get_info(0);
@ids = GAIM::get_info(1);

$msg = "Gaim $ver:";
foreach $id (@ids) {
	$pro = GAIM::get_info(7, $id);
	$nam = GAIM::get_info(3, $id);
	$msg .= "\n$nam using $pro";
}

GAIM::print("Perl Says", $msg);

GAIM::command("idle", 6000);

GAIM::add_event_handler("event_buddy_signon", "echo_reply");
GAIM::add_timeout_handler(60, "notify");

sub echo_reply {
	$index = $_[0];
	$who = $_[1];
	GAIM::print_to_conv($index, $who, "Hello", 0);
}

sub notify {
	GAIM::print("1 minute", "gaim test has been loaded for 1 minute");
}

sub goodbye {
	GAIM::print("You Bastard!", "You killed Kenny!");
}