Guest User

Untitled

a guest
Jul 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. include( "../mtasdk/mta_sdk.php" );
  3. $input = mta::getInput();
  4.  
  5. $date = date("H:i dS F"); //Get the date and time.
  6. $file = "" . $input[1] . ".log"; //Get the log file from the player
  7.  
  8. $open = fopen($file, "a+");
  9.     fwrite($open, "" .$date . " - " .$input[2] . " (" .$input[0] . ")/n"); //Format (DATE - LOGMESSAGE (PLAYERNAME)
  10. fclose($open);
  11. ?>
Add Comment
Please, Sign In to add comment