Page 1 of 1

...copapTlk file

Posted: Wed Mar 17, 2004 8:59 am
by swifthawke
I've been away from the game for awhile and now when I try to enter it says I need the Copaptlk_2.0 file. I have this already and was thinking perhaps it was updated since last i played ( last July ). I don't see the download for this on the download page, where do I get it, please?

Posted: Wed Mar 17, 2004 9:07 am
by kombinat
Try getting it from here: http://www.epignosis.info/download.php?list.7

You need to put it in the tlk directory inside the NWN main install directory. You also need to be at v1.62 of NWN, and have the CoPaP 3.1 and Universal 3.0 haks. They're both on that page too. Good luck :)

Posted: Wed Mar 17, 2004 12:47 pm
by Themicles
NOTE:
Do not override the BioWare dialog.tlk that is in the main NWN dir.
That is NO LONGER NECESSARY.
The override version is not to be used.
/me makes a note to bug the relevant people to remove it from download lists...
Get the CoPaP TLK 2.0 and extract it into your NWN \ tlk directory.

-Themicles

Posted: Wed Mar 17, 2004 12:54 pm
by Mistcaller
*scratch that* :)

Posted: Wed Mar 17, 2004 12:55 pm
by Nighthawk4
.....And leave the default TLK file where it is in the NWN folder.

Posted: Wed Mar 17, 2004 12:58 pm
by Nighthawk4
Mistcaller wrote:One more detail-reminder:

CoPaP 3.1 should be on top of the hak list, followed by Universal 3.0. Yes, the order does matter.
That was the order I used in my Module.- so it should have been a valid test. However, I am happy to help with testing in Avlis tonight when I get Home, unless someone else has already tested this before then. Should be about 18:30 GMT all being well.

Posted: Thu Mar 18, 2004 1:16 am
by swifthawke
.. Okay guys, thanks for your help. I ws able to find the talk file and download it to the right file but.... now I can't see if that even worked because I can't log into server.

I know I am putting correct password in but, it says it is incorrect.

Posted: Thu Mar 18, 2004 6:43 am
by kombinat
it is caSe SenSItiVe, so make sure you're getTIng thAt right, and don't have CAPS LOCK ON.

Posted: Thu Mar 18, 2004 6:54 am
by swifthawke
.. Thanx! ..

errr .. my prob was that I just needed to install the updated files for universal and CoPaP .. I was useing the old versions from a year ago.. ack.

so, I am off to find some fire beatle bellies for a little boy. heheh

Posted: Thu Mar 18, 2004 6:57 am
by kombinat
Ah yes, the exact error message is very important :)

Welcome to Avlis, and see you around some day, if I don't get banned from every server first... :)
If you see Sand online and feel like a bit of a tour, send me a Tell and I'll show you around.

Posted: Sun Apr 04, 2004 2:18 pm
by Moonlight-Flower
Just as a sort of opinion, can they do all the TLKs and HAKs in lowercase? It would make it easier on linux users, since apparently mixed case/uppercase doesn't agree with NWN...

Posted: Sun Apr 04, 2004 2:26 pm
by Lafferty
Bashscript to rename all files in a directory to lower case...

Code: Select all

#! /bin/sh
# rename files to lower case... 
for i in * ; do
   lc=$(echo $i|tr [A-Z] [a-z])
   if [ $lc != $i ] ; then
      if [ -f "$lc" ] ; then
         echo "$lc already exists"
      else
         mv $i $lc
      fi
   fi
done
or a more sophisticated bash script for renaming: http://www2.cddc.vt.edu/linux/utils/fil ... 1.0.tar.gz