User Control Panel
Advertisements
HELP US, HELP YOU!
Author
Message
MikeFairbrother Senior Member Joined: 14 Feb 2004Posts: 179 Location: United Kingdom
Posted: Sun Feb 29, 2004 6:30 pm Post subject:
hi, ive got a count command: Code: <br /><br /> sub count<br />{ <br /> my ($bot, $self, $user, $msg) = @_;<br /><br /> my $user_settings = $bot->{users}->{$user};<br /> my $msn = $bot->{msn};<br /> my $settings = $bot->{settings};<br /><br />my @rl_list = $bot->{'msn'}->getlist( 'RL' );<br />my $rl_count = scalar @rl_list;<br />my $rl_list = join( ',', @rl_list );<br />my @al_list = $bot->{'msn'}->getlist( 'AL' );<br />my $al_count = scalar @al_list;<br />my $al_list = join( ',', @al_list );<br />my @fl_list = $bot->{'msn'}->getlist( 'FL' );<br />my $fl_count = scalar @fl_list;<br />my $fl_list = join( ',', @fl_list );<br /><br /> # pick one of these two lines (the first one gives counts, the second one gives lists)<br /># my $reply = "RL: $rl_count\nAL: $al_count\nFL: $fl_count\n";<br />my $reply = "RL: $rl_list\nAL: $al_list\nFL: $fl_list\n";<br /><br />return "RL: $rl_count\nAL: $al_count\nFL: $fl_count\n"<br />} <br /><br />{<br /><br />};<br /><br />
and when i type #count on my bot it says: RL: 44 AL: 39 FL: 0 Im Wondering What RL AL FL Means can anyone help? thanks _________________ Regards,
Mike
Back to top
mat007 Almost An Agent Joined: 12 Jan 2004Posts: 1375 votes : 2
Posted: Sun Feb 29, 2004 6:47 pm Post subject:
AL = Allow list so you have 39 on allow RL = Reverse list so you have 44 FL = Forwad list and you have 0
Back to top
MikeFairbrother Senior Member Joined: 14 Feb 2004Posts: 179 Location: United Kingdom
Posted: Sun Feb 29, 2004 6:48 pm Post subject:
whats Reverse And Forward all about :blink: and thanks _________________ Regards,
Mike
Back to top
Keenie Almost An Agent Joined: 31 Oct 2003Posts: 1071
Posted: Sun Feb 29, 2004 9:10 pm Post subject:
AL (allow list) = People you allow to see you online and contact you RL (reverse list) = People who have you on their forward list FL (forward list) = The people you have added, also refered to as your contact list, since its the one you see when you sign onto msn, has a limit of 150 people. BL (block list) = People youve blocked obviously
Back to top