in reply to Preventing IRC flood
if ($received_about{$nick} and (time - $received_about{$nick}) > 60) { $received_about{$nick} = time; &snd_msg("About"); }
if (!$received_about{$nick} or (time - $received_about{$nick}) > 60) { $received_about{$nick} = time; &snd_msg("About"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Preventing IRC flood
by bart (Canon) on Jun 07, 2006 at 08:10 UTC | |
|
Re^2: Preventing IRC flood
by D-0 (Initiate) on Jun 07, 2006 at 07:56 UTC | |
by rminner (Chaplain) on Jun 07, 2006 at 08:14 UTC |