Vsp core v0.45

Vsp core v0.45

No description available.
Share:

README

================================================================================
vsp stats processor - vsp(c) 2004-2005 by myrddin(myrddin8 <AT> gmail <DOT> com)
================================================================================

vsp stats processor is a multi game - log analyzer/stats generator/log parser. 
It can process log files from several games including Quake 3 Arena (q3a), 
Halflife 1, 2, Counter Strike Source (hl), Wolfenstein: Enemy Territory (wet), 
Return to Castle Wolfenstein (rtcw), Call Of Duty, COD: United Offensive (cod), 
Medal of Honor Allied Assault, MOHAA: Spearhead, MOHAA: BreakThrough (moh), 
Soldier of Fortune 2 (sof2), etc. It reads the log files generated by a game 
and displays various game statistics. vsp also supports both server logs (ex:- 
games.log for Q3A) and client logs (ex:- qconsole.log for Q3A).

Credits:
---------

             Lead Programming/Design : myrddin (myrddin8 <AT> gmail <DOT> com)
                         Programming : react
                             Hosting : gouki
                             Website : http://www.clanavl.com/vsp/
                                       http://www.clanavl.com
                                 Irc : #vsp on irc.enterthegame.com

________________________________________________________________________________



================================================================================
Installation and Usage Instructions:
================================================================================

   
   0. requirements
      ------------
   
      - php (http://www.php.net) - version 4
      - mysql (http://www.mysql.com)
      - a php compatible web server (http://www.apache.org)
      - a web browser (http://www.mozilla.org/products/firefox/)

      vsp uses php and mysql to store and retrieve stats, so you need to
      install both php and mysql on your server/system.
      You may also need a webserver that is compatible with php if you dont 
      already have one. Apache is a good one and is the recommended web server.
      php, mysql and apache can be downloaded and used for free.
      Download the latest version of the php, mysql & apache(or another webserver)

      php can be downloaded from http://www.php.net
      mysql can be downloaded from http://www.mysql.com
      apache can be downloaded from http://www.apache.org
      You can also get a free webserver from http://www.xitami.com , which may be
      easier to setup than apache.

      Install the webserver first. In windows, the PHP setup program can 
      automatically detect the webserver and configure it accordingly.
      Install mysql and php on your system.

      Check the installation instructions that comes with php, mysql and apache, 
      for further instructions. 

      http://www.google.com is a good resource as well.

      It is recommended that you run php as a module from apache.
   
   
   1. mysql setup
      -----------
   
      If you already have a mysql username/password/hostname/database set up,
      then you may skip this step. Usually your website host will provide you
      with this information. 
   
   a. Read the section (section 5?) that deals with MySQL Database 
      Administration from the mysql manual which can be found C:/mysql/Docs or
      online at http://www.mysql.com/doc/en/Adding_users.html or
      http://www.mysql.com
      This section deals with user priveleges and tells you how to make mysql
      more secure and add a new user etc. You can simplify this process using
      an application called MySQL Control Center which can be found at
      http://www.mysql.com/products/mysqlcc/index.html

      You need to setup a user AND a password in mysql. If you are planning
      to run mysql as user 'root' then you have to set up a password for user 
      'root' if it isn't already setup.
      
      The following is from the mysql documentation:-
      
      
          The default privileges on Windows give all local users full privileges 
          to all databases without specifying a password. To make MySQL more 
          secure, you should set a password for at least the root accounts. 
          You should also remove the row in the mysql.user table that has 
          Host='localhost' and User=''. This account allows anonymous access 
          but has full privileges, so removing it improves security.

          The following example shows how to remove the anonymous-user account 
          that has all privileges, and then assigns a password to the root 
          accounts:
          
          C:\> C:\mysql\bin\mysql -u root mysql
          mysql> DELETE FROM user WHERE Host='localhost' AND User='';
          mysql> FLUSH PRIVILEGES;
          mysql> QUIT
          C:\> C:\mysql\bin\mysqladmin -u root password "newpwd"
          C:\> C:\mysql\bin\mysqladmin -u root -h host_name password "newpwd"

          Replace "newpwd" with the actual root password that you want to use. 
          The double quotes are not always necessary, but they are helpful if 
          the password contains spaces or other characters that are special 
          to your command interpreter. In the second mysqladmin command, 
          replace host_name with the name of the server host. 
      
      
      If you are running mysql as root, you *MUST* have a root password set up
      as indicated above
      
      Test to see if you can load up mysql with the username and the password
      you have set up. Open up a command prompt and do the following:

        mysql -u Username -pPassword

      Note: Username = your username
            Password = your password
            There is no space between the -p and your password

      If it goes to the mysql> prompt, mysql is properly set up on your system.
      Quit mysql by typing QUIT in the mysql> prompt and that should return to 
      the command prompt.
      
        mysql> QUIT
      
      Close the command prompt window.
      
      Further help on how to set up mysql can be found at http://www.mysql.com
 
 
   2. php setup
      ---------
      
      If you already have php set up on your host then you may skip this step. 
   
   a. The following step is not required but it is recommended to make things
      easier. If you dont do the following, then you have to type the full
      php path whenever you want to execute vsp. (i.e. Instead of typing
      php vsp.php, you have to type C:/php/php vsp.php.
   
      Add the php command path (c:/php/ is the default) to your 
      environment variable PATH.
      In windows 2000/XP you can specify the PATH in
      start->
        settings->
          control panel->
            system->
              advanced->
                environment variables->
                  user variables->
                    PATH
      In win9x versions, you can specify the PATH in autoexec.bat:
        Path=C:\Windows;C:\Windows\Command;c:\php;
      
      i.e, when you type php -v from the command prompt (from any directory), 
           it should display the php version you have installed.
      Test it! Open up a command prompt window, and from C:\ or any other 
      directory, type php -v and press enter. It should display your php version.
      
   
   b. Make sure you have configured your webserver to intercept .php files.
      This should automatically be done by the php installation program. Read
      the ReadMe file that comes with php. You may have to configure some things
      manually depending on the webserver you have on your system.
      
      ***WARNING*** If php is not set up properly, your username/password for 
                    mysql may be compromised!
      
      There is a file called test.php in this distribution under the pub 
      sub-folder. After setting up php, start your webserver and configure it
      to give public access to the pub folder. Then load up the test.php file
      using your internet browser. If php is set up properly, you should see
      a whole lot of tables with variables and its values. If instead you see a
      line saying that "php is not set up properly" followed by "phpinfo();",
      then php is not set up properly! Once you confirm php is working properly,
      you can and should delete the test.php file from your system (more secure).
  
      Further help on how to set up php can be found at http://www.php.net
 
 
   3. vsp setup
      ---------
      
      If you installed mysql, php, apache or another webserver or made any 
      changes to your system configuration, its a good idea to reboot your 
      system before you continue any further.

   a.  i) Download the vsp core zip file and extract it to a folder of your choice.
   
      ii) Download all the game media zip files that you want vsp to work with and 
          extract to the same folder you chose in step (3a.i), overwriting existing 
          files if necessary. If there is no media file for the game you are 
          looking for, you can ignore this step. 

   b. Open up pub/configs/cfg-default.php file using a text editor and 
      specify your mysql database username, password and other preferences. 
      Further decription of what each setting in the cfg file mean, can be
      found in cfg-default.php itself. Before you start parsing the logs, you 
      must make sure that you set the variable $cfg['game']['name'] in the config
      file properly. Read the comments beside that variable in cfg-default.php
      
   c. To analyze a log file and generate stats
      
      There are two available methods to update your stats:-
      
       i) If you have command line shell access to server where you installed vsp...
      
          Lets say you 

Virus Scan

Pending — Not yet scanned

File Contents

359 files 2.2 MB uncompressed
.php (185) .css (11) .gif (10) .htm (9) .txt (5) .js (5) .sql (4) .png (3) .xsl (3) .jpg (1) .html (1) .lens-03-09-05 (1) +4 more
File Size
pub/
pub/configs/
pub/configs/cfg-default.php 8K
pub/games/
pub/games/q3a/
pub/games/rtcw/
pub/images/
pub/images/blank.gif 64B
pub/images/server.gif 8K
pub/images/_v_logo.gif 6K
logdata/
sql/
sql/mysql.inc.php 4K
pub/test.php 117B
sql/mysql-create.sql 3K
pub/games/q3a/weaponsets/
pub/games/q3a/weaponsets/default/
pub/games/q3a/weaponsets/default/default-weapons.php 676B
pub/games/q3a/awardsets/
pub/games/q3a/awardsets/default/
pub/games/q3a/awardsets/default/default-awards.php 21K
pub/games/q3a/skillsets/
pub/games/q3a/skillsets/default/
pub/games/q3a/skillsets/default/default-skill.php 2K
pub/games/rtcw/weaponsets/
pub/games/rtcw/weaponsets/default/
pub/games/rtcw/weaponsets/default/default-weapons.php 322B
pub/games/rtcw/awardsets/
pub/games/rtcw/awardsets/default/
pub/games/rtcw/awardsets/default/default-awards.php 75B
pub/games/rtcw/skillsets/
pub/games/rtcw/skillsets/default/
pub/games/rtcw/skillsets/default/default-skill.php 1K
pub/games/wet/
pub/games/wet/awardsets/
pub/games/wet/awardsets/default/
pub/games/wet/awardsets/default/default-awards.php 75B
pub/games/wet/skillsets/
pub/games/wet/skillsets/default/
pub/games/wet/skillsets/default/default-skill.php 1K
pub/games/wet/weaponsets/
pub/games/wet/weaponsets/default/
pub/games/default/
pub/games/default/awardsets/
pub/games/default/awardsets/default/
pub/games/default/awardsets/default/default-awards.php 8K
pub/games/default/awardsets/default/default.gif 196B
pub/games/default/iconsets/
pub/games/default/iconsets/default/
pub/games/default/iconsets/default/default/
pub/games/default/iconsets/default/default/default/
pub/games/default/iconsets/default/default/default/default.gif 886B
pub/games/default/iconsets/iconsetname_teamname_rolename
pub/games/default/mapsets/
pub/games/default/mapsets/default/
pub/games/default/rolesets/
pub/games/default/rolesets/default/
pub/games/default/rolesets/default/default/
pub/games/default/rolesets/default/default/default.gif 868B
pub/games/default/rolesets/rolesetname_rolename_teamname
pub/games/default/skillsets/
pub/games/default/skillsets/default/
pub/games/default/skillsets/default/default-skill.php 1K
pub/games/default/weaponsets/
pub/games/default/weaponsets/default/
pub/games/default/weaponsets/default/default-weapons.php 322B
pub/games/default/weaponsets/default/default.gif 244B
pub/games/sof2/
pub/games/sof2/awardsets/
pub/games/sof2/awardsets/default/
pub/games/sof2/awardsets/default/default-awards.php 75B
pub/games/sof2/skillsets/
pub/games/sof2/skillsets/default/
pub/games/sof2/skillsets/default/default-skill.php 1K
pub/games/sof2/weaponsets/
pub/games/sof2/weaponsets/default/
pub/games/sof2/weaponsets/default/default-weapons.php 322B
pub/games/hl/
pub/games/hl/awardsets/
pub/games/hl/awardsets/default/
pub/games/hl/awardsets/default/default-awards.php 75B
pub/games/hl/skillsets/
pub/games/hl/skillsets/default/
pub/games/hl/skillsets/default/default-skill.php 2K
pub/games/hl/weaponsets/
pub/games/hl/weaponsets/default/
pub/games/hl/weaponsets/default/default-weapons.php 2K
pub/include/
pub/include/playerBanList-default.inc.php 943B
pub/include/playerExcludeList-default.inc.php 81B
pub/themes/
pub/themes/bismarck/
pub/themes/bismarck/all.inc.php 10K
pub/themes/bismarck/awardstat.php 10K
pub/themes/bismarck/gamestat.php 62K
pub/themes/bismarck/hitbox.php 5K
pub/themes/bismarck/images/
pub/themes/bismarck/images/body.jpg 24K
pub/themes/bismarck/images/bodybg.png 30K
pub/themes/bismarck/index.php 28K
pub/themes/bismarck/playerstat.php 55K
pub/themes/bismarck/settings.php 3K
pub/themes/bismarck/skins/
pub/themes/bismarck/util.php 6K
password.inc.php 386B
ftplogs/
pub/themes/bismarck/images/bodybg-duotone.png 28K
pub/themes/bismarck/images/bodybg-triotone.png 28K
pub/index.php 274B
pub/index.html 188B
pub/games/cod/
pub/games/cod/awardsets/
pub/games/cod/awardsets/default/
pub/games/cod/awardsets/default/default-awards.php 75B
pub/games/cod/skillsets/
pub/games/cod/skillsets/default/
pub/games/cod/skillsets/default/default-skill.php 1K
pub/games/cod/weaponsets/
pub/games/cod/weaponsets/default/
pub/games/cod/weaponsets/default/default-weapons.php 322B
vsp-sof2.php 9K
vsp-wet.php 13K
vutil.php 3K
ReadME.txt 44K
vsp.php 52K
vsp-client.php 21K
vsp-cod.php 22K
vsp-hl.php 20K
vsp-moh.php 13K
vsp-q3a.php 40K
vsp-rtcw.php 4K
pub/games/moh/
pub/games/moh/awardsets/
pub/games/moh/awardsets/default/
pub/games/moh/awardsets/default/default-awards.php 75B
pub/games/moh/skillsets/
pub/games/moh/skillsets/default/
pub/games/moh/skillsets/default/default-skill.php 1K
pub/games/moh/weaponsets/
pub/games/moh/weaponsets/default/
pub/games/moh/weaponsets/default/default-weapons.php 322B
pub/games/wet/weaponsets/default/default-weapons.php 322B
pub/games/default/mapsets/default/default.gif 1K
pub/lib/
pub/lib/adodb/
pub/lib/adodb/adodb-csvlib.inc.php 8K
pub/lib/adodb/adodb-datadict.inc.php 20K
pub/lib/adodb/adodb-error.inc.php 9K
pub/lib/adodb/adodb-errorhandler.inc.php 3K
pub/lib/adodb/adodb-errorpear.inc.php 2K
pub/lib/adodb/adodb-exceptions.inc.php 2K
pub/lib/adodb/adodb-iterator.inc.php 2K
pub/lib/adodb/adodb-lib.inc.php 28K
pub/lib/adodb/adodb-pager.inc.php 8K
pub/lib/adodb/adodb-pear.inc.php 10K
pub/lib/adodb/adodb-perf.inc.php 27K
pub/lib/adodb/adodb-perf.inc.php.#.LENS-03-09-05 27K
pub/lib/adodb/adodb-php4.inc.php 334B
pub/lib/adodb/adodb-time.inc.php 29K
pub/lib/adodb/adodb-time.zip 9K
pub/lib/adodb/adodb-xmlschema.inc.php 56K
pub/lib/adodb/adodb.inc.php 108K
pub/lib/adodb/contrib/
pub/lib/adodb/contrib/toxmlrpc.inc.php 6K
pub/lib/adodb/cute_icons_for_site/
pub/lib/adodb/cute_icons_for_site/adodb.gif 1K
pub/lib/adodb/cute_icons_for_site/adodb2.gif 1K
pub/lib/adodb/datadict/
pub/lib/adodb/datadict/datadict-access.inc.php 2K
pub/lib/adodb/datadict/datadict-db2.inc.php 4K
pub/lib/adodb/datadict/datadict-firebird.inc.php 4K
pub/lib/adodb/datadict/datadict-generic.inc.php 3K
pub/lib/adodb/datadict/datadict-ibase.inc.php 1K
pub/lib/adodb/datadict/datadict-informix.inc.php 2K
pub/lib/adodb/datadict/datadict-mssql.inc.php 6K
pub/lib/adodb/datadict/datadict-mysql.inc.php 5K
pub/lib/adodb/datadict/datadict-oci8.inc.php 7K
pub/lib/adodb/datadict/datadict-postgres.inc.php 12K
pub/lib/adodb/datadict/datadict-sapdb.inc.php 3K
pub/lib/adodb/datadict/datadict-sybase.inc.php 6K
pub/lib/adodb/docs/
pub/lib/adodb/docs/docs-adodb.htm 236K
pub/lib/adodb/docs/docs-datadict.htm 22K
pub/lib/adodb/docs/docs-oracle.htm 25K
pub/lib/adodb/docs/docs-perf.htm 32K
pub/lib/adodb/docs/docs-session.htm 11K
pub/lib/adodb/docs/old-changelog.htm 44K
pub/lib/adodb/docs/readme.htm 3K
pub/lib/adodb/docs/tips_portable_sql.htm 20K
pub/lib/adodb/docs/tute.htm 16K
pub/lib/adodb/drivers/
pub/lib/adodb/drivers/adodb-access.inc.php 2K
pub/lib/adodb/drivers/adodb-ado.inc.php 16K
pub/lib/adodb/drivers/adodb-ado5.inc.php 16K
pub/lib/adodb/drivers/adodb-ado_access.inc.php 1K
pub/lib/adodb/drivers/adodb-ado_mssql.inc.php 3K
pub/lib/adodb/drivers/adodb-borland_ibase.inc.php 2K
pub/lib/adodb/drivers/adodb-csv.inc.php 5K
pub/lib/adodb/drivers/adodb-db2.inc.php 8K
pub/lib/adodb/drivers/adodb-fbsql.inc.php 7K
pub/lib/adodb/drivers/adodb-firebird.inc.php 2K
pub/lib/adodb/drivers/adodb-ibase.inc.php 25K
pub/lib/adodb/drivers/adodb-informix.inc.php 911B
pub/lib/adodb/drivers/adodb-informix72.inc.php 11K
pub/lib/adodb/drivers/adodb-ldap.inc.php 10K
pub/lib/adodb/drivers/adodb-mssql.inc.php 29K
pub/lib/adodb/drivers/adodb-mssqlpo.inc.php 2K
pub/lib/adodb/drivers/adodb-mysql.inc.php 18K
pub/lib/adodb/drivers/adodb-mysqli.inc.php 20K
pub/lib/adodb/drivers/adodb-mysqlt.inc.php 3K
pub/lib/adodb/drivers/adodb-netezza.inc.php 5K
pub/lib/adodb/drivers/adodb-oci8.inc.php 38K
pub/lib/adodb/drivers/adodb-oci805.inc.php 2K
pub/lib/adodb/drivers/adodb-oci8po.inc.php 6K
pub/lib/adodb/drivers/adodb-odbc.inc.php 20K
pub/lib/adodb/drivers/adodb-odbc_mssql.inc.php 8K
pub/lib/adodb/drivers/adodb-odbc_oracle.inc.php 3K
pub/lib/adodb/drivers/adodb-odbtp.inc.php 21K
pub/lib/adodb/drivers/adodb-odbtp_unicode.inc.php 1K
pub/lib/adodb/drivers/adodb-oracle.inc.php 9K
pub/lib/adodb/drivers/adodb-pdo.inc.php 8K
pub/lib/adodb/drivers/adodb-postgres.inc.php 531B
pub/lib/adodb/drivers/adodb-postgres64.inc.php 30K
pub/lib/adodb/drivers/adodb-postgres7.inc.php 7K
pub/lib/adodb/drivers/adodb-proxy.inc.php 840B
pub/lib/adodb/drivers/adodb-sapdb.inc.php 5K
pub/lib/adodb/drivers/adodb-sqlanywhere.inc.php 4K
pub/lib/adodb/drivers/adodb-sqlite.inc.php 8K
pub/lib/adodb/drivers/adodb-sqlite.inc.php.bak 8K
pub/lib/adodb/drivers/adodb-sqlitepo.inc.php 2K
pub/lib/adodb/drivers/adodb-sybase.inc.php 12K
pub/lib/adodb/drivers/adodb-vfp.inc.php 3K
pub/lib/adodb/lang/
pub/lib/adodb/lang/adodb-ar.inc.php 1K
pub/lib/adodb/lang/adodb-bg.inc.php 2K
pub/lib/adodb/lang/adodb-bgutf8.inc.php 2K
pub/lib/adodb/lang/adodb-ca.inc.php 2K
pub/lib/adodb/lang/adodb-cn.inc.php 2K
pub/lib/adodb/lang/adodb-cz.inc.php 2K
pub/lib/adodb/lang/adodb-de.inc.php 2K
pub/lib/adodb/lang/adodb-en.inc.php 2K
pub/lib/adodb/lang/adodb-es.inc.php 2K
pub/lib/adodb/lang/adodb-fr.inc.php 2K
pub/lib/adodb/lang/adodb-hu.inc.php 2K
pub/lib/adodb/lang/adodb-it.inc.php 2K
pub/lib/adodb/lang/adodb-nl.inc.php 2K
pub/lib/adodb/lang/adodb-pl.inc.php 2K
pub/lib/adodb/lang/adodb-pt-br.inc.php 2K
pub/lib/adodb/lang/adodb-ro.inc.php 2K
pub/lib/adodb/lang/adodb-ru1251.inc.php 2K
pub/lib/adodb/lang/adodb-sv.inc.php 2K
pub/lib/adodb/license.txt 25K
pub/lib/adodb/pear/
pub/lib/adodb/pear/Auth/
pub/lib/adodb/pear/Auth/Container/
pub/lib/adodb/pear/Auth/Container/ADOdb.php 13K
pub/lib/adodb/pear/Auth/Container/CVS/
pub/lib/adodb/pear/readme.Auth.txt 570B
pub/lib/adodb/perf/
pub/lib/adodb/perf/perf-db2.inc.php 3K
pub/lib/adodb/perf/perf-informix.inc.php 2K
pub/lib/adodb/perf/perf-mssql.inc.php 5K
pub/lib/adodb/perf/perf-mysql.inc.php 7K
pub/lib/adodb/perf/perf-oci8.inc.php 16K
pub/lib/adodb/perf/perf-postgres.inc.php 4K
pub/lib/adodb/pivottable.inc.php 6K
pub/lib/adodb/readme.txt 2K
pub/lib/adodb/rsfilter.inc.php 1K
pub/lib/adodb/server.php 2K
pub/lib/adodb/session/
pub/lib/adodb/session/adodb-compress-bzip2.php 2K
pub/lib/adodb/session/adodb-compress-gzip.php 2K
pub/lib/adodb/session/adodb-cryptsession.php 614B
pub/lib/adodb/session/adodb-encrypt-mcrypt.php 2K
pub/lib/adodb/session/adodb-encrypt-md5.php 795B
pub/lib/adodb/session/adodb-encrypt-secret.php 1K
pub/lib/adodb/session/adodb-sess.txt 4K
pub/lib/adodb/session/adodb-session-clob.php 538B
pub/lib/adodb/session/adodb-session.php 18K
pub/lib/adodb/session/adodb-sessions.mysql.sql 396B
pub/lib/adodb/session/adodb-sessions.oracle.clob.sql 281B
pub/lib/adodb/session/adodb-sessions.oracle.sql 313B
pub/lib/adodb/session/crypt.inc.php 1K
pub/lib/adodb/session/old/
pub/lib/adodb/session/old/adodb-cryptsession.php 9K
pub/lib/adodb/session/old/adodb-session-clob.php 15K
pub/lib/adodb/session/old/adodb-session.php 13K
pub/lib/adodb/session/old/crypt.inc.php 1K
pub/lib/adodb/tests/
pub/lib/adodb/tests/benchmark.php 2K
pub/lib/adodb/tests/client.php 4K
pub/lib/adodb/tests/pdo.php 936B
pub/lib/adodb/tests/test-datadict.php 8K
pub/lib/adodb/tests/test-perf.php 959B
pub/lib/adodb/tests/test-pgblob.php 2K
pub/lib/adodb/tests/test-php5.php 2K
pub/lib/adodb/tests/test-xmlschema.php 1K
pub/lib/adodb/tests/test.php 52K
pub/lib/adodb/tests/test2.php 599B
pub/lib/adodb/tests/test3.php 939B
pub/lib/adodb/tests/test4.php 4K
pub/lib/adodb/tests/test5.php 1K
pub/lib/adodb/tests/testcache.php 834B
pub/lib/adodb/tests/testdatabases.inc.php 14K
pub/lib/adodb/tests/testgenid.php 766B
pub/lib/adodb/tests/testmssql.php 2K
pub/lib/adodb/tests/testoci8.php 2K
pub/lib/adodb/tests/testoci8cursor.php 3K
pub/lib/adodb/tests/testpaging.php 2K
pub/lib/adodb/tests/testpear.php 906B
pub/lib/adodb/tests/testsessions.php 2K
pub/lib/adodb/tests/test_rs_array.php 719B
pub/lib/adodb/tests/time.php 494B
pub/lib/adodb/tests/tmssql.php 2K
pub/lib/adodb/tests/xmlschema.xml 848B
pub/lib/adodb/toexport.inc.php 3K
pub/lib/adodb/tohtml.inc.php 5K
pub/lib/adodb/xmlschema.dtd 1K
pub/lib/adodb/xsl/
pub/lib/adodb/xsl/convert-0.1-0.2.xsl 5K
pub/lib/adodb/xsl/convert-0.2-0.1.xsl 6K
pub/lib/adodb/xsl/remove-0.2.xsl 1K
pub/lib/domTT/
pub/lib/domTT/alphaAPI.js 5K
pub/lib/domTT/BUGS 1K
pub/lib/domTT/Changelog 13K
pub/lib/domTT/domLib.js 9K
pub/lib/domTT/domTT.js 15K
pub/lib/domTT/domTT_drag.js 2K
pub/lib/domTT/LICENSE 26K
pub/lib/domTT/README 5K
pub/lib/domTT/TODO 10K
ftplogs/ftplogs
logdata/logdata
pub/lib/sorttable/
pub/lib/sorttable/LICENSE 2K
pub/lib/sorttable/sorttable.js 7K
pub/themes/bismarck/skins/sssp/
pub/themes/bismarck/skins/sssp/sssp.css 4K
pub/themes/bismarck/skins/swat/
pub/themes/bismarck/skins/swat/swat.css 3K
pub/themes/bismarck/skins/xp/
pub/themes/bismarck/skins/xp/xp.css 2K
pub/themes/bismarck/skins/avalanche/
pub/themes/bismarck/skins/avalanche/avalanche.css 3K
pub/themes/bismarck/skins/avalanche-b/
pub/themes/bismarck/skins/avalanche-b/avalanche-b.css 3K
pub/themes/bismarck/skins/avalanche-i/
pub/themes/bismarck/skins/avalanche-i/avalanche-i.css 3K
pub/themes/bismarck/skins/camo/
pub/themes/bismarck/skins/camo/camo.css 3K
pub/themes/bismarck/skins/cyber/
pub/themes/bismarck/skins/cyber/cyber.css 4K
pub/themes/bismarck/skins/evilsmurfs/
pub/themes/bismarck/skins/evilsmurfs/evilsmurfs.css 4K
pub/themes/bismarck/skins/f8tal-b/
pub/themes/bismarck/skins/f8tal-b/f8tal-b.css 4K
pub/themes/bismarck/skins/ignited/
pub/themes/bismarck/skins/ignited/ignited.css 4K

Comments (0)

Login to leave a comment.

File Info

Filename
vsp-core_v0.45.zip
Size
793.66 KB
Game
ET
Author
Admin
Downloads
3
Uploaded
11.02.2026
Category
Tools

Rating

0.0 /5
0 ratings

Detailed Rating

Design 0.0/5 (0)
Gameplay 0.0/5 (0)
Textures 0.0/5 (0)
Performance 0.0/5 (0)
Originality 0.0/5 (0)

We use cookies to ensure the best experience on our website. By continuing to browse, you agree to our use of cookies. Privacy Policy.