Quote:
Originally Posted by Cesar82
If someone can explain the differences between the 4 types of use of {:options} with arc.exe please share the information.
Thanks!
|
{option} in arc.ini will pass parameters as is, {options} will add - (minus) sign to parameters..so if your command line contains, for example,
arc create -mxtool+srep:m3f+lolz
you are in fact passing
srep -m3f
Sad is that this is not explained anywhere, had to test it on my own to figure it out.
So your arc.ini should probably should contain
-mzlib+ue4:{option}
but in command line it should be (without quotes!)
-mxtool_ue4:m1:k0x115EE4......
With all that said, I'm not sure if your command line will work (can't test it) because this + sign in xtool combining codecs syntax is conflicting with arc syntax of combining codecs so there is a chance it can fail because of that. Change to, for example,
& sign with ResourceEditor and try it with that if it fails.
Also, not sure if 0x is needed or optional before key, would like to know preferred way - with or without 0x , Razor12911?