TiTsEd - A save editor

alkeiser

Well-Known Member
Jun 26, 2016
298
93
Does it just display whatever the in-game text is, then?
Do you mean the editor?
No, it just uses what is in the TiTsEd.Data.xml for the description.

The latest private build still has this as the description:
Code:
advancedShielding.perkDescription = "Grants a defense bonus to your shields equal to 25% of your intelligence.";

The actual effect is just a hard-coded value in the calculations.

Code:
public function shieldDefense() : Number
      {
         var temp:int = 0;
         temp = 0;
         temp = temp + this.meleeWeapon.shieldDefense;
         temp = temp + this.rangedWeapon.shieldDefense;
         temp = temp + (this.armor.shieldDefense + this.upperUndergarment.shieldDefense + this.lowerUndergarment.shieldDefense + this.accessory.shieldDefense + this.shield.shieldDefense);
         if(this.hasPerk("Advanced Shielding"))
         {
            temp = temp + Math.floor(this.bimboIntelligence() / 5);
         }
         return temp;
      }
 

Theron

Well-Known Member
Nov 8, 2018
3,290
1,309
44
Right, it's 20% (/5), not 25% (/4).

I'm pointing out the mismatch between the description and actual value. But if the Editor is just displaying the in-game Perk description, it'll get fixed whenever they get around to my bug report.
 

alkeiser

Well-Known Member
Jun 26, 2016
298
93
But if the Editor is just displaying the in-game Perk description, it'll get fixed whenever they get around to my bug report.
The answer to that is yes *AND* no.

The perk's description is stored in the save file.

If a character has that perk already, the editor will show that perk's description from the save.

For characters that don't have the perk, the perk list will show the value as defined in the TiTsEd.Data.xml, and will be what is set on the perk if you grant it to the character.

This applies to status effects and key items as well.

EDIT:

And FYI, not sure if anyone knew this before or not, but you can actually edit perk/status/key item descriptions in the editor..
 
Last edited:

Damien Soulfire

Well-Known Member
Jun 16, 2016
82
5
Yeah the new one pinged on mine too, just been busy at work to follow up.
The answer to that is yes *AND* no.

The perk's description is stored in the save file.

If a character has that perk already, the editor will show that perk's description from the save.

For characters that don't have the perk, the perk list will show the value as defined in the TiTsEd.Data.xml, and will be what is set on the perk if you grant it to the character.

This applies to status effects and key items as well.

EDIT:

And FYI, not sure if anyone knew this before or not, but you can actually edit perk/status/key item descriptions in the editor..


It looks like it only worked for a short while. Does the Save Editor use something to access save files that could be creating a false positive?
 

Theron

Well-Known Member
Nov 8, 2018
3,290
1,309
44
Doesn't work for me, now, either (v0.31.1). Tried extracting from the Zip again, didn't work. v0.30.8 still works, however.

While I'm here, Lion parts (Ears, Face, Arms, Legs, Tail, Penis, Vagina) need to be added. Shows as [ID:# 93] <unknown> if it helps.

Flags:
Face: Furred, Muzzled
Ears: Furred
Arms: Furred, Paws
Legs: Digitigrade, Furred, Paws
Tail: Long, Furred
Penis: Nubby, Sheathed
Vagina: (No special Flags)
 
Last edited:

KAZEARC

Well-Known Member
Aug 26, 2020
229
152
london
is there a way to become a milodan through save editing? never used save editing on TiTs before and would like to know.
 

Endwar

Well-Known Member
Oct 29, 2016
479
97
Is there a way the save editor can manipulate taint values for the PC? Would like to know if its possible. Thank you : )
 

Endwar

Well-Known Member
Oct 29, 2016
479
97
is there a way to become a milodan through save editing? never used save editing on TiTs before and would like to know.
As part of the warning to use save editor, its completely safe and wont break your game so long as you don't manipulate the flags tabs (unless you know what your doing).

For an easier experience I recommend putting up the racial score of the Milodan from the TiTS wiki page, to know what is required to be a milodan. Generally for any race, its changing the arms, legs, head (ears, eyes, horns, and head type), skin, wings and gentials to match the race. All of them contain sub-flags that add characteristics to the body part. I.E scaly or furred arms, digitigrade or plantigrade legs, and etc.

Hope that helps : )
 

KAZEARC

Well-Known Member
Aug 26, 2020
229
152
london
As part of the warning to use save editor, its completely safe and wont break your game so long as you don't manipulate the flags tabs (unless you know what your doing).

For an easier experience I recommend putting up the racial score of the Milodan from the TiTS wiki page, to know what is required to be a milodan. Generally for any race, its changing the arms, legs, head (ears, eyes, horns, and head type), skin, wings and gentials to match the race. All of them contain sub-flags that add characteristics to the body part. I.E scaly or furred arms, digitigrade or plantigrade legs, and etc.

