Post by Silentus on Oct 7, 2004 16:32:54 GMT
I originally had a typo in my appendable log file batch job which caused it not to work. Avengerswraith noticed this and he also produced his own VB file to do the same thing, so heres 2 methos of having all your conversations loggd to a text file:
---- MASTERING YOUR LOGS ----[/color][/b]
You can enable logging of your chat window by adding: ClientChatLogging=1 to the [Game Options] section of the NWNPLAYER.INI. This creates the nwclientlog1.txt file in your logs directoy which is overwritten each login.
Once that is done, you can also append to those logs instead of replacing them using one of these methods:
OPTION 1 - Customizable Batch file (courtesy of Silentus)
.....1. Make a file in your logs directory (default is C:\NeverwinterNights\NWN\logs\) called LOGGER.BAT (or whatever you want as long as it it s a BAT or CMD file).
.....2. Edit it adding this text:
..........< drive >:\<path to NWN>\Nwmain.exe +connect 70.179.11.23:5123
..........if not exist nwfulllog.txt ren nwclientlog1.txt nwfulllog.txt
..........copy nwfulllog.txt + nwclientlog1.txt nwlogtemp
..........del nwfulllog.txt /Q
..........del nwclientlog1.txt /Q
..........ren nwlogtemp nwfulllog.txt
..........:end
.....3. Make a shortcut to this file(on your desktop or wherever) and use it to launch NWN
This will keep an historical log of all your chat client sessions in the file called nwfulllog.txt Note, this also direct connects you to the Island of Fredian. Make sure to use the shortcut or your nwfulllog.txt file will not be appended to.
OPTION 2 - VB file (courtesy of Avengers Wraith)
1. Get it here
---- MASTERING YOUR LOGS ----[/color][/b]
You can enable logging of your chat window by adding: ClientChatLogging=1 to the [Game Options] section of the NWNPLAYER.INI. This creates the nwclientlog1.txt file in your logs directoy which is overwritten each login.
Once that is done, you can also append to those logs instead of replacing them using one of these methods:
OPTION 1 - Customizable Batch file (courtesy of Silentus)
.....1. Make a file in your logs directory (default is C:\NeverwinterNights\NWN\logs\) called LOGGER.BAT (or whatever you want as long as it it s a BAT or CMD file).
.....2. Edit it adding this text:
..........< drive >:\<path to NWN>\Nwmain.exe +connect 70.179.11.23:5123
..........if not exist nwfulllog.txt ren nwclientlog1.txt nwfulllog.txt
..........copy nwfulllog.txt + nwclientlog1.txt nwlogtemp
..........del nwfulllog.txt /Q
..........del nwclientlog1.txt /Q
..........ren nwlogtemp nwfulllog.txt
..........:end
.....3. Make a shortcut to this file(on your desktop or wherever) and use it to launch NWN
This will keep an historical log of all your chat client sessions in the file called nwfulllog.txt Note, this also direct connects you to the Island of Fredian. Make sure to use the shortcut or your nwfulllog.txt file will not be appended to.
OPTION 2 - VB file (courtesy of Avengers Wraith)
1. Get it here