Does this game have a server log that saves all the conversations, tks, deaths, etc?
Server log?
Collapse
X
-
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.
Comment