diff options
author | Patrick Li <pat@FreeBSD.org> | 2001-11-23 18:57:43 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2001-11-23 18:57:43 +0000 |
commit | d7b45ed5f90c983a5c91360354350f9f3e3efeb8 (patch) | |
tree | 6944903e501da229eeafa3e86e4dd81f0790c334 /games/hlserver-psychostats | |
parent | Fix IMAP/IMAP-SSL support. (diff) |
Add hlserver-psychostats, a popular player statistics generator for
Half-Life mods Counter Strike and Day of Defeat.
Submitted by: Martin Matuska <matuska@wu-wien.ac.at>
Reviewed by: lioux
Notes
Notes:
svn path=/head/; revision=50432
Diffstat (limited to 'games/hlserver-psychostats')
-rw-r--r-- | games/hlserver-psychostats/Makefile | 43 | ||||
-rw-r--r-- | games/hlserver-psychostats/distinfo | 1 | ||||
-rw-r--r-- | games/hlserver-psychostats/files/patch-stats | 11 | ||||
-rw-r--r-- | games/hlserver-psychostats/files/patch-stats.cfg | 29 | ||||
-rw-r--r-- | games/hlserver-psychostats/pkg-comment | 1 | ||||
-rw-r--r-- | games/hlserver-psychostats/pkg-descr | 12 | ||||
-rw-r--r-- | games/hlserver-psychostats/pkg-plist | 340 |
7 files changed, 437 insertions, 0 deletions
diff --git a/games/hlserver-psychostats/Makefile b/games/hlserver-psychostats/Makefile new file mode 100644 index 000000000000..fb942a36e45a --- /dev/null +++ b/games/hlserver-psychostats/Makefile @@ -0,0 +1,43 @@ +# New ports collection makefile for: Half Life Psychostats +# Date created: Sun Oct 14 14:34:20 CEST 2001 +# Whom: matuska@wu-wien.ac.at +# +# $FreeBSD$ +# + +PORTNAME= psychostats +PORTVERSION= 1.7 +CATEGORIES= games www +MASTER_SITES= ftp://ftp.psychostats.com/psychostats/ \ + http://www.madeagle.ru/apps/stats/psychostats/linux/1.7/ \ + http://www.realityslap.com/downloads/ \ + http://www.freebooters.org/ps/ \ + http://www.cool-squad.com/downloads/ \ + http://www.green-goblin.de/psychostats/ +DISTNAME= ${PORTNAME}${PORTVERSION} + +MAINTAINER= matuska@wu-wien.ac.at + +WRKSRC= ${WRKDIR}/${DISTNAME} + +# files which should be installed with executable perms +EXECUTABLES= stats install.pl + +post-patch: +.for files in ${EXECUTABLES} + @${PERL} -pi -e 's|/usr/bin/perl|${PERL}|' \ + ${WRKSRC}/${files} +.endfor + @${PERL} -pi -e 's|%%PREFIX%%|${PREFIX}|; \ + s|%%LOCALBASE%%|${LOCALBASE}|; \ + s|%%HLDSDIR%%|${HLDSDIR}|' \ + ${WRKSRC}/stats.cfg + +slaveport-post-install: +.for files in ${EXECUTABLES} + @${CHMOD} u+x ${PREFIX}${HLDSDIR}${DISTNAME}/${files} +.endfor + +HALFLIFE_COUNTERSTRIKE_MASTER= ${.CURDIR}/../hlserver-cs + +.include "${HALFLIFE_COUNTERSTRIKE_MASTER}/Makefile" diff --git a/games/hlserver-psychostats/distinfo b/games/hlserver-psychostats/distinfo new file mode 100644 index 000000000000..31577ba41622 --- /dev/null +++ b/games/hlserver-psychostats/distinfo @@ -0,0 +1 @@ +MD5 (psychostats1.7.tar.gz) = ea99fff2012615afb1bb673a37e6add5 diff --git a/games/hlserver-psychostats/files/patch-stats b/games/hlserver-psychostats/files/patch-stats new file mode 100644 index 000000000000..fe8a5d5a8105 --- /dev/null +++ b/games/hlserver-psychostats/files/patch-stats @@ -0,0 +1,11 @@ +--- stats.orig Fri Nov 23 13:20:38 2001 ++++ stats Fri Nov 23 13:20:58 2001 +@@ -22,7 +22,7 @@ + my $starttime = time(); # time when stats update started. + + my $OS = $^O; +-my $os_slash = ($OS eq 'linux') ? '/' : '\\'; ++my $os_slash = ($OS eq 'linux' or 'FreeBSD') ? '/' : '\\'; + my $progpath = &getprogdir(); # relative path the script is running in. + + #push(@INC,$progpath); diff --git a/games/hlserver-psychostats/files/patch-stats.cfg b/games/hlserver-psychostats/files/patch-stats.cfg new file mode 100644 index 000000000000..19edfd057234 --- /dev/null +++ b/games/hlserver-psychostats/files/patch-stats.cfg @@ -0,0 +1,29 @@ +--- stats.cfg.orig Sun Nov 18 19:47:50 2001 ++++ stats.cfg Sun Nov 18 19:47:05 2001 +@@ -12,13 +12,13 @@ + # must be on its own line. The directories are loaded in the order given. + + LogPath = { +- /usr/games/halflife/hlds_l/cstrike/logs ++ %%PREFIX%%%%HLDSDIR%%cstrike/logs + } + + # Destination HTML directory. This will usually be a path in your + # webserver root somewhere. + +-HtmlPath = /home/httpd/html/stats ++HtmlPath = %%LOCALBASE%%/www + + # Define what type of server you're running. + # valid options: cstrike, dod +@@ -37,8 +37,8 @@ + # maps for download. If you don't provide maps for download, you don't + # need to worry about it. + +-PicsPath = /home/httpd/html/stats/images/mappics +-DLPath = /home/httpd/html/cstrike/maps ++PicsPath = %%LOCALBASE%%/www/stats/images/mappics ++DLPath = %%LOCALBASE%%/www/stats/maps + + # If a theme has a 'copy' option it will copy any files listed for it + # to the HTMLPATH if it does not already exist. Setting this option to diff --git a/games/hlserver-psychostats/pkg-comment b/games/hlserver-psychostats/pkg-comment new file mode 100644 index 000000000000..01fd835d74f2 --- /dev/null +++ b/games/hlserver-psychostats/pkg-comment @@ -0,0 +1 @@ +Popular player statistics generator for Half-Life (cs|dod) diff --git a/games/hlserver-psychostats/pkg-descr b/games/hlserver-psychostats/pkg-descr new file mode 100644 index 000000000000..8b7fcfd428c6 --- /dev/null +++ b/games/hlserver-psychostats/pkg-descr @@ -0,0 +1,12 @@ +PsychoStats is a statistics generator for the game Half-Life. + +It will work with any Half-Life MOD that uses the standard log +file format as of Half-Life v1.1.0.6. However, it will only give +basic player stats and will not show team statistics and certain +map based statistics unless the MOD is supported fully by PsychoStats. +Also the default themes that come with PsychoStats are specifically +designed for Counter-Strike or Day of Defeat. + +WWW: http://www.psychostats.com/ + +- Martin Matuska <matuska@wu-wien.ac.at> diff --git a/games/hlserver-psychostats/pkg-plist b/games/hlserver-psychostats/pkg-plist new file mode 100644 index 000000000000..712a49f8f45c --- /dev/null +++ b/games/hlserver-psychostats/pkg-plist @@ -0,0 +1,340 @@ +%%HLDSDIR%%psychostats1.7/README.txt +%%HLDSDIR%%psychostats1.7/aliases.cfg +%%HLDSDIR%%psychostats1.7/awards.cfg +%%HLDSDIR%%psychostats1.7/changelog +%%HLDSDIR%%psychostats1.7/clanlogos.cfg +%%HLDSDIR%%psychostats1.7/clannames.cfg +%%HLDSDIR%%psychostats1.7/clantags.cfg +%%HLDSDIR%%psychostats1.7/cronexample +%%HLDSDIR%%psychostats1.7/deny.cfg +%%HLDSDIR%%psychostats1.7/denyclan.cfg +%%HLDSDIR%%psychostats1.7/ignorelines.cfg +%%HLDSDIR%%psychostats1.7/images/banner1.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_ak47.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_aug.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_awp.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_deagle.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_elite.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_fiveseven.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_g3sg1.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_glock18.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_grenade.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_headshot.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_knife.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_m249.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_m3.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_m4a1.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_mac10.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_mp5navy.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_p228.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_p90.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_scout.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_sg550.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_sg552.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_tank.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_tmp.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_train.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_ump45.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_usp.gif +%%HLDSDIR%%psychostats1.7/images/cstrike_xm1014.gif +%%HLDSDIR%%psychostats1.7/images/dod_bar.gif +%%HLDSDIR%%psychostats1.7/images/dod_colt.gif +%%HLDSDIR%%psychostats1.7/images/dod_garand.gif +%%HLDSDIR%%psychostats1.7/images/dod_gewehr.gif +%%HLDSDIR%%psychostats1.7/images/dod_grenade.gif +%%HLDSDIR%%psychostats1.7/images/dod_handgrenade.gif +%%HLDSDIR%%psychostats1.7/images/dod_hitlerknife.gif +%%HLDSDIR%%psychostats1.7/images/dod_kar.gif +%%HLDSDIR%%psychostats1.7/images/dod_knife.gif +%%HLDSDIR%%psychostats1.7/images/dod_luger.gif +%%HLDSDIR%%psychostats1.7/images/dod_mortar.gif +%%HLDSDIR%%psychostats1.7/images/dod_mp40.gif +%%HLDSDIR%%psychostats1.7/images/dod_mp44.gif +%%HLDSDIR%%psychostats1.7/images/dod_spring.gif +%%HLDSDIR%%psychostats1.7/images/dod_stickgrenade.gif +%%HLDSDIR%%psychostats1.7/images/dod_stickgrenade_ex.gif +%%HLDSDIR%%psychostats1.7/images/dod_tank.gif +%%HLDSDIR%%psychostats1.7/images/dod_thompson.gif +%%HLDSDIR%%psychostats1.7/images/dod_world.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_cowboy.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_forest.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_highrise.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_oilrig.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_rising_sun.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_snowy.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_snowy2.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_swissbank.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_tundra.gif +%%HLDSDIR%%psychostats1.7/images/mappics/as_villa.gif +%%HLDSDIR%%psychostats1.7/images/mappics/awp_map.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_747.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_aaa.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_alpin.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_arabstreets.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_assault.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_assault2k.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_assault_upc.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_awpfest.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_backalley.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_beirut.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_bunker.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_cairo.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_church.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_cliff.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_deadcalm.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_desert.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_docks.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_drugwar.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_espana.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_estate.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_farmyard.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_futurcom.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_garten_chillout.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_godfather.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_hallenbad.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_hotelroyal.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_india.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_iraq.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_italy.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_mansion.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_mb.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_mice_final.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_middleage.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_militia.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_ncruins2.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_office.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_pent.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_rats2.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_robbery.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_sibiria_apc.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_siege.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_siege_apc2.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_speedball.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_thunder.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_tomb.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_trainraid.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_urbanvilla.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_vineyard.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cs_winternights.gif +%%HLDSDIR%%psychostats1.7/images/mappics/csde_tropic.gif +%%HLDSDIR%%psychostats1.7/images/mappics/cstrike_nopicture.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_aldi.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_atlantis.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_avalley.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_aztec.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_bridge.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_cbble.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_celtic.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_cityrush.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_darkrats.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_dawn.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_deep6.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_dust.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_dust2.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_dust2001.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_dustbunnies.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_fang.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_fernandez.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_foption.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_heat.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_inferno.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_inferno_build22.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_jeepathon2k.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_keller.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_kurow.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_lazy_final.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_luxor.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_nowhere_x.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_nuke.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_prodigy.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_rats.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_rats3.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_rotterdam.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_scud.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_seaside.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_silentoperation.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_storm.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_strike.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_survivor.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_tiefgarage.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_torn.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_train.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_vegas.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_vengeance.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_vertigo.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_village.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_waterworks.gif +%%HLDSDIR%%psychostats1.7/images/mappics/de_zagros.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_caen.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_cherbourg.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_dam.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_hill.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_koln.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_nopicture.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_omaha.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_oslo.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_seg3.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_sicily.gif +%%HLDSDIR%%psychostats1.7/images/mappics/dod_snowtown.gif +%%HLDSDIR%%psychostats1.7/images/mappics/ga_new.gif +%%HLDSDIR%%psychostats1.7/images/tfc_ac.gif +%%HLDSDIR%%psychostats1.7/images/tfc_autorifle.gif +%%HLDSDIR%%psychostats1.7/images/tfc_axe.gif +%%HLDSDIR%%psychostats1.7/images/tfc_building_dispenser.gif +%%HLDSDIR%%psychostats1.7/images/tfc_detpack.gif +%%HLDSDIR%%psychostats1.7/images/tfc_empgrenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_flames.gif +%%HLDSDIR%%psychostats1.7/images/tfc_gasgrenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_gl_grenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_headshot.gif +%%HLDSDIR%%psychostats1.7/images/tfc_infection.gif +%%HLDSDIR%%psychostats1.7/images/tfc_knife.gif +%%HLDSDIR%%psychostats1.7/images/tfc_medikit.gif +%%HLDSDIR%%psychostats1.7/images/tfc_mirvgrenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_nailgrenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_nails.gif +%%HLDSDIR%%psychostats1.7/images/tfc_napalmgrenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_normalgrenade.gif +%%HLDSDIR%%psychostats1.7/images/tfc_pipebomb.gif +%%HLDSDIR%%psychostats1.7/images/tfc_railgun.gif +%%HLDSDIR%%psychostats1.7/images/tfc_rocket.gif +%%HLDSDIR%%psychostats1.7/images/tfc_sentrygun.gif +%%HLDSDIR%%psychostats1.7/images/tfc_shotgun.gif +%%HLDSDIR%%psychostats1.7/images/tfc_sniperrifle.gif +%%HLDSDIR%%psychostats1.7/images/tfc_spanner.gif +%%HLDSDIR%%psychostats1.7/images/tfc_supernails.gif +%%HLDSDIR%%psychostats1.7/images/tfc_supershotgun.gif +%%HLDSDIR%%psychostats1.7/images/tfc_timer.gif +%%HLDSDIR%%psychostats1.7/install.pl +%%HLDSDIR%%psychostats1.7/permit.cfg +%%HLDSDIR%%psychostats1.7/permitclan.cfg +%%HLDSDIR%%psychostats1.7/playerlogos.cfg +%%HLDSDIR%%psychostats1.7/registered.cfg +%%HLDSDIR%%psychostats1.7/rolenames.cfg +%%HLDSDIR%%psychostats1.7/stats +%%HLDSDIR%%psychostats1.7/stats.cfg +%%HLDSDIR%%psychostats1.7/theme.cfg +%%HLDSDIR%%psychostats1.7/theme_notes.txt +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/README.txt +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/award.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/awardlist.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/banner.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage-deaths.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage-kdr.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage-kills.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage-kpm.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage-player.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage-skill.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpage.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clanpageheader.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-awards.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-deaths.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-kdr.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-kills.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-members.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-rank.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans-tag.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clans.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/clansheader.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/index-deaths.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/index-kdr.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/index-kills.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/index-kpm.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/index-name.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/index.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/indexfooter.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/indexheader.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/mappage.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/maps.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/motd.txt +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/navbar.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/player.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/style.css +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/theme.cfg +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/top10plr.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/weapon.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7/weaponlist.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/award.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/awardlist.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/banner.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/clanpage.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/clans.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/index.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/indexfooter.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/indexheader.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/mappage.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/maps.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/motd.txt +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/navbar.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/player.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/style.css +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/theme.cfg +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/top10plr.html +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/weapon.php +%%HLDSDIR%%psychostats1.7/themes/cstrike1.7php/weaponlist.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7/award.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/awardlist.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/banner.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage-deaths.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage-kdr.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage-kills.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage-kpm.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage-player.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage-skill.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpage.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clanpageheader.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-awards.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-deaths.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-kdr.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-kills.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-members.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-rank.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans-tag.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clans.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/clansheader.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/index-deaths.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/index-kdr.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/index-kills.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/index-kpm.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/index-name.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/index.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/indexfooter.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/indexheader.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/mappage.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/mappage.html.old +%%HLDSDIR%%psychostats1.7/themes/dod1.7/maps.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/motd.txt +%%HLDSDIR%%psychostats1.7/themes/dod1.7/navbar.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/player.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/style.css +%%HLDSDIR%%psychostats1.7/themes/dod1.7/theme.cfg +%%HLDSDIR%%psychostats1.7/themes/dod1.7/weapon.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/weaponlist.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7/weaponslist.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/award.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/awardlist.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/banner.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/clanpage.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/clans.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/index.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/indexfooter.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/indexheader.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/mappage.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/maps.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/motd.txt +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/navbar.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/player.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/style.css +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/theme.cfg +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/top10plr.html +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/weapon.php +%%HLDSDIR%%psychostats1.7/themes/dod1.7php/weaponlist.php +%%HLDSDIR%%psychostats1.7/weapons.cfg +@dirrm %%HLDSDIR%%psychostats1.7/themes/dod1.7php +@dirrm %%HLDSDIR%%psychostats1.7/themes/dod1.7 +@dirrm %%HLDSDIR%%psychostats1.7/themes/cstrike1.7php +@dirrm %%HLDSDIR%%psychostats1.7/themes/cstrike1.7 +@dirrm %%HLDSDIR%%psychostats1.7/themes +@dirrm %%HLDSDIR%%psychostats1.7/images/mappics +@dirrm %%HLDSDIR%%psychostats1.7/images +@dirrm %%HLDSDIR%%psychostats1.7 |