in reply to Re: Re: Adding A Channel Greet Message When A User Joins A Channel
in thread Adding A Channel Greet Message When A User Joins A Channel
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.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(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Adding A Channel Greet Message When A User Joins A Channel
by PilotinControl (Pilgrim) on Feb 16, 2004 at 23:08 UTC |