Karma Online .bm and .dds how to open
-
- Posts: 4
- Joined: Thu Dec 07, 2017 3:29 am
Karma Online .bm and .dds how to open
hi i really want to open this model and texture file any help is appreciated
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: Karma Online .bm and .dds how to open
deja vu it seems, i looked at some of these samples before
viewtopic.php?f=5&t=4742&p=25334#p25334
your w_breda_tex_normal.dds sample is xored with 0xb7aa,
your w_breda_tex.dds sample is xored with 0xac66,
to cut it short all your samples are xored with different key depending on type of file
viewtopic.php?f=5&t=4742&p=25334#p25334
your w_breda_tex_normal.dds sample is xored with 0xb7aa,
your w_breda_tex.dds sample is xored with 0xac66,
to cut it short all your samples are xored with different key depending on type of file
-
- Posts: 4
- Joined: Thu Dec 07, 2017 3:29 am
Re: Karma Online .bm and .dds how to open
And how do i open ir i am new in this stuff
-
- Posts: 4
- Joined: Thu Dec 07, 2017 3:29 am
Re: Karma Online .bm and .dds how to open
And how do i open it i am new in this kind stuff plz thanks
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: Karma Online .bm and .dds how to open
use this bms script on your samples
you should be able to open the dds right away, not sure of the other files,
not enough samples to test consistency for getting the xor key.
edit
i modified the script above to attempt to work at getting the key for the other files too
Code: Select all
# script for QuickBMS http://aluigi.altervista.org/quickbms.htm
get SIZE asize
get NAME basename
get EXT extension
string NAME + _unxored.
string NAME + EXT
if EXT == dds
goto 0x20
getdstring KEY 2
encryption xor KEY
else
getdstring KEY 2
encryption xor KEY
endif
log NAME 0 SIZE
you should be able to open the dds right away, not sure of the other files,
not enough samples to test consistency for getting the xor key.
edit
i modified the script above to attempt to work at getting the key for the other files too
-
- Posts: 4
- Joined: Thu Dec 07, 2017 3:29 am
Re: Karma Online .bm and .dds how to open
really thanks for that but you could tell me how to tell me to open the .bm in hex2obj? plz
-
- Posts: 706
- Joined: Fri Aug 08, 2014 1:06 am
Re: Karma Online .bm and .dds how to open
guess you didn't check the link to the original research thread?
i gave an example of submesh in Hex2obj there already.
i gave an example of submesh in Hex2obj there already.