State of Mind .bin
-
- Posts: 22
- Joined: Thu Oct 23, 2014 1:04 pm
Re: State of Mind .bin
Please, someone help with this file.
-
- Posts: 88
- Joined: Tue May 08, 2018 7:48 pm
Re: State of Mind .bin
You sure that file is the one you have to translate?
Most of the time when you tranlate UE4 games, you only have to translate .locres files.
Most of the time when you tranlate UE4 games, you only have to translate .locres files.
-
- Posts: 22
- Joined: Thu Oct 23, 2014 1:04 pm
Re: State of Mind .bin
BANDIT wrote:Please, someone help with this file.
-
- Posts: 416
- Joined: Sat Sep 15, 2018 5:22 am
Re: State of Mind .bin
Code: Select all
get SIZER asize
goto 280
for i
savepos OFFQW
if SIZER = OFFQW
break
endif
get CHECKER short
goto OFFQW
get ID long
if CHECKER = 4
get DUMMY longlong
endif
get LENGHT long
math LENGHT / 4
math LENGHT x 4
savepos OFFSET
slog "" OFFSET LENGHT
getdstring DUMMY LENGHT
next i
-
- Posts: 22
- Joined: Thu Oct 23, 2014 1:04 pm
Re: State of Mind .bin
Shokoniraya wrote:Code: Select all
get SIZER asize
goto 280
for i
savepos OFFQW
if SIZER = OFFQW
break
endif
get CHECKER short
goto OFFQW
get ID long
if CHECKER = 4
get DUMMY longlong
endif
get LENGHT long
math LENGHT / 4
math LENGHT x 4
savepos OFFSET
slog "" OFFSET LENGHT
getdstring DUMMY LENGHT
next i
Thnx, but how I can repack translated *txt?
-
- Posts: 561
- Joined: Tue Oct 13, 2015 1:26 pm
Re: State of Mind .bin
State of Mind BIN Text Tool [PC]
By Delutto
See Readme.txt for instructions.Notes: Based on file samples and not tested ingame.
I made this tool a while ago and just forgot to post...
You can use "while" and "goto" to optimize your code, like this:
By Delutto
See Readme.txt for instructions.Notes: Based on file samples and not tested ingame.
I made this tool a while ago and just forgot to post...
Shokoniraya wrote:Code: Select all
get SIZER asize
goto 280
for i
savepos OFFQW
if SIZER = OFFQW
break
endif
get CHECKER short
goto OFFQW
get ID long
if CHECKER = 4
get DUMMY longlong
endif
get LENGHT long
math LENGHT / 4
math LENGHT x 4
savepos OFFSET
slog "" OFFSET LENGHT
getdstring DUMMY LENGHT
next i
You can use "while" and "goto" to optimize your code, like this:
Code: Select all
get SIZER asize
goto 280
do
get CHECKER short
goto -2 0 seek_CUR
if CHECKER = 4
get DUMMY longlong
endif
get ID long
get LENGHT long
math LENGHT / 4
math LENGHT x 4
savepos OFFSET
slog "" OFFSET LENGHT
goto LENGHT 0 seek_CUR
savepos OFFQW
while OFFQW < SIZER
-
- Posts: 22
- Joined: Thu Oct 23, 2014 1:04 pm
Re: State of Mind .bin
Thnx, Delutto, your tool works great.