Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
643
1,163
I can probably use you endpoint combined with the google doc to extract the links - saving any manual work from creators.

I could also give you an endpoint if needed for anything...
I can ask the modders to provide DL links directly in they girlConfig.ini so the API would also provide those links. That would automate a big chunk, while keeping "manual" way to do it for scripts and miscellanous mods.

But I think I need to provide more details with the API, like if the girl is PTA president or not, size and game's version.

I could use an endpoint to directly create/update a girl on your side when modders are syncing, that might avoid some calls while being sure datas are updated as fast as possible?
 

Xorgroth

Well-Known Member
Modder
Oct 12, 2017
1,153
1,174
I could add links, noticed that I'm not on the api list for some reason but guess if links help I could do that. I have 2 however, one at gofile and another on mega.
 

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
643
1,163
I could add links, noticed that I'm not on the api list for some reason but guess if links help I could do that. I have 2 however, one at gofile and another on mega.
Check the Discord, I'm talking to modders about how to set it up ;)
 

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
643
1,163
Should look like something like this when retrieved from API:
1727977260932.png

I've added all the vanilla girls for testing.
 
Last edited:

Kristovitch

Newbie
Aug 9, 2022
19
7
Not sure what the issue is then, sorry. Seems odd that it's occurring during startup. I'll post about it on the discord's bug report.
I believe I may have a theory on the issue, This time I managed to dupe a different girls, bith times using the debug tool, to reload new girls....
 
  • Like
Reactions: WarblGarbl

EllenD

Newbie
Mar 13, 2018
28
11
I can ask the modders to provide DL links directly in they girlConfig.ini so the API would also provide those links. That would automate a big chunk, while keeping "manual" way to do it for scripts and miscellanous mods.

But I think I need to provide more details with the API, like if the girl is PTA president or not, size and game's version.

I could use an endpoint to directly create/update a girl on your side when modders are syncing, that might avoid some calls while being sure datas are updated as fast as possible?
Give the game version a thought. Many mods are compatible with several game versions, so changing it with every version is quite overkill, especially for modders with a long list of girls. What is its purpose? What about the updatedAt? Is that a timestamp of mod update or of when your api recieves different values than stored? Just try to avoid providing mixed signals to users whether there is any relevant change within the girl's files, so they don't have to dowload whole archive again when there is no relevant change in compatibility or content.
 

linkmeister

Newbie
Dec 27, 2017
35
34
One thing i've noticed is that if a girl is wearing a swimsuit or a dress they will have skirts under them (Seems like the two pieces only count as upper pieces instead of upper+lower pieces) and also with swimsuits girls will also have (asides from the mentioned skirt) bras and panties under it. Shouln't it count as a full piece like the dress but instead of Upper+Lower count as bra+panties?

Still love the game a lot and playing it this moment, it's just a little weird with those two situations.
Keep up the good work (y)(y)(y)
 

WarblGarbl

Member
Oct 10, 2017
297
271
One thing i've noticed is that if a girl is wearing a swimsuit or a dress they will have skirts under them (Seems like the two pieces only count as upper pieces instead of upper+lower pieces) and also with swimsuits girls will also have (asides from the mentioned skirt) bras and panties under it. Shouln't it count as a full piece like the dress but instead of Upper+Lower count as bra+panties?

Still love the game a lot and playing it this moment, it's just a little weird with those two situations.
Keep up the good work (y)(y)(y)
I'm guessing there might be a problem with bra + panty piece of clothing as you can steal panties. But I don't really know how the clothing works.
 

QBaSS

Member
Mar 18, 2019
214
244
It would be nice to have the girls send pics to the Mc w their phone
It's one of the most popular themes in recent games
 
  • Like
Reactions: GamerDaddy

linkmeister

Newbie
Dec 27, 2017
35
34
I'm guessing there might be a problem with bra + panty piece of clothing as you can steal panties. But I don't really know how the clothing works.
I've found that is in the file DB.rpy where the clothes types are defined - the types are "outer", "upper", "lower", "socks", "bras" and "panties". Both dresses as well as the swimsuit are defines as "upper" clothing.

I get the gist of how it works and I can try and mess around with it a bit but i would need to define two new clothing types ("upper"+"lower" for dresses and "bras"+"panties" for the swimsuit) and new variables not just for actions for the new types but also so won't be any overlaps in clothes. Probably won't work but there is no risk in trying (as long as I backup the original file(s)).
 
  • Like
