It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
I don't know if this is normal or a bug but i just started with NWN2 and my chat edit line is 4 rows high even though i can't even fill 3 rows with the default chat window size. So 99% of the time (I'm doing singleplayer...) half my chat window is empty because it's reserved for the edit line.

Quite annoying..

Is there any way to reduce it to 1 row height?
This question / problem has been solved by touchedimage
Go to your game installation folder, in the folder UI\default. Find the file called defaultchat.xml, and make a copy of it, putting the copy into your Documents\Neverwinter Nights 2\override. Make sure the copy has the same name as the original. Open the copy in a text editor. Find the lines:

<!-- Input Listbox -->
<UIPane name="INPUT_CONTAINER" x="24" y="96" width="375" height="36" >

and change the last number, so it looks like this:

<!-- Input Listbox -->
<UIPane name="INPUT_CONTAINER" x="24" y="96" width="375" height="10" >

This will give you a 1-line input box. If you type more than can be contained in 1 line, it will look strange, but in a single-player game, it's not likely you'll need to type that much.
avatar
touched: Go to your game installation folder, in the folder UI\default. Find the file called defaultchat.xml, and make a copy of it, putting the copy into your Documents\Neverwinter Nights 2\override. Make sure the copy has the same name as the original. Open the copy in a text editor. Find the lines:

<!-- Input Listbox -->
<UIPane name="INPUT_CONTAINER" x="24" y="96" width="375" height="36" >

and change the last number, so it looks like this:

<!-- Input Listbox -->
<UIPane name="INPUT_CONTAINER" x="24" y="96" width="375" height="10" >

This will give you a 1-line input box. If you type more than can be contained in 1 line, it will look strange, but in a single-player game, it's not likely you'll need to type that much.
Much better! Thanks alot.