Unsupported PHP app for analysing and displaying stats for Team Fortress 2
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

about.php 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?PHP
  2. define('TITLE', 'About');
  3. require('inc/header.php');
  4. ?>
  5. <h2>About TF2 Stats</h2>
  6. <div class="left">
  7. <h3>About</h3>
  8. <p>
  9. TF2 Stats is a web application which creates statistics about
  10. <a href="http://www.teamfortress.com/">Team Fortress 2</a> servers and
  11. their players. It is being developed by
  12. <a href="http://chris.smith.name/">Chris Smith</a>.
  13. </p>
  14. <p>
  15. TF2 Stats works by analysing the log files produced by TF2 servers. It
  16. records all events that take place (such as kills, team changes, captures,
  17. and many more), and then analyses those events to produce interesting
  18. statistics.
  19. </p>
  20. <h3>Get in touch</h3>
  21. <p>
  22. If you have spotted a bug, want to request a feature, or run a server and want to
  23. be part of TF2 Stats, please feel free to get in touch. TF2 Stats is developed
  24. and operated by Chris Smith, whose contact details are available on his
  25. <a href="http://chris.smith.name/">personal website</a>.
  26. </p>
  27. <h3>Frequently Asked Questions</h3>
  28. <dl>
  29. <dt>Q. What happens if I change name?</dt>
  30. <dd>A. TF2 Stats tracks players by their Steam IDs, rather than by their
  31. aliases, so you can change your nickname as often as you like
  32. and we'll keep track of you.</dd>
  33. <dt>Q. How is my score calculated?</dt>
  34. <dd>A. Your score starts out at 1,000, and increases or decreases with
  35. each event that you are involved in. Most changes come from kills,
  36. where the killer takes a certain amount of points from their victim,
  37. based on the difference between their scores, their classes, and
  38. the weapons used.
  39. </dd>
  40. </dl>
  41. </div>
  42. <div class="right">
  43. <h3>Recent changes</h3>
  44. <ul>
  45. <li>Improved the <a href="weapons.php">weapons</a> page to include more information and a chart</li>
  46. <li>Added a 'Terrific Taunter' award</li>
  47. <li>Added a very basic <a href="groups.php">groups</a> page</li>
  48. <li>Created an <a href="about.php">about</a> page which gives a brief overview of TF2 Stats and shows a changelog</li>
  49. <li>Updated server names for Spec-Ops servers</li>
  50. <li>Enabled automatic clan detection in the importer</li>
  51. <li>Fixed issue with Firefox causing the menu to wrap when selecting or clicking links</li>
  52. <li>Added a new page for groups (clans) — <a href="group.php?group=160">see an example here</a></li>
  53. <li>Group affiliations are now displayed on player pages (<a href="player.php?id=3778">example</a>)</li>
  54. <li>Implemented the 'award winners' panel on the <a href="players.php">players</a> page</li>
  55. <li>Added missing weapon images for heavy unlockables and some pyro deflection types</li>
  56. <li>Created the <a href="weapons.php">weapons</a> page, which shows the number of kills by every known weapon</li>
  57. <li>Added logs from two new servers operated by <a href="http://www.special-ops.us/">[Spec-Ops]</a></li>
  58. </ul>
  59. </div>
  60. <?PHP
  61. require('inc/footer.php');
  62. ?>