Reactions: WarblGarbl

erkan

Newbie
Nov 14, 2017
22
6
Canadian_sausage. Jordans mod seems to interact wierdly with the throatfuck/cum in throat vids (I think it only started since I installed it). I get travolta-meme clip instead and It says no vids for main_tag fuck_throat but folder is there. Did some digging and the "_main tags" folder seems to ramdomly write in fuck_throat and/or creampie_throat or not causing the issue as far as I can figure.
It's definately something with the "_main tags" file overwriting itself. Now only creampie throat is there. Tried editing and forcing it to read only but that just gives error screen when starting the game.
Edit: I don't thnik it's actually related to Jordans mod but I'm not completely sure.
 
Last edited:

EllenD

Newbie
Mar 13, 2018
28
11
Canadian_sausage. Jordans mod seems to interact wierdly with the throatfuck/cum in throat vids (I think it only started since I installed it). I get travolta-meme clip instead and It says no vids for main_tag fuck_throat but folder is there. Did some digging and the "_main tags" folder seems to ramdomly write in fuck_throat and/or creampie_throat or not causing the issue as far as I can figure.
It's definately something with the "_main tags" file overwriting itself. Now only creampie throat is there. Tried editing and forcing it to read only but that just gives error screen when starting the game.
Edit: I don't thnik it's actually related to Jordans mod but I'm not completely sure.
Hi erkan, I pointed that earlier to Ninoss. You might have found the same issue. If you are using more than vanilla tags, edit the loading function as well, otherwise your tags would be removed during re-loading.

See:
Vanilla main tags don't correspond to code.
... I found the culprit in the webmFinder_ren.py: Webm.loadPossibleTags function.
Firstly, there are two incorrect things:
  • _vanillaGameNbOfTags = 33, which should be 34 as counted in the code, unless you forgot to remove the remove_socks tag.
  • if line != "" and i < _vanillaGameNbOfTags-1:, just drop the '-1' at the end, as you're checking indicies, the exclusive '<' is enough to include the last one. Like this, by adding the one missing tag, it removed the last two tags from the file.
...
 
  • Like
Reactions: erkan

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
643
1,163
For future updates, content will be seperated from the game. Reducing the game's size to only 250MB and letting you choose which girls, pta president and vids pack you want for your game time.

HOWEVER I've worked hard with modders to provide you the best experience possible to find the content you want.
It can be found here: -
 

mangasm

Newbie
May 29, 2017
88
102
For future updates, content will be seperated from the game. Reducing the game's size to only 250MB and letting you choose which girls, pta president and vids pack you want for your game time.

HOWEVER I've worked hard with modders to provide you the best experience possible to find the content you want.
It can be found here: -
Thank you so much for this! Looks great!
 

derpnibbles

Newbie
Jul 28, 2017
68
87
For future updates, content will be seperated from the game. Reducing the game's size to only 250MB and letting you choose which girls, pta president and vids pack you want for your game time.

HOWEVER I've worked hard with modders to provide you the best experience possible to find the content you want.
It can be found here: -
What do the letters (D, C, A, S etc) on the girl's portraits mean?
 

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
643
1,163
What do the letters (D, C, A, S etc) on the girl's portraits mean?
It's an automated rating, indicating the girl's content richness and variety. I'll make something to show the exacts details on girl's card when time will allow it. But you can often expect from A+ girls to have various photoshoots, pictures, maybe an event, some custom vids, sometimes fullbodies etc...

It's unfortunate that the action videos don't have anything to do with the actress
Unfortunatly impossible to achieve, that's the drawback of real porn games.
 
  • Like
Reactions: TankyThomas

jimmy_the_ninja

New Member
Apr 22, 2020
11
2
The reason it doesn't run is because a file inside the .app isn't marked as executable. To fix it you need to do the following
  1. Right click on the WTM_Academy.app and select "Open Terminal at Folder"
  2. At the terminal type chmod +x Contents/MacOS/WTM_Academy (Note: This is case sensitive)
  3. You won't get any output if it works, it will just give you another prompt.
  4. Now the first time you run the application you need to right click on the app and select "Open". This is because this application isn't signed and Apple won't run an unsigned app you haven't run previously with just a double click.
After you complete all that it should work fine. (Well it did for me)
This needs to be pinned somewhere. Only way for me to get it running on mac
 
3.80 star(s) 20 Votes