X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=points.pl;fp=points.pl;h=0000000000000000000000000000000000000000;hb=9ce5a8529e75cb109ed9ba3fc788c94ef47b1080;hp=e1a18863d1ed65ff4527f05254c1142083209a67;hpb=03830799201db0b0f28e9c494fdd1b5b5143749c;p=ndwebbie.git diff --git a/points.pl b/points.pl deleted file mode 100644 index e1a1886..0000000 --- a/points.pl +++ /dev/null @@ -1,54 +0,0 @@ -#************************************************************************** -# Copyright (C) 2006 by Michael Andreen * -# * -# This program is free software; you can redistribute it and/or modify * -# it under the terms of the GNU General Public License as published by * -# the Free Software Foundation; either version 2 of the License, or * -# (at your option) any later version. * -# * -# This program is distributed in the hope that it will be useful, * -# but WITHOUT ANY WARRANTY; without even the implied warranty of * -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -# GNU General Public License for more details. * -# * -# You should have received a copy of the GNU General Public License * -# along with this program; if not, write to the * -# Free Software Foundation, Inc., * -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * -#**************************************************************************/ - -use strict; -use warnings FATAL => 'all'; - -$ND::TEMPLATE->param(TITLE => 'Top Members'); - -our $BODY; -our $DBH; - -die "You don't have access" unless isMember(); - -my $type = "total"; -if (defined param('type') && param('type') =~ /^(defense|attack|total|humor|scan|rank)$/){ - $type = $1; -} -$type .= '_points' unless ($type eq 'rank'); - -my $order = 'DESC'; -$order = 'ASC' if ($type eq 'rank'); - -my $limit = 'LIMIT 10'; -$limit = '' if isHC(); - -my $query = $DBH->prepare("SELECT username,defense_points,attack_points,scan_points,humor_points, (attack_points+defense_points+scan_points/20) as total_points, rank FROM users WHERE uid IN (SELECT uid FROM groupmembers WHERE gid = 2) ORDER BY $type $order $limit"); -$query->execute; - -my @members; -my $i = 0; -while (my ($username,$defense,$attack,$scan,$humor,$total,$rank) = $query->fetchrow){ - $i++; - push @members,{Username => $username, Defense => $defense, Attack => $attack - , Scan => $scan, Humor => $humor, Total => $total, Rank => $rank, ODD => $i % 2}; -} -$BODY->param(Members => \@members); - -1;