Help for this page

Select Code to Download


  1. or download this
    
    if ($received_about{$nick} and (time - $received_about{$nick}) > 60) {
    ...
        &snd_msg("About");
    }
    
  2. or download this
    if (!$received_about{$nick} or (time - $received_about{$nick}) > 60) {
        $received_about{$nick} = time;
        &snd_msg("About");
    }