Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Zettai Zetsumei Toshi 3 (絶体絶命都市3)
01-07-2015, 12:09 PM
Post: #16
RE: Zettai Zetsumei Toshi 3 -K owareyuku Machi to Kanojo no Uta
Should be merged with this one - same game.

Also not sure about "playable" yet, because the freeze on character select screen still exist, you have to use a hack like the one I posted in the other thread or somebody elses save to pass it.

http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders!
http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats,
https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds.
Find all posts by this user
Quote this message in a reply
01-07-2015, 12:49 PM (This post was last modified: 01-07-2015 12:50 PM by vnctdj.)
Post: #17
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
Merged.

I will let this thread in "In-game" for now then Smile

♦ Intel Core i7-6700HQ | 16 GB RAM | NVIDIA GeForce GTX 960M | Debian Testing
♦ Intel Core i7-2630QM | 4 GB RAM | NVIDIA GeForce GT 540M | Debian Testing
♦ PSP-3004 | 6.60 PRO-C2
Find all posts by this user
Quote this message in a reply
11-29-2015, 02:52 PM
Post: #18
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
latest dev build dont fixed the problem yetHuh
Find all posts by this user
Quote this message in a reply
07-04-2017, 04:17 AM
Post: #19
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
Made a new workaround for this game since the old one was affecting game speed and I didn't noticed:|. Not a big deal since it was required for just one moment at character selection screen and could be disabled later which I probably did myself, but if someone left it activated it was running at double speed and also unlocked fps in places where it shouldn't making it potentially much more demanding;p.

Code:
_S ULJS-00191
_G Zettai Zetsumei Toshi 3
_C0 Freeze workaround
_L 0xE0010004 0x00237218
_L 0x20237218 0x00000000
_C0 Freeze workaround [Disable]
_L 0xE0010000 0x00237218
_L 0x20237218 0x50400004

       

http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders!
http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats,
https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds.
Find all posts by this user
Quote this message in a reply
12-23-2017, 08:52 PM
Post: #20
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
Small bump with a wall of text since I don't have any more fitting place where I could post it;p.

