Well, what I would do is use a prebuilt module such as
Net::IRC or better yet,
POE::Component::IRC to handle the service setup and event model. After that I would place my code in the on_join event, and do something like the following psudo code:
if ( exists $seenusers{"$nick"} ) { # I have seen the user
my $epochnow = time();
#check to see if enough time has gone by to say hello again.
+..
say_hello("$nick") if ($seenuser{"$nick"} - $epchnow >= $HiT
+imeDly );
# if that fails then we have said hello recently, don't do
+again...
} else {
#First time $nick has been seen...
say_hello("$nick");
}
sub say_hello {
my ($nick) = @_;
privmsg($nick, "hey there bud, welcome to $channel...\n");
$seenusers=time();
}
Now you will want to write it whithout using globals, and put more tests in there, and make a cleanup loop to clean the hash as the time to live is past so you dont get a huge hash after time. thats all up to you, that is just psudo code -- you will have to write your own app.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.