Necnt

New Member
Nov 15, 2023
3
0
It is clear that seduction and resistance are used during combat, but how to use them if this tab is inactive (gray) during combat? Other tabs - strike action - everything works.
 

DandyMe

Member
Mar 27, 2024
305
198
It is clear that seduction and resistance are used during combat, but how to use them if this tab is inactive (gray) during combat? Other tabs - strike action - everything works.
That happening in Tournament Figths.. You need to be professional in those.. :rolleyes:
(Probably because there're people watching it!)
 
Last edited:

hagare

Well-Known Member
Mar 27, 2019
1,129
621
1727158997424.png
shouldn't that be on them?

and there should be differences too
depending on your gender and theirs

PS: How do you win fights with seduction?
 
Last edited:

DandyMe

Member
Mar 27, 2024
305
198
View attachment 4065025
shouldn't that be on them?

and there should be differences too
depending on your gender and theirs

PS: How do you win fights with seduction?
You can't win with seduction, but you can consume their energy making them orgasm..
That will force them to rest, you can only win lowering their health..
 

Urdadisgayforme

New Member
Nov 25, 2022
3
2
EDIT: For whatever reason, this no longer works to update the relationship values, not sure why. Can use it to modify body part to your heart's content, though.


The easiest way is to talk to the character you want to bump the stats on - MAKE SURE YOU HIT AT LEAST ONE OPTION TO CHANGE A Friendship/Love/Fear VALUE, otherwise the last step won't work. You can leave the conversation after you do so.

Hit F12, type SugarCube.State.active.variables into the console and hit enter (capitalization is important - and I'm not sure if it's because I've done this in HTML games so many times, bit it should autocomplete when you start typing just to make sure you get the case right)

Click the arrow on the left of the italiziced text that pops up to expand the options

About 2/3 of the way down, there's a line that says indexNPC - the number that's there is the person you need to find in the next step.

Expand the arrow next to the "Characters" line, then expand the subline that your character is in (In my case, she was #2, so I expanded the [0...99] field. Find the number in question, then expand that line (again, in my case, #2)
View attachment 3790854

Now expand "Relationships" and change the VALUE line in Fear/Friendship/Love to whatever the hell you want - this is the step you needed to talk to them for. If you jump into relationships before a value changes, this section has nothing in it
View attachment 3790862

NOTE: You're still checking CHARACTERS, even if your target is a resident and not a student, as shown here
View attachment 3790866

If you want to change body characteristics (give your partner bigger boobs, make your (female PC's) roomate a transgendered woman, that sort of thing) - expand the BODY line for the character in question and go nuts

EDIT: This USED to work - doing further testing to see why the resident's (Savannah Lewis in the example) values aren't updating
So this doesn't work for students too? I've changed values and everything but the bar stays the same.
 

Akaibu

Newbie
Apr 11, 2019
18
23
sharing these as a way of basically mass changing particular values, not gonna explain what needs to be changed as I will assume some intelligence.

JavaScript:
SugarCube.State.variables.player.relationships.forEach((value, key) => {
    if (value.metrics && value.metrics._friendship) {
        value.metrics._friendship._value = 0;
    }
});
JavaScript:
for (let i = 0; i < SugarCube.State.variables.Characters.length; i++) {
    SugarCube.State.variables.player.relationships[i].value._metrics._sex._value = 100;
}
 
2.80 star(s) 12 Votes