Kiroana

New Member
Apr 7, 2022
2
1
This error keeps showing up:


"PaperDollHandlers\PD_Principal [EXEC] caused an exception at operation SeqActLat_RemoteEvent (ID: 260).
Unable to find Remote Event 'FunctionLibrary\PaperDoll\CheckFutaPrefs'"

I checked, and the CheckFutaPrefs.ve is there, so I'm unsure what's wrong.
 

RPDL

do torrent. go fast.
Donor
Dec 17, 2020
5,102
14,687
HentaiHighSchool-HHS-1.10.4.2
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 
  • Yay, update!
Reactions: adam~

Thisisfunny

Member
Aug 11, 2020
236
246
Can someone please PM me to helping with this C++? My computer says I have it but I do not know where to find it.
 

thrway188

Member
Feb 20, 2022
178
195
Can someone please PM me to helping with this C++? My computer says I have it but I do not know where to find it.
Sounds like you lack the redistributables. Update your Windows and check this page
 

Dzeris

Well-Known Member
Nov 4, 2018
1,421
513
Does this game ever add new content or just engine updates? It seems to be largely the same as when I played it years ago.
1.10 added some content for April and Carl and they probably have plans to add more before removing quest tags on them. No major changes in other clubs and teachers.
 

pandabweer

Member
Modder
Oct 11, 2017
228
1,012
Database is SQLite so you can just do some queries to figure out how to change the data. I'll make some examples but you should figure the rest out using google.

You don't have permission to view the spoiler content. Log in or register now.

<UID> = Id of a person (can be found at the Persons tab)
<TABLENAME> = name of the table you are altering.
<AMOUNT> = Value that you want to change it to.

Getting the table structure:
SELECT * FROM '<TABLENAME>';

Get all the records from a person:
SELECT * FROM '<TABLENAME>' WHERE ownerId = <UID>;

Update all relationship values from an owner:
UPDATE 'relationships' SET value = <AMOUNT> WHERE ownerId = <UID>;
 
Last edited:
3.60 star(s) 60 Votes