Hope that helps : )
so i changed all the type tags to 70(milodan) and i when i attempt to load the save it will just crash.
only asking for the sole fact that i can't get it to work but could someone out there make one a with a milodan pc and send me a link.
 

Paradox01

Well-Known Member
Feb 8, 2020
1,819
2,472
USA

brilliant

New Member
Sep 11, 2020
3
0
24
What is the limits on shield point hacking? It seems like HP can be hacked to 250 million, but shield seems to remain the same.
 

TheShepard256

Well-Known Member
What is the limits on shield point hacking? It seems like HP can be hacked to 250 million, but shield seems to remain the same.
HP can reach those high values because of the HPMod stat, which adds a flat bonus to HP. There's no equivalent stat for Shields, so they can only be increased by equipment and the level 2 Tech Specialist perks.
 
  • Like
Reactions: brilliant

Locke24

Well-Known Member
Dec 20, 2017
64
2
52
Builds 31.1 and 31.2 are tripping Windows Defender, again.
I'm starting to think supporting the Edge browser ain't a good idea.
 

brilliant

New Member
Sep 11, 2020
3
0
24
Hey, saw this late, but thank you so much for your answer! If you don't mind me asking, you seem to have a lot of knowledge about the game's core, things like what certain flags mean and such... Do you happen to have a resource where you learned what they all meant and how to manipulate your save? I want to learn so I can fix certain mistakes that I may have made while skipping through fights, or bc I was on at 3am (like now), and mistakenly chose something I didn't mean to.
 

Theron

Well-Known Member
Nov 8, 2018
3,290
1,309
44
Hey, saw this late, but thank you so much for your answer! If you don't mind me asking, you seem to have a lot of knowledge about the game's core, things like what certain flags mean and such... Do you happen to have a resource where you learned what they all meant and how to manipulate your save? I want to learn so I can fix certain mistakes that I may have made while skipping through fights, or bc I was on at 3am (like now), and mistakenly chose something I didn't mean to.
Flags tend to be intuitive. For those that aren't, there's a Public GitHub. You should be able to use the search function to find specific flags. The code is fairly well documented, so you likely will be able to determine what you need to set things to get what you want. However, it's some months out of date, likely due to the ongoing port to Javscript to work around the removal of Flash from most browsers, effective January 2021 at the latest.

For some purposes, you might need to 'Undefine' a Flag. To do so, select the flag, then click the red 'X' at the top of the column. Or press Delete. If the Flag is Bold, it's not actually undefined.

If you want specific information on 'certain flags', you'll have to tell us what they are.
 
  • Like
Reactions: brilliant

Endwar

Well-Known Member
Oct 29, 2016
479
97
Hi guys, need help with managing a ship to help free up a slot. Its a looong while ago, but essentially, I wanted to do Kiro's Po quest a second time around for fun, but what I completely forgot is that the Blade is locked down in storage and cannot be trade or sold. What I am trying to do is to somehow edit it out, but cant.

I am hoping someone who is possibly in the same dilemma as me found a way to sort this out. Would be nice to have a free slot and no duplicate.
 

Gizmo1206

Well-Known Member
Aug 28, 2015
161
13
so i was looking at the perks listed under events and noticed broodmother and ever-milk dont have anything on the wiki so how do you get them in game?
 

TheShepard256

Well-Known Member
so i was looking at the perks listed under events and noticed broodmother and ever-milk dont have anything on the wiki so how do you get them in game?
You can't. Broodmother is a holdover from CoC (whose code was partly copy-pasted for TiTS) and Evermilk was created so that bimbo!Kiro can have a minimum milk quantity. Though they both still work for Steele if they're save edited in.
 

Karretch

Well-Known Member
Aug 26, 2015
2,068
304
Broodmother was going to be available with a TF but the code isn't set up to allow it to happen. I can't recall which one at the moment, too lazy to look.
 

eganrad

Member
May 12, 2019
8
0
24
Hi, I'm trying to completely reset Lorelei, but I can't find the right flags, I've already reset all the flags that have lorelei in them, but it's not enough and I can't find what I'm missing.
To clarify, all the tag I've reset have no value associated to them, but they are still in bold with a * at the beginning, I don't know if that's the problem, and if it is what I should do.
 

Theron

Well-Known Member
Nov 8, 2018
3,290
1,309
44
Hi, I'm trying to completely reset Lorelei, but I can't find the right flags, I've already reset all the flags that have lorelei in them, but it's not enough and I can't find what I'm missing.
To clarify, all the tag I've reset have no value associated to them, but they are still in bold with a * at the beginning, I don't know if that's the problem, and if it is what I should do.
It probably is. A lot of checks look for 'undefined', especially for the beginning of a scenario or meeting an NPC for the first time. A flag in Bold isn't undefined, even if it has no listed value. You need to either click the red X button at the top of the column or press Delete to 'undefine' a flag.
 
Last edited: