News:

Please request registration email again and then check your "Spam" folder

Former www.henthighschool.com

Installing mods, making mods, and Kisekae info

Started by barteke22, May 13, 2022, 11:50 PM

Previous topic - Next topic

barteke22Topic starter

#15
16 is the value of Bit position 4 (binary). As per the description of TryForSchoolEvents / GetCandidates, if bit 4 is on (+16 to mode):
- The location is not a classroom or during class (like a break/other locations).
- It looks for minimum of 1 of any gender, instead of minimum 5 males and 5 females.

Sex Levels are in the description of GetCandidates, if you want the actual numbers, they're inside of it.

Non-Object type (not purple/pink) variables always keep their previous values if you don't reload the event.
Non-global variables always* reset when reloading events via Debug, if they're marked as 'Survives Reload' they won't reset.

*They might also not reset if the event is in 'Legacy Mode' - as that attempts to preserve important variables, but can fail.


The event in your screenshot also seems to proceed if 'Rejected' is triggered, so TryForSchoolEvents might not actually matter as far as I can see in the screenshot - it just filters the list a bit if Accepted.

Alum

#16
Quote from: barteke22 on Dec 17, 2022, 02:09 AM16 is the value of Bit position 4 (binary). As per the description of TryForSchoolEvents / GetCandidates, if bit 4 is on (+16 to mode):
Thank you, now I understand this system better.
Very High + Class Critera + Stats Check Only 256+5=261
Very High + Not Class Critera + Stats Check Only 256+16+5=277
Is it calculated correctly?
======
If set, probabilities and time delay checks are bypassed
"time delay"
is it like potency? Kissing, peeping have no time delay? Or does this variable control that the same person is not selected for all events?
##########
Probably the last question  :) about the gameplay. When I use hypnosis, they want to kiss me. if a character's relationship is pumped up, will they want to kiss someone other than me?
I tried to rewrite this event (PeepersCaught) so that relationship developed between the characters and then they wanted to kiss each other. Or should I create an event so that they kiss each other under hypnosis? ;D

barteke22Topic starter

Calculations are correct.

Time Delays: Each location has separate delays between triggering of events with the same Sex Level.
This is for TryForSchoolEvents' 'Accepted', the actual event itself will also have its own delay to allow other events to happen instead.
The screenshot event is designed in a way that isn't a great example of how this works, because it continues even on 'Rejected' - so this delay almost never matters.  It's not recommended to disable Time Delay checks for regular events, they're meant for things you can spam, like spy cams.

I'm not sure whether relationships between NPCs grow on their own (aside from initial family/friendship generation) outsides of random events you trigger.  They probably don't grow in any meaningful way, as that in turn would need better ways for the player to impact whether someone is faithful or not etc.  There is an interaction event that does stuff based on relationships between NPCs (if they don't love you), but other than that it's just whatever rng events do (sex etc improves relationship). Hypnosis has less effect on relationship.

Alum

#18
Quote from: barteke22 on Dec 17, 2022, 05:45 PMCalculations are correct.

Thank you. Someday I will understand the whole system of writing events :)

Dantaimori

Are the kisekae codes for vanilla's all male students outfits, female cheerleader uniforms and female kendo uniform available somewhere? Searching this forum didn't seem to give me any related results.

I know it's not impossible to make them; just wanted to check before I edit them myself and then lose all motivation if there were codes available all along.

barteke22Topic starter

Kenji / erw255 might've had them in like 2016, but they haven't been around in forever. I found a cached post where Kenji shared what he collected, but it's unavailable since it was an attachment.

So there's only the codes I remade recently to fix breast clipping, in NormalSchool\Paperdoll, though I don't think those are on that list.
I also have tie-less versions of outfits with ties, not sure if those were shipped along with Kisekae (in Preg folder)?

If you do remake any outfits, please share them - I'm collecting codes on discord for a potential new PD system.

Dantaimori

Quote from: barteke22 on Jan 04, 2023, 12:39 AMI also have tie-less versions of outfits with ties, not sure if those were shipped along with Kisekae (in Preg folder)?
If this is referring to kisekae 3.5 download, I'm guessing it's not shipped along with it because the only pregnancy-related code is located inKisekae 3.5 - Layered Cutter\HHS+ Default People (.txt)\MyMods\Adult.Birth.Female.txt and there are no folders named Preg (or anything starting with Preg). In either case, don't worry about the tie-less versions of outfits because ties aren't all that difficult to remove from what I've tested.

Quote from: barteke22 on Jan 04, 2023, 12:39 AMIf you do remake any outfits, please share them - I'm collecting codes on discord for a potential new PD system.
I've yet to decide on the RudeAtLevel value and just commented out VariableIDs 23 (Nude breasts for topless outfits), which is either: working as intended but giving that 'unused variable' message which is bothering me; or causing the game to hang if I load into an existing save as a mod. Once I fix these two, I do plan on sharing what I have. If the new PD System comes out before I'm done, I guess I'll just adapt to it.

Thank you in any case, I guess I'll just work on the male outfits too then. Also ugh, I just realised futa characters break immersion because their male endowments pierce through some of the female outfits on the lower half of the body... more fixes.

Alum

#22
Hi barteke22
I've redone the quest PantylessObserver.ve, just added a more detailed description for some cases.
If I do this quest as a mod, will my mod take over control? Or will it be two different quests?
#########
Is it possible to create a family with a certain surname once in the DefaultGameConfig? Is it possible to write code for this? I mean that there is a one-time appeal to the list in which there is only one surname.
I tried to create families with a chance of <Weight>0.5</Weight>, but it's terrible or zero families or 4 families with the same last name. ;D

I wrote an additional list of 200 surnames, in one of the trial runs of the game, 3 families with the same surnames were at my school. :(

barteke22Topic starter

So long as it's in the same folder & same name, it'll overwrite lower priority (base is lowest).
You can click 'Check for Overwrites' to see if it does.

##

The regular generation doesn't guarantee surname uniqueness (just combo), since that's both unrealistic and would require enough surnames to cover every family + more for variety. IRL most schools are more likely to have repeat surnames than not.

If you want a specific family to have a specific (unique or not) last name, you either:
- Have to make them via SpecialCharacter xmls.
- Have to make them via an event using CreatePerson.
- Have an event pick some family & change their CustomLastname (not actual Lastname).

ErDrago

I have a question about VEE. How to use "Perform Intercourse" or "Have Sex"? Whenever I try it just does nothing or crash.

barteke22Topic starter

It's broken in the public release, you can find a fixed version somewhere on the discord.

HaveSex however should never be used directly in events, unless you're overhauling / modifying the General Sex Functions framework.

You can find detailed instructions on how it works under Docs, or place 'Visual Event > Remote Event > GeneralSexHandling > SetEffects' down & hover over it for a very simplified version.

Alum

#26
Hi barteke22
Mrs Smith Boobygrab
Reworked - Mrs Smith Boobygrab - for event Boobygrab
+ alternative 2 - more thoroughly redrawn

Delete this message

mph0290

#27
Hello, I have a quick question that I can't find the answer to.

Currently sizes are from 0-10 and each level has a descriptive tag,(e.g. Flat, big, gigantic, etc).
I'm working on a mod to increases the size ranges (current goal is 0-20).
Where are these descriptive tags located and is it possible to add more?

Thanks for any help.

barteke22: Answered on Discord.

TBBle

Has something gone wrong with the modding guides linked from the first post? They look like they're supposed to open in OneNote, but for me, it just downloads the .one file. If I let Chrome download multiple files, the file downloads repeatedly until I close the tab.

barteke22Topic starter