Game Uncooking Problem

+
Game Uncooking Problem

Hi everyone!

I've run into a certain problem while trying to uncook the game. I tried following the instructions and started the wcc_lite.exe via cmd with the following arguments:
uncook -indir=D:\GOG\The Witcher 3 Wild Hunt\content -outdir=D:\Witcher3_Modding\Uncooked -imgfmt=tga

That resulted in errors which read as this:
"[2015.08.14 15:03:57][Error][Engine] wintab32.dll - GetProcAddress failed for '[2015.08.14 15:03:57][Error][Game] CItemManager: directory 'items\' not found!
[2015.08.14 15:03:57][Error][Game] Error: no speed config defined in speedConfig.xml, there is probably an error in there !
[2015.08.14 15:03:57][Error][Game] [DLC] There's no DLC directory in the depot. No DLCs will be mounted.
[2015.08.14 15:03:57][Info][WCC] Starting commandlet 'uncook'
[2015.08.14 15:03:57][Info][WCC] ---------------------------------------------------------------
[2015.08.14 15:03:57][Warning][WCC] Failed to find texture caches in 'D:\GOG\The\'!
[2015.08.14 15:03:57][Error][WCC] No bundle files found in 'D:\GOG\The\'!
[2015.08.14 15:03:57][Info][WCC] ---------------------------------------------------------------
[2015.08.14 15:03:57][Info][WCC] Total errors: 0
[2015.08.14 15:03:57][Info][WCC] Total warnings: 0
[2015.08.14 15:03:57][Error][WCC] Wcc operation failed"

How do I solve this?

Thank you very much in advance!
 

Guest 2364765

Guest
Old trick which is needed when handling command prompt/bat files

For paths which contain spaces you need to use quotation marks, so your paths would be:
-indir="D:\GOG\The Witcher 3 Wild Hunt\content"
and
-outdir="D:\Witcher3_Modding\Uncooked"
 
Thanks mate, you're a hero!
And I'm an idiot, because that's something I've literally done a hundred times by now... No idea why my brain has stopped working correctly - might be due to the temperature.^^
-.-'
 
I have another problem. Command prompt says that "wcc_lite is not recognized as an internal or external command, operable program or batch file."
How can I fix this?
 

Guest 2364765

Guest
I have another problem. Command prompt says that "wcc_lite is not recognized as an internal or external command, operable program or batch file."
How can I fix this?
That's because you're most likely not running command prompt from the same folder as wcc_lite.exe.

Running cmd by default mounts it at C:\Windows\System32, you'd have to use cd /d "path to wcc lite folder" or make a bat in same directory as wcc_lite.exe and launch it from there.

---------- Updated at 02:03 PM ----------

I have another problem. Command prompt says that "wcc_lite is not recognized as an internal or external command, operable program or batch file."
How can I fix this?
That's because you're most likely not running command prompt from the same folder as wcc_lite.exe.

Running cmd by default mounts it at C:\Windows\System32, you'd have to use cd /d "path to wcc lite folder" or make a bat in same directory as wcc_lite.exe and launch it from there.
 

IsengrimR

Guest
I have another problem. Command prompt says that "wcc_lite is not recognized as an internal or external command, operable program or batch file."
How can I fix this?

Because you need to run it from the folder. Easiest way for me, go to menu start, and run windows power shell from administrative tools. Navigate to your Mod Kit, using

Code:
Cd "X:\<Pathtomodkit>\bin\x64"

, then go

Code:
.\wcc_lite uncook -indir=X -outdir=Y -imgfmt=tga

and wait till it uncooks.
 
Last edited:
Not having much luck unfortunately. I'm using PowerShell from the start menu search on Win7.

I entered:
cd "g:\program files (x86)\witcher 3 mod tools\bin\x64"

To which:
PS g:\program files (x86)\witcher 3 mod tools\bin\x64>

displays at the side of the screen. Then I entered:
.\wcc_lite uncook -indir="G:\GOG Games\The Witcher 3 Wild Hunt\content" -outdir="G:\Uncooked" -imgfmt=tga

To which:
>>

displays but nothing happens. Any suggestions?
 
Last edited:
Ok, I think I managed to uncook the game, but...maybe not entirely. For example, in the new folder I don't have the geralt folder (it should be in characters/model)
 
Problem.
Always when I start wcc_lite I have this error:

[Error][Engine] Unable to open collision cache file. No collision cache data will be accessed.
[Error][Engine] Failed to create collision cache cache 'C:/Program Filles <x86>\Witcher 3 Mod Tools\r4data\collision.cache'

Files uncooking normal (when I use CMD) but I dont know what should I do with this. I trying normal use wcc_lite and cmd and always this error.
Sorry, bad english.
Any1 can help me ?


I reinstall game, still error.

http://scr.hu/0f30/ybpme - screen
 
Last edited:
I have the same problem as Zandlor, so if someone know this issue it could be great. :)

---------- Updated at 09:37 AM ----------

I have the same problem as Zandlor, so if someone know this issue it could be great. :)
 
After runing with administrator it worked but when its done with no error and 0 fails and then the cmd is closing and then nothing the command did'en move the things. its like the cmd command dont have an effect.

My command is here can someone spot whats wrong or if there is something wrong, because I cant se it :/

Command:
cd /d C:\Program Files (x86)\Witcher 3 Mod Tools\bin\x64
call wcc_lite import -depot=D:\Mods\The Witcher 3 Wild Hunt\Uncooked\ -file=D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Raw\ -out=D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Uncooked\