As possibly some others(althrough sadly this game isn't that popular hereTongue) I was waiting for fan made translation of this game, but unlike others I was impatient and just took whatever was released and inserted all the text to my game copy, in fact I did it around this time. But later kind of forgot about it.;p

Just now I was browing GBAtemp and saw this game fan translation thread again and to my disappointment they got stuck and are confused by some things:
"insert the translation back into the game. With the tools we had at the time any attempt to do so would break the game" - I used those tools and while not free of problems which I'll describe below, they work well enough,
"script can't be used directly (because of embedded screen commands)" - wrong, script doesn't mean just "text", commands are also important to be re-inserted, the game uses those for example to display names instead of hardcoding them or to start a newline, if those "screen commands" were missing, the translation would be useless or at least far more bothersome to inject.



Ok>.>, well then, that's not enough to make me register on that forum and I don't have time to get involved into such projects or guide anyone by hand how to do things anyway, but I like the game enough that I can share at least how to insert text into this game for anyone wanting to help in that existing translation project or just gave up on it and take things in their own hands as it's pretty easy game to mod, chances are the only reason nobody did the fan translation yet is because everyone saw existing project promising a lot for a long time of doing nothing... .


Anyway to list potential problems that will easily cause crashes:
- using "Zettai Zetsumei Toshi 3 Tools v0.1.161013 alpha" used for editing game's script files will messup pointers if injected line is shorter than original, so you always have to use same or longer(fill with spaces for example) strings for your replacement when using this software,
- that tool I believe might also allow longer strings, where game is limited to 128 characters per dialogue box,
- if you're lazy and want to avoid pkg files editing and just edit loose script files like me you might want to remove all PKG files from archive folder except: CONFIG.PKG, MOVIE02_BUS_CRASH.PKG, MP_LOBBY.PKG, MP_SYSTEM.PKG, TITLE.PKG, TITLE_SYSTEM.PKG as those include files that can't be found as loose files, you could also make the game read loose files by default, but I didn't bothered,
- after creating your perfect translated iso that avoids all above problems, the game should crash, don't panic, you just messed up everything so that's expected behaviour, so now you have to find and update "HEADER.BIN" file with all your changes, just look at file system of unmodified iso and unmodified HEADER.BIN, then look at modified iso file system and update your HEADER.BIN accordingly, it's pretty easy as the file stores location and size of each file without any tricks. This part can be made easier by expanding iso and placing files you will be changing at the end giving them enough space to allow further edits as then you'll be able to reuse existing filesystem for most files and reduce the amount of editing to header.bin file to just your edited files(still changing both address and size, but if you give it enough space, all future corrections could be limited to size). You could also write some software to update it based on iso filesystem automatically.

Note that you will NOT avoid expanding or rebuilding the iso and editing this header.bin file by just exporting/importing file system unless all your new files will be exactly same size, which can't happen as english script takes up much more space and by trying to do so, you will basically break all script files and mess up your game in horrible way;p.
I suspect that was biggest problem for the translation team that started this project as I see no mention of HEADER.BIN anywhere by them which makes it clear they were messing up the filesystem one way or another. It wasn't exactly hard thing to find, but I have 0 experience with files and as such I wasn't biased into looking at wrong things, instead simply debugged the crash.




That would be it for the text insertion ~ hopefully didn't forgot about anything as I don't look at the game now and support my memory only with notes I made relatively long time ago. Ofc the whole project had other problems, that would need to be dealt with properly.

"All your base are belong to us." aka the translation itself, if all was made was that openly posted script dumps with translation - well, it's pretty poor inglish, messes up genders and among other things is also very literal, also it had whole section of the game untranslated - the hospital part, overall the experience suffers from it quite a lot I mean I had possibly more fun playing it in english than in japanese, but that's because I laughted from cringy translation in places that often should be quite emotional/sad, I don't recommend anyone using that translation for their first playthrough, but ok at least the translator made much more actual work than the rest of the team did.

It might also need a lot of micro patching to game itself and some text to fit in most boxes nicely, I recall just shrinking it a bit on my copy, but that was very sloppy and squishes japanese characters in few untranslated strings like the hai/iie confirmation box;p.

Dealing with PKG files should be better than using loose files and potentially allow to translate a bunch of more things, those PKG's don't seem to be neither compressed nor encrypted, might use checksum at most and maybe not even that, so it probably wouldn't be a problem for anyone who has some experience or at least patience for dealing with files, that's definitely not me as all my insering work was limited to using some copypasta macros and excel editing to do everything, but I only cared about the script and items(names/descriptions).



Anyway good luck to anyone working on it, either with a team or by themselves. It's definitely not a work for one evening, but even when trying to make everything right it should never take long years as with the existing project.:|



I don't plan to make any patches from the sloppy work I made for myself, I also have no right to release any tools or content used, but for reference links for stuff I used while injecting the text for myself:
- "Zettai Zetsumei Toshi 3 Tools v0.1.161013 alpha",
- incomplete(missing MAP1401.BIN), literal/ingrish translation.

Those threads might also contain information about other things like images, which I really didn't cared about since PPSSPP has texture replacement.




=======


On a completely different note, more related to PPSSPP problem with this game(easily avoided by cheat I posted here earlier), Sony's official PSP emulators suffer from same problem as can be seen here. Somewhat it feels less bad of a problem now.^^

http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders!
http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats,
https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds.
Find all posts by this user
Quote this message in a reply
03-12-2018, 02:15 PM
Post: #21
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
(07-04-2017 04:17 AM)LunaMoo Wrote:  Made a new workaround for this game since the old one was affecting game speed and I didn't noticed:|. Not a big deal since it was required for just one moment at character selection screen and could be disabled later which I probably did myself, but if someone left it activated it was running at double speed and also unlocked fps in places where it shouldn't making it potentially much more demanding;p.

Code:
_S ULJS-00191
_G Zettai Zetsumei Toshi 3
_C0 Freeze workaround
_L 0xE0010004 0x00237218
_L 0x20237218 0x00000000
_C0 Freeze workaround [Disable]
_L 0xE0010000 0x00237218
_L 0x20237218 0x50400004

Thanks for the cheat managed to get through the loading screen , where did you get your ISO did you translate it yourself ?
Find all posts by this user
Quote this message in a reply
03-14-2018, 09:54 AM
Post: #22
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
As described in the wall of text above:
- I inserted the existing "ingrish" script myself(with addition of some auto-translation for the untranslated parts and some font changes),
- I explained in some detail all the potential crashes caused by messing with this game's files using existing tools(or manually) and how to prevent them since this game is a bit unique,
- I did it hoping the info can give some courage to different people that could make a proper translation as I was unhappy with existing project doing nothing for a few years, but waiting for tools that will do all the work for them despite game being pretty simple if not archaic and doesn't have any real protections.


Also I don't have time nor will to do any patches(which to be legal most likely could not be a simple diff file), join any projects nor guide anyone step by step what to do to patch their own iso and definitely will never share a pre-patched iso.

http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders!
http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats,
https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds.
Find all posts by this user
Quote this message in a reply
05-25-2018, 07:19 PM (This post was last modified: 05-25-2018 07:26 PM by WolfSama.)
Post: #23
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
So any news? this game is unique in psp system,i remember that i play raw danger 2 in ps2,this game is a simulator of real dangerous situatiations ,i get so impressed with this unique genere game,the game give some good notion of what you can do to survive natursl disasters,so this game is not famous,people don't have much interest in this kind of game,low popularity,people like games that you can be cut several times and still fighting (well i like this games too)BUT if someone know how i can play this version or if exist some patch please tell me and sorry for the big text.

You wanna mean with this codes i was be able to choose any character and play the entire game normal?
Find all posts by this user
Quote this message in a reply
05-25-2018, 10:18 PM
Post: #24
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
Yeah, activating my cheat workaround(or patching the game executable to work that way by default) will be enough to make the game fully playable on PPSSPP, I finished the game myself at least 2 times on PPSSPP(once with different gender).

Quite likely will also make it playable on PS3/PSV where it's supposed to have same issue on Sony's official emulator.

http://forums.ppsspp.org/showthread.php?tid=6594 - Custom PPSSPP Shaders!
http://forums.ppsspp.org/showthread.php?tid=3590&pid=117172#pid117172 - simple CE scripts to help creating CWCheats,
https://github.com/LunaMoo/PPSSPP_workarounds - CWCheat workarounds.
Find all posts by this user
Quote this message in a reply
07-03-2020, 04:51 PM
Post: #25
RE: Zettai Zetsumei Toshi 3 (絶体絶命都市3)
Hello, LunaMoo.

I know this is a old thread, but if u still left keep some stuff hacking of it, like asm code you use to expand dialogue box text, you can share it for me?

Im interesting for translate this game (although my english like hell www)

Im use a eboot modified from Gbatemp forum, but limit dialogue text = 45/line, toal 90 char quite short for translation.

Thats great if you still left keep it.
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: