Unsupported PHP app for analysing and displaying stats for Team Fortress 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

say.php 568B

1234567891011121314151617181920212223
  1. <?PHP
  2. class SayHandler {
  3. /*-------------------------------------------------------------------------*\
  4. * Handles chat events. *
  5. \*-------------------------------------------------------------------------*/
  6. public function parseLine($date, $player, $playerdetails, $line) {
  7. if (!ENABLE_SAY_TRIGGERS || !Parser::hasDaemon()) {
  8. return;
  9. }
  10. $line = substr(trim($line), 1, -1); // Cut off quotes
  11. if (strtolower($line) == 'kpd') {
  12. Parser::getDaemon()->showKPD($player);
  13. }
  14. }
  15. }
  16. ?>