In Legacy Version: 0.8.160 (The 'Legacy Version' that you can download on the 'Play' page) there is an 'Export' option in which it can convert your .tits save files into .json files (the new save file format for JS version).Is it possible to import my old save files?
Yes. But it's a work-in-progress. (and more user-friendly than the console)Also, is there a working save editor for the newest version?
pc.cocks[0].cLengthRaw = 12;
pc.skinType = GLOBAL.SKIN_TYPE_FUR;
Thanks. But there's no reference for the commands? You just have to ask for every single thing you want to do?In Legacy Version: 0.8.160 (The 'Legacy Version' that you can download on the 'Play' page) there is an 'Export' option in which it can convert your .tits save files into .json files (the new save file format for JS version).
Currently, people are getting some problems with their save files not loading but you can post them into 'The Bizzare Bazzar' thread and hopefully someone will help fix it.
Yes. But it's a work-in-progress. (and more user-friendly than the console)
But if you want full control over things. I'd recommend using the console actually (accessed by pressing F12 when you're in the browser, so you need to load your save on the 'Play in window' version).
The console allows you to directly edit your character to what you want.
Want your first cock to be 12inch?
Type:pc.cocks[0].cLengthRaw = 12;
Want to have fur instead of skin?
Type:pc.skinType = GLOBAL.SKIN_TYPE_FUR;
I'm sure you can just ask the forum for more commands if you would like to change anything else.
There's no reference (To my knowledge) for the commands. You kinda just have to figure it out or ask people. (Thankfully most things that I wanted to change was pretty simple and self-explanationary.)But there's no reference for the commands?
You don't need to ask for every thing you want to do, if you know what you want to change and how to change it.You just have to ask for every single thing you want to do?
pc.
into the console and then the console will give you suggestions of what you want as you keep typing.GLOBAL.[try to look for flag you want]
Great, thank you very much again. One last question because I just imported my old save: why does it put you back in your ship even when you're in an event? Should you complete events first before exporting? I was doing the one with the ship full of infected.There's no reference (To my knowledge) for the commands. You kinda just have to figure it out or ask people. (Thankfully most things that I wanted to change was pretty simple and self-explanationary.)
You don't need to ask for every thing you want to do, if you know what you want to change and how to change it.
It does help having a little knowledge about how Javascript works (But not really required if you're just changing some stuff.)
I just suggested to do so because it helped me to get a grasp about how to change stuff for myself and so I didn't just break it (I will recommend making back-ups just like you would do when your save-editing).
Locating the body parts in which you want to change should be easy since you can just typepc.
into the console and then the console will give you suggestions of what you want as you keep typing.
Some things (such as body flags) are repersented with a number instead of a string. You can just get those withGLOBAL.[try to look for flag you want]
I don't really know the answer. My guess is that when the JS port was first released some planets weren't done yet and would crash if you went there so they just put you at Tarvos' ship port so that it wouldn't crash for being in an area which the JS version didn't have.why does it put you back in your ship
You should probably complete the event you're currently in due to the fact that you get sent back to ship.Should you complete events first before exporting?
There's a link to the Flash Source Code in this thread. I've found it's usually possible to find something that does what you want (or close enough), and it usually transfers over.Thanks. But there's no reference for the commands? You just have to ask for every single thing you want to do?