I run its as a bad file...
 
Command:
cd /d C:\Program Files (x86)\Witcher 3 Mod Tools\bin\x64
call wcc_lite import -depot=D:\Mods\The Witcher 3 Wild Hunt\Uncooked\ -file=D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Raw\ -out=D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Uncooked\

If your path have spaces put in them in double quotations, e.g.:
Code:
cd /d C:\Program Files (x86)\Witcher 3 Mod Tools\bin\x64
call wcc_lite import -depot="D:\Mods\The Witcher 3 Wild Hunt\Uncooked"  -file="D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Raw" -out="D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Uncooked"
 

Guest 2364765

Guest
If your path have spaces put in them in double quotations, e.g.:
Code:
cd /d C:\Program Files (x86)\Witcher 3 Mod Tools\bin\x64
call wcc_lite import -depot="D:\Mods\The Witcher 3 Wild Hunt\Uncooked"  -file="D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Raw" -out="D:\Mods\The Witcher 3 Wild Hunt\Mods\Console\Uncooked"

Hey, sorry to bounce offtopic but it's hard to get your attention.

Could you perhaps shed some light on how timer functions work and how to implement and use one in a custom class?
 
I have a problem with my uncooking as well this is what my cmd says when I use the command


C:\Witcher 3 Mod Tools\bin\x64>wcc_lite uncook -indir="C:\Program Files (x86)\GalaxyClient\games\The Witcher 3 Wild Hunt\content" -outdir="C:\Witcher3Modding\Uncooked" -imgfmt=tga
[2015.08.18 19:21:30][Error][Game] CItemManager: directory 'items\' not found!
[2015.08.18 19:21:30][Error][Game] Error: no speed config defined in speedConfig.xml, there is probably an error in there !
[2015.08.18 19:21:30][Error][Game] [DLC] There's no DLC directory in the depot. No DLCs will be mounted.
[2015.08.18 19:21:30][Info][WCC] Starting commandlet 'uncook'
[2015.08.18 19:21:30][Info][WCC] ---------------------------------------------------------------
[2015.08.18 19:21:30][Error][WCC] No output directory has been specified!
[2015.08.18 19:21:30][Info][WCC] ---------------------------------------------------------------
[2015.08.18 19:21:30][Info][WCC] Total errors: 0
[2015.08.18 19:21:30][Info][WCC] Total warnings: 0
[2015.08.18 19:21:30][Error][WCC] Wcc operation failed
 
I have a problem with my uncooking as well this is what my cmd says when I use the command


C:\Witcher 3 Mod Tools\bin\x64>wcc_lite uncook -indir="C:\Program Files (x86)\GalaxyClient\games\The Witcher 3 Wild Hunt\content" -outdir="C:\Witcher3Modding\Uncooked" -imgfmt=tga
[2015.08.18 19:21:30][Error][Game] CItemManager: directory 'items\' not found!
[2015.08.18 19:21:30][Error][Game] Error: no speed config defined in speedConfig.xml, there is probably an error in there !
[2015.08.18 19:21:30][Error][Game] [DLC] There's no DLC directory in the depot. No DLCs will be mounted.
[2015.08.18 19:21:30][Info][WCC] Starting commandlet 'uncook'
[2015.08.18 19:21:30][Info][WCC] ---------------------------------------------------------------
[2015.08.18 19:21:30][Error][WCC] No output directory has been specified!
[2015.08.18 19:21:30][Info][WCC] ---------------------------------------------------------------
[2015.08.18 19:21:30][Info][WCC] Total errors: 0
[2015.08.18 19:21:30][Info][WCC] Total warnings: 0
[2015.08.18 19:21:30][Error][WCC] Wcc operation failed

Me too. And the strange think is that...it worked before.
 
I have a problem with my uncooking as well this is what my cmd says when I use the command


C:\Witcher 3 Mod Tools\bin\x64>wcc_lite uncook -indir="C:\Program Files (x86)\GalaxyClient\games\The Witcher 3 Wild Hunt\content" -outdir="C:\Witcher3Modding\Uncooked" -imgfmt=tga
[2015.08.18 19:21:30][Error][Game] CItemManager: directory 'items\' not found!
[2015.08.18 19:21:30][Error][Game] Error: no speed config defined in speedConfig.xml, there is probably an error in there !
[2015.08.18 19:21:30][Error][Game] [DLC] There's no DLC directory in the depot. No DLCs will be mounted.
[2015.08.18 19:21:30][Info][WCC] Starting commandlet 'uncook'
[2015.08.18 19:21:30][Info][WCC] ---------------------------------------------------------------
[2015.08.18 19:21:30][Error][WCC] No output directory has been specified!
[2015.08.18 19:21:30][Info][WCC] ---------------------------------------------------------------
[2015.08.18 19:21:30][Info][WCC] Total errors: 0
[2015.08.18 19:21:30][Info][WCC] Total warnings: 0
[2015.08.18 19:21:30][Error][WCC] Wcc operation failed

Need to specify the full path to the files .bundle -indir="D:\GOG\The Witcher Wild Hunt"\content\content0\bundle so at you anyway unpack
 
@nielsivd99
My tip use 8.3 names. Google 8.3 filenames and check the wikipedia article.

wcc_lite uncook -indir=C:\Progra~2\Galaxy~1\games\TheWit~1\content\ -outdir=C:\Witche~1\Uncooked\ -imgfmt=tga

@above me
Not as far as I know.
 
Last edited:
Top Bottom