A commonly asked question.
To activate chat logging, go to your NWN directory, open nwnplayer.ini and, under [Game Options], add the line ClientChatLogging=1. This will save your logs to the \logs folder inside the NWN directory.
Note, this will only log chat text. If you want combat feedback and system messages logged too, change ClientEntireChatWindowLogging to 1 as well.
So far, so good. But not really. Everytime you launch NWN, the log file will be overwritten, which means you'll have to manually move or rename the file to avoid data loss. Lucky for us, this process can be automated.
As you may have guessed, the above file is a VBScript; not a program, thus no installation required. You will, however, still have to edit it.
After downloading the file, place it in your NWN directory. Right click it and pick Edit. Change CONST NWN_PATH = "F:\Games\NWN" to the location of your NWN directory. Save, close, and doubleclick the script. This'll check to see if the nwclientlog1.txt file contains data and, if it does, rename it according to the script, and then proceed to launch NWN; all pretty much without any delays.
Now, the default naming scheme is yyyy_mm_dd_hourminute. If you prefer another scheme, edit the file again. Locate the line that reads
sTargetFile = Year(datLastModified) & "_" & Right("00" & Month(datLastModified),2) & "_" & Right("00" & Day(datLastModified),2) & "_" & Right("00" & Hour(datLastModified),2) & Right("00" & Minute(datLastModified),2)
Parts of this line are interchangeable. For instance:sTargetFile = Day(datLastModified) & "-" & Right("00" & Month(datLastModified),2) & "-" & Right("00" & Year(datLastModified),4) & "_" & Right("00" & Hour(datLastModified),2) & Right("00" & Minute(datLastModified),2)
will name the log dd-mm-yyyy_hourminute.In order to use this thing with the standard NWN shortcut, right click the shortcut and choose Properties, then change the destination from "\nwn.exe" to "\nwn.vbs".
And that's pretty much all there is to say. If anyone with a little more skillpoints in Craft (VBScript) has something to add, please do chime in.
Credits go to Tephritidae for scripting this little perl, and Dopson for pointing it out to me.