The Amazing Spider-Man
-
- Posts: 46
- Joined: Tue Nov 13, 2018 5:10 pm
The Amazing Spider-Man
How can i export .pak file to .txt file and reimport .pak file?
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: The Amazing Spider-Man
Try this script, it works also in reimport mode if you want to edit the strings (with some limitations, check the quickbms.txt manual):
Code: Select all
goto 0x228
get STRINGS long
for i = 0 < STRINGS
get CRC long
next i
get STRINGS long
savepos TMP
xmath BASE_OFF "TMP + (STRINGS * 0x10) + 4 + 4 + 4"
for i = 0 < STRINGS
get DUMMY long
get OFFSET long
get ZERO long
get DUMMY float
math OFFSET * 2
math OFFSET + BASE_OFF
slog "" OFFSET -1 unicode
next i
-
- Posts: 40
- Joined: Thu Jan 31, 2019 10:36 am
Re: The Amazing Spider-Man
aluigi wrote:Try this script, it works also in reimport mode if you want to edit the strings (with some limitations, check the quickbms.txt manual):Code: Select all
goto 0x228
get STRINGS long
for i = 0 < STRINGS
get CRC long
next i
get STRINGS long
savepos TMP
xmath BASE_OFF "TMP + (STRINGS * 0x10) + 4 + 4 + 4"
for i = 0 < STRINGS
get DUMMY long
get OFFSET long
get ZERO long
get DUMMY float
math OFFSET * 2
math OFFSET + BASE_OFF
slog "" OFFSET -1 unicode
next i
Missing texts after exporting file and not exporting this file belonging to same game:
https://cdn.discordapp.com/attachments/ ... gFirst.pak
-
- Posts: 865
- Joined: Fri Apr 20, 2018 12:41 am
Re: The Amazing Spider-Man
Anonymous caller does not have storage.objects.get access to discord/attachments/635950332932784138/682264960792788993/VOLoadingFirst.pak.
-
- Posts: 40
- Joined: Thu Jan 31, 2019 10:36 am
Re: The Amazing Spider-Man
LolHacksRule wrote:Anonymous caller does not have storage.objects.get access to discord/attachments/635950332932784138/682264960792788993/VOLoadingFirst.pak.