The Amazing Spider-Man

How to translate the files of a game
anil523
Posts: 46
Joined: Tue Nov 13, 2018 5:10 pm

The Amazing Spider-Man

Post by anil523 »

Image Image

How can i export .pak file to .txt file and reimport .pak file? :)
aluigi
Site Admin
Posts: 12984
Joined: Wed Jul 30, 2014 9:32 pm

Re: The Amazing Spider-Man

Post by aluigi »

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
extrme_sports
Posts: 40
Joined: Thu Jan 31, 2019 10:36 am

Re: The Amazing Spider-Man

Post by extrme_sports »

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
LolHacksRule
Posts: 865
Joined: Fri Apr 20, 2018 12:41 am

Re: The Amazing Spider-Man

Post by LolHacksRule »

Anonymous caller does not have storage.objects.get access to discord/attachments/635950332932784138/682264960792788993/VOLoadingFirst.pak.
extrme_sports
Posts: 40
Joined: Thu Jan 31, 2019 10:36 am

Re: The Amazing Spider-Man

Post by extrme_sports »

LolHacksRule wrote:Anonymous caller does not have storage.objects.get access to discord/attachments/635950332932784138/682264960792788993/VOLoadingFirst.pak.