Does this game have a server log that saves all the conversations, tks, deaths, etc?
Server log?
Collapse
X
-
PennybagsTags: None -
bbrain
Re: Server log?
No, but you can modify the pytho scripts to get the info:
in the file Battlefield 2 Server/python/__init__.py locate this:
sys.stdout = fake_stream('stdout')
sys.stderr = fake_stream('stderr')
and replace with:
logFile = open('mylogfile.log', 'a')
sys.stdout = logFile
sys.stderr = logFile
it will write to mylogfile.log. -
Furious-AGE-
Re: Server log?
if you are an admin and have the admin tool open to the chat log, just copy and paste it into a text file.
This is what we do with situations where someone is banned, as once the server log is posted it's pretty much finished.Comment
-
Pennybags
Comment