HentHighSchool Development Forum

Game Development => HHS+ => HHS+ Mods => Topic started by: kenshuck on Sep 26, 2022, 05:41 PM

Poll
Question: Wich are the best/more accurate  stat checks?
Option 1: Normal Student: 0-25 corruption; 75-100 inhibition / Med corruption student: 25-50 corruption; 50-75 inhibition /High corruption student: 50-100 corruption; 0-50 inhibition  (Current check)
Option 2: Normal Student: 0-35 corruption; 65-100 inhibition / Med corruption student: 35-70 corruption; 30-65 inhibition / High corruption student: 60-100 corruption; 0-40 inhibition
Option 3: Other (please comment wich ranks of stats)
Title: Kenshuck's Mods Revival
Post by: kenshuck on Sep 26, 2022, 05:41 PM
So I resently came back from the dead  8) , and found out about the new forum and game version, so I'm going to start updating my old mods (yay! the mediafire carpet didn't die with me  ;D ).

First of all thanks to Fen_Going_To_School for updating most of my mods to 10.0.1, here is the link to his post (https://henthighschool.net/hhs-mods/kenshucks-mods-fixed-maybe/)

Fixed those events (broken locations, broken operations,etc) and compressed the images (it went down from almost 300mb to 50). I'm in the process of uploading them individually, for anyone that don't want all of them.
Event Compilation Download link (https://www.mediafire.com/file/rx8526fn8ms1knf/Kenshuck%2527s_Event_Compilation_1.0.7z/file)

So, let's get to work, here is a list of my current mods updated to 10.3.2
* School Assembly:

Since I'm apparently a masochist and like to f**k with my mental health I started with this one:
It gives you the chance to run an assembly the last friday of every month,IT'S STILL PRETTY MUCH A WIP, AND PROBABLY WILL BREAK SAVES ON UPDATES!
Features:
A school rule to to decide if you held the assembly or not
The ability to give an speech to influence diferent school/students/staff stats
An student speech that gives a general idea of how well the school is going, or how far the corruption is.
A time check: 7:00 - 7:15 principal speech, 7:15 -30 Students speech
Spoiler
(you're a little late, minor loyalty penalty)
[close]
7:30 - XX
Spoiler
(you missed it!! mayor loyalty penalty)
[close]
A calendar note that tells you of the next assembly

TO-DO:
Spoiler
*Link pregnancy references when its added to the game (or do a patch to work with bartekke mod)
*Add some more school related events/parts (maybe a science fair?)
*Re-balance stats changes
*Add some pta/staff meetings triggers
*Add some more history based content
*Re check everything for the 10000 time  ::)
[close]

Changelog:

Spoiler
0.2 (07/10):
  • Changed the version name to better reflect the WIP status.
  • Updated to 10.3.2 game version
  • Modified the schedule metod to use the new cron expressions
  • Deleted the TriggerIntro, since it was un-necesary (was my own stupidity while testing, that bringed it up)
  • Moved the schedule and the calendar to a FunctionEvent
  • Fixed wrong color tag on intro event (thanks to shilo)
  • Some typos
  • Changed the way it sets the different speeches bools (basically added a check for a lower corruption student to do X speech if their lust is high enough)
  • Probably some other things I don't remeber (yeah, I need to start documenting everything)
0.1b (27/09):
Added a new trigger in your bedroom for SchoolAssemblyIntro (you just need to enter it anytime, should run only one and then kill itself), now hopefully it wont repeat itself after an update
Added a holiday check, now it shouldn't run on holidays
Fixed eventschedule, now should work as intended (tested on new game for 4 months and it scheduled the event to the last friday)
Fixed the respective rule, now it shouldn't show before the intro, and dissapear after it (That was a Mandinga work I tell you :P )

0 .1a(26/09):
First release
[close]

Download link (https://www.mediafire.com/file/jerc3jvubwjd8ur/School_Assembly_0.2.7z/file)

Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Sep 26, 2022, 05:42 PM
Reserved
Title: Re: Kenshuck's Mods Revival
Post by: fubalnut on Sep 27, 2022, 07:56 AM
Download link is set to private
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Sep 27, 2022, 12:58 PM
Quote from: fubalnut on Sep 27, 2022, 07:56 AMDownload link is set to private
Should be fixed now! Thanks for the warning :D
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Sep 29, 2022, 02:08 PM
I made a poll to see if I should change the students stats checks for the speechs, please make 1 vote in each category (normal, med and high)
These are used for:
Normal: no sex, secret masturbation/stripping, forced nudity/bondage, mind control sex
Med: low intensity sex, masturbation, reluctant stripping, reluctant nudity, semi-reluctant bondage
High: all the hardcore parts of the mod (gangbang, public humillitaion, nudity, bondage, basically all of the above, but fully embraced by the girl)
Title: Re: Kenshuck's Mods Revival
Post by: Shilo on Sep 29, 2022, 03:59 PM
I am wondering what the use of the initial trigger event is.

It can run from the first day on and then simply schedules the follow-up event in your office (and disables the new rule, but it probably shouldn't be enabled in the first place at this point). As soon as that event has run, the first one can never run again. So what's the difference to just having the office event trigger immediately?

And in your assembly intro event, you basically have two execution branches based on whether Lydia Swan or Susan Hooter is working for you right now. But all the text is exactly the same, so there's actually no reason to duplicate it. You can just assign "P1" to be either Lydia Swan or Susan Hooter, depending on which of the two was chosen. There is no need to make one of them explicitly "P2".

During the student speech, you have a text where the teacher is first called "April Raymunds" and shortly thereafter in the same text "Beth".

But on a more positive note, the next release of the game happens to include a couple new and modified VEE operations to find follow-up datetime variables based on a given Cron expression (https://crontab.guru/), which can probably help you clean up your date logic a lot.
You could for example pass the operation a string like "30 7 * * 5L" and it would give you a Date variable that corresponds to "7:30 AM on the last Friday of the month". (The "last X of the month" is non-standard for Cron, but the library (https://github.com/HangfireIO/Cronos) we are using includes it.)
And date variables (which also include time values) can also be used to schedule events now.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Sep 29, 2022, 05:01 PM
Quote from: Shilo on Sep 29, 2022, 03:59 PMI am wondering what the use of the initial trigger event is.

It can run from the first day on and then simply schedules the follow-up event in your office (and disables the new rule, but it probably shouldn't be enabled in the first place at this point). As soon as that event has run, the first one can never run again. So what's the difference to just having the office event trigger immediately?

That is 'cause I was having a problem when I re-loaded the events for testing, the intro triggered every-time (even if you already saw it) and the rule keep reaparing/disapearing before/after seeing the intro so I moved it to a trigger event. I'm thinking to just move it to an initial event, and then move the rule/scheedule part to just a chat option with Lydia/Susan (something like the pta scheedule), but in the mean-time I assigned the calendar/scheedule/trigger events to individual FunctionLibrary events, just to try and make it more easy and manageable for me to edit. Altough this breaks saves, if u already have scheeduled the assembly it wont run after reloading events, and if u had the mod but didn't see the intro it won't trigger, I don't know what the hell it's happening, im going to just put a New Game required warning when I upload the next version, and wait a little before trying to make this save-compatible between updates

QuoteAnd in your assembly intro event, you basically have two execution branches.

That part I actually didn't modify it, so i dont remember why its set like that, probably just stupidity or a problem when changing the names or the colors

QuoteDuring the student speech, you have a text where the teacher is first called "April Raymunds" and shortly thereafter in the same text "Beth".

Yeah, the speech part needs a lot of cleaning/correction, specially since I changed a lot of the variables without checking the texts (i.e.: that was probably set to run with just Beth)

QuoteBut on a more positive note, the next release of the game happens to include a couple new and modified VEE operations to find follow-up datetime variables based on a given Cron expression, which can probably help you clean up your date logic a lot.
You could for example pass the operation a string like "30 7 * * 5L" and it would give you a Date variable that corresponds to "7:30 AM on the last Friday of the month". (The "last X of the month" is non-standard for Cron, but the library we are using includes it.)
And date variables (which also include time values) can also be used to schedule events now.

That's great!!, that part was a real headeche, I actually made like 4 or 5 infinite loops accidentally, and then almost slammed the pc on the floor cause it didn't run  😂😂. Didn't think about using the date like that, good to know, should save some steps on calculating schedules for future events :D
Title: Re: Kenshuck's Mods Revival
Post by: barteke22 on Sep 29, 2022, 06:41 PM
Regular Event Reload will keep scheduling, and try to grab data for existing variables marked as 'Survives Reload' by ID matching  (if in old Legacy mode, it'll try to guess what variables are important, but it might not be accurate).

So if the event is meant to keep such data, it should work fine on reload (keep specified variables & scheduling).

If everything about the event is meant to reset on reload (event must be designed to not break upon data loss), you can add @FullReload to its Edit > Event Properties > Description start.

For testing purposes you can either add @FullReload and remember to remove it later, or hold CTRL+Shift before clicking reload event (the button will change) to reset the events.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 01, 2022, 03:18 AM
So, i'm stuck and this is giving me a fucking headache:
For some reason it's giving an error:
Spoiler
FunctionLibrary\SchoolAssembly\CalendarNotes [EXEC] caused an exception at operation SeqAct_SetCalendarNoteStatus (ID: 42).
    called by FunctionLibrary\SchoolAssembly\SchoolAssemblySchedule at SeqActLat_RemoteEvent (ID: 159)
    called by Location\School\Gym\SchoolAssemblyWIP at SeqActLat_RemoteEvent (ID: 1874)
Object reference not set to an instance of an object.
[close]
And if i'm understanding the report right, it means that the SetcalendarNoteStatus is linked to a note that  doesn't exist.... but it does...
Edit: thougth that it was cause I moved it to it's own special event, so tried to put the setstatus on the main event, but nop, it keeps giving that error.....

QuoteRegular Event Reload will keep scheduling, and try to grab data for existing variables marked as 'Survives Reload' by ID matching  (if in old Legacy mode, it'll try to guess what variables are important, but it might not be accurate).
I'm not sure I'm understanding it right, if it's marked as survives reload, it should keep the day scheedule right? or it will try to reeschedule with the valor I assigned (in this case, a result of a math operation) cause it isn't keeping it (if I change the scheeduleevent and reload the event doesn't fires  ???

Attaching the files just in case...
Title: Re: Kenshuck's Mods Revival
Post by: barteke22 on Oct 01, 2022, 10:25 AM
I'm guessing you're trying to keep the note object for later?  Basically Object, Object List, Struct variables (if they contain either of those) should be considered dead the moment the event ends - because they're too complex to save for later.

So you want to save the noteID (mark it as Survives) and get the note from that instead.  All other variable types can survive saving and loading.  Additionally they can be marked as 'Survives Reload' to also attempt to keep their data when reloading events (debug).

Scheduling is a property, not a variable, so a separate thing from Survives Reload, it keeps its current value on reload by default.
- Unless the event is marked as @FullReload (designed to always fully reset when reloaded in debug).
- Or you Ctrl+Shift+Click the reload button instead (for testing) to fully reset the event.
- Or you can open the event in the debugger and change its scheduling there.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 01, 2022, 06:37 PM
Quote from: barteke22 on Oct 01, 2022, 10:25 AMI'm guessing you're trying to keep the note object for later?  Basically Object, Object List, Struct variables (if they contain either of those) should be considered dead the moment the event ends - because they're too complex to save for later.

So you want to save the noteID (mark it as Survives) and get the note from that instead.  All other variable types can survive saving and loading.  Additionally they can be marked as 'Survives Reload' to also attempt to keep their data when reloading events (debug).

I'm just trying to set the note (in SetCalendarNote.ve) as done, but it gives that error, I didn't do any reload so it should work, right (tried to put the setstatus in the same event the note is created, and in the SchoolAssembly event)? or even in that case i should save the noteID? Edit: tried to mark it as survives, but the object and object list don't have that option ???

QuoteScheduling is a property, not a variable, so a separate thing from Survives Reload, it keeps its current value on reload by default.
- Unless the event is marked as @FullReload (designed to always fully reset when reloaded in debug).
- Or you Ctrl+Shift+Click the reload button instead (for testing) to fully reset the event.
- Or you can open the event in the debugger and change its scheduling there.

Yeah, so i don't know what the heck is happening, it doesn´t keep it, it's scheduled to run on 26march (in this case) and on reload it doesn't run (isn't marked as fullreload either). I don't know maybe i'm banging my head against the walll and it's just how i did the tryphase and the schedule?
Edit: added schedule and the try phase, maybe someone can discover whats happenning and give my head a hard bang so it starts working again 🤣🤣

🤦�♂️🤦�♂️Edit: temporary stupidity * 100000000 found the problem with the schedule, had a check to see if the day you enter the gym (i.e. the day you now it0s scheduled) its equal to the day the game knows its scheduled, and didn't put the survive on that date 🤦�♂️🤦�♂️🤦�♂️🤦�♂️, gonna put some ice on my face, my own facepalm hurts a lot, still can't figure what the problem is with the calendar
Title: Re: Kenshuck's Mods Revival
Post by: barteke22 on Oct 01, 2022, 10:26 PM
Ah, for the Ops, the NoteID is called Name. There's functions in the Smartphone category that provide a different system for CalendarNotes that call it NoteID.

But like I said, Object and Object List are dead after event execution (Object survives a bit longer than Object List, but consider it dead when the event ends), and therefore they can't survive reload either.

So you need to save the Name string (make it Survive so mod updates don't reset it), and use 'Get Calendar Note by Name' to get the note next time you run the event.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 01, 2022, 11:01 PM
Quote from: barteke22 on Oct 01, 2022, 10:26 PMAh, for the Ops, the NoteID is called Name. There's functions in the Smartphone category that provide a different system for CalendarNotes that call it NoteID.

But like I said, Object and Object List are dead after event execution (Object survives a bit longer than Object List, but consider it dead when the event ends), and therefore they can't survive reload either.

So you need to save the Name string (make it Survive so mod updates don't reset it), and use 'Get Calendar Note by Name' to get the note next time you run the event.
Lol, thanks, I didn't think of using that option (get note by name), but now that you say it,it makes a lot of sense :D
Title: Re: Kenshuck's Mods Revival
Post by: Shilo on Oct 06, 2022, 05:57 PM
I think the Assembly Intro path is broken when you only have Susan Hooter and not Lydia Swan. It will take the bottom path where the tags start with "P2_", but one of the texts there uses a "P1_" instead and then breaks the event because the text color is not being properly resolved.

[ERROR 2022-10-06 19:50:39 - (1)] Location\School\Principal Office\SchoolAssemblyIntro [EXEC] caused an exception at operation SeqActLat_ShowText (ID: 50). origin:hhs_.EventRunner
System.ArgumentException: Token is not valid. - '{P1_Color}' is not a valid color name! ---> System.FormatException: Token is not valid.
   at MS.Internal.Parsers.ParseColor(String color, IFormatProvider formatProvider, ITypeDescriptorContext context)
   at System.Windows.Media.ColorConverter.ConvertFromString(String value)
   at hhs_.EventTextBlockParser.GetColorFromString(String col) in D:\Torrents\DONE\dun\hhs-source\hhs+\_Modules\Util\EventTextBlockParser.cs:line 217
   --- End of inner exception stack trace ---
   at hhs_.EventTextBlockParser.GetColorFromString(String col) in D:\Torrents\DONE\dun\hhs-source\hhs+\_Modules\Util\EventTextBlockParser.cs:line 221
   at hhs_.EventTextBlockParser.ParsePage(IEnumerable`1 tokens) in D:\Torrents\DONE\dun\hhs-source\hhs+\_Modules\Util\EventTextBlockParser.cs:line 117
   at hhs_.EventTextBlockParser.<ParseText>d__6.MoveNext() in D:\Torrents\DONE\dun\hhs-source\hhs+\_Modules\Util\EventTextBlockParser.cs:line 77
   at hhs_.SeqActLat_ShowText.<ActivatedAsync>d__6.MoveNext() in D:\Torrents\DONE\dun\hhs-source\hhs+\_Editor\_EventModules\_EventActions\_EventActions_UI\_EventActions_UIControls\SeqActLat_ShowText.cs:line 61
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
   at hhs_.EventRunner.<ExecuteAsync>d__109.MoveNext() in D:\Torrents\DONE\dun\hhs-source\hhs+\_Editor\_EventModules\EventRunner.cs:line 1249
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 06, 2022, 09:10 PM
Quote from: Shilo on Oct 06, 2022, 05:57 PMI think the Assembly Intro path is broken when you only have Susan Hooter and not Lydia Swan. It will take the bottom path where the tags start with "P2_", but one of the texts there uses a "P1_" instead and then breaks the event because the text color is not being properly resolved.

Fixed! I always hire both of them so it completly scaped me, thanks!

And since im looking at it, and by accident now i understood this:
QuoteAnd in your assembly intro event, you basically have two execution branches based on whether Lydia Swan or Susan Hooter is working for you right now. But all the text is exactly the same, so there's actually no reason to duplicate it. You can just assign "P1" to be either Lydia Swan or Susan Hooter, depending on which of the two was chosen. There is no need to make one of them explicitly "P2".

Yeah, never tried to double click on replace text (person) so didn't know it could be linked to more than one person object.
Edit: nop, I still fail to see how i can do that  ???
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 06, 2022, 10:32 PM
As I was doing some superficial play testing, I realized that although it is true that the Constant split serves to ensure that (if possible) you get through all the events/speechs without repeating them, it gives them something like a "linear/consecutive" sense to them wich isn't the case (they are totally random between them), I was thinking of ways to randomize them without sacrifacing the constant split.

Right now it looks like this:
Constant Split -> Check for bool, if true, run the event, if false, sum 1 to the index of the split and repeat.

Thought about giving them a random chance after the split,

It would look like this:

Constant Split -> Check for bool: if true, run a random chance (for example 25) if passed -> run the event // not pass or bool false -> sum 1 to the index of the split and repeat.

But then I realized that it might end up being too resource-consuming (i.e.: it would end up in a semi-infinite loop until one event/speech passes the chance)

Then I tought about using a BitField, but honestly, i'm not a 100% sure about how they work... and how i could implement them for this.

So, wich would be another solution to this? [keep ensuring the player gets all the possible events, without repeating them too much, (i.e.: every assembly the same damn event), and keep them semi-random]

On a side note, after checking the poll I realized it wasn't well structured so i'm going to do another one
Title: Re: Kenshuck's Mods Revival
Post by: Shilo on Oct 06, 2022, 11:48 PM
Ran into another exception:
Location\School\Gym\SchoolAssemblyWIP [EXEC] caused an exception at operation SeqAct_PersonStats (ID: 763).
Object reference not set to an instance of an object.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 07, 2022, 12:26 AM
Quote from: Shilo on Oct 06, 2022, 11:48 PMRan into another exception:
Location\School\Gym\SchoolAssemblyWIP [EXEC] caused an exception at operation SeqAct_PersonStats (ID: 763).
Object reference not set to an instance of an object.

Yeah, that seems to be already fixed but not uploaded, going to download the version posted and re-check just in case. Yep, that's already fixed

I'm running into a problem, I'm trying the new cron expressions to schedule the event, but it's not working as it should. The event is running whenever you enter the gym (as long as it's the right time, and the calendar note (that uses the date from the crone) it's "saying" the event is "scheduled" on the last thursday

Edit: added the schedule and calendar
Edit 2: nevermind that error, it was 'cause I removed the date check, to test it for the first time after changing the schedule, tough if I understood right, with the date schedule, it shouldn't need a date check on the try phase?
Title: Re: Kenshuck's Mods Revival
Post by: barteke22 on Oct 07, 2022, 12:44 AM
Quote from: kenshuck on Oct 06, 2022, 09:10 PM
Quote from: Shilo on Oct 06, 2022, 05:57 PMI think the Assembly Intro path is broken when you only have Susan Hooter and not Lydia Swan. It will take the bottom path where the tags start with "P2_", but one of the texts there uses a "P1_" instead and then breaks the event because the text color is not being properly resolved.

Fixed! I always hire both of them so it completly scaped me, thanks!

And since im looking at it, and by accident now i understood this:
QuoteAnd in your assembly intro event, you basically have two execution branches based on whether Lydia Swan or Susan Hooter is working for you right now. But all the text is exactly the same, so there's actually no reason to duplicate it. You can just assign "P1" to be either Lydia Swan or Susan Hooter, depending on which of the two was chosen. There is no need to make one of them explicitly "P2".

Yeah, never tried to double click on replace text (person) so didn't know it could be linked to more than one person object.
Edit: nop, I still fail to see how i can do that  ???


Just make them both use the same Object (the part that selects them) and then go down the p1 branch.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 07, 2022, 03:30 PM
Quote from: barteke22 on Oct 07, 2022, 12:44 AMJust make them both use the same Object (the part that selects them) and then go down the p1 branch.
Duh!! 🤦�♂️ thanks!

Im having some problems with this event: not sure if it directly doesn't trigger and runs with the vanilla event, or if it's just failing/jumping the list filter, and continues with the vanilla ending
Edit: the button name it's changing, so the event is overwriting the vanilla one, don't know how it didin't occur to me to do that before 🤦�♂️🤦�♂️
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 08, 2022, 12:40 AM
I don't know why but the poll keeps giving the chance to vote up to three times, even when I change it, so please, just vote once!!
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 08, 2022, 02:20 AM
POSTED A NEW UPDATE!
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 08, 2022, 10:04 PM
So i'm trying to understand how the new general events (try for school events and below sex level) works. Since it uses both positions and values, it's confusing me a little. Looking at different events I deduced that:

  • In mode: from looking at tryforschoolevents im reallllyyy confused what goes in here??? If I want the following criteria: High sex, and class is in session --> 4 (high sex level + 0 from class criteria); med sex and class isn't in session --> 18 (2 from sex level + 16 from class criteria, , tried to look at daisy events since it's the only one that I remember would be a little similar, but it doesn't use this metod)
  • In uniform: we should sum all the values we want (i.e.: 3= normal clothes and normal uniform; 24 = nude and bondage)
  • How does the reschedule works? It just uses the set-double, or does some other calculation? If it just uses the set double (5-8) can we specify another value? (seems a little high)
  • If I have an specific time in mind for the event, should I use this with check time? or would it be better to set all of the checks manually?
  • How do we set the criteria for GetCandidates?
Edit: I think for this I need to understand better how bitwise operations work :/
Edit2: After looking at bitwise operations now I understand that part, but i really don't understand how doe's it decides if it needs to look for a min of 3 in each gender, or not
Edit3: after thinking and looking and re-looking at various events, i got this conclussions: If I put 0 in mode (i.e.: non sexual + in class) it would look at 3 of each gender, meanwhile if i put 20 (high + not in class) it would look for just 1, wouldn't it make more sense if it were the other way around? (0 is false and 1 is true, right????)
Title: Re: Kenshuck's Mods Revival
Post by: barteke22 on Oct 08, 2022, 11:22 PM
Mode: Pretty much that.  Level + 16 to disable classroom criteria.  Classrooms are the main main target of TryForSchoolEvents, so it uses them as default.

Uniform: Pretty much.  You can use -1 as 'Any' since -1 just inverts all bits.

The reschedule value is the minimum delay in case the whole school doesn't meet the specified conditions - which is unlikely to change very quickly.

Your event it meant to add its own custom delay if it executes and use the SaveSchoolEventInfo function at the end.
Title: Re: Kenshuck's Mods Revival
Post by: kenshuck on Oct 08, 2022, 11:30 PM
Quote from: barteke22 on Oct 08, 2022, 11:22 PMThe reschedule value is the minimum delay in case the whole school doesn't meet the specified conditions - which is unlikely to change very quickly.

Yeah, but what if, it just doesn't run cause there's, let's just say, 1 person and it's looking for 3 of each?

QuoteYour event it meant to add its own custom delay if it executes and use the SaveSchoolEventInfo function at the end.
Not sure what you mean with this? just the good old set next schedule?

So in theory, 5 should work for normal clothes and sexy uniform? or in that case should I use the old check rules?
Title: Re: Kenshuck's Mods Revival
Post by: barteke22 on Oct 08, 2022, 11:51 PM
- Classroom events are mostly while the class is in session, with potential onlookers.  If you need to specifically check for 1 of any gender instead of 3 males and 3 females, then add the 16 and your own checks.

- Yes, add a next schedule, like all other events do.

- Yes, 5 is clothes or sexy.
Title: Re: Kenshuck's Mods Revival
Post by: Alex7Sea on Dec 22, 2022, 06:04 AM
I was testing this mod, I know it is WIP but I just wanted to show my experience with it.

School Assembly 0.2  with HHS+ 1.10.3.5 (Inhibition:88.7, Lust:10.7, Corruption:8.5, Reputation:86.7, Students:182 )

This was first time I hade the meeting.

Part 1 (Principal Speech)
- Education, works good.
- Sports, works good.
- Parents Meeting, breaks the meeting and if you just continue your day from there, at 18:00 you get a message that you forgot the School Assembly, and get some bad rep.
- Teachers, works good.

Part 2
Always the same text and image:
Your D*** rams inside...
The text explain in detail how the girl and everyone else got affected, but nothing happens on the stats.

I checked the girl after and she got in:
Encounters (who gave)
Exposure - light : she x 1 (I was afraid that she lost her v-card on the event, but not.)

I hope for a update soon, thanks for your hard work.  :)