in reply to Re: Preventing IRC flood
in thread Preventing IRC flood

Your method is solid, your logic is flawed. You need to send the info too if $received_about{$nick} isn't set. I think this will work:
if (!$received_about{$nick} or (time - $received_about{$nick}) > 60) { $received_about{$nick} = time; &snd_msg("About"); }