TankH04

Member
Mar 15, 2021
332
309
Can I add videos into the game by downloading the related files with the same name you have them ass plus the next number in the sequence? Like, the way you have fuckpussy_7, would it work if I added a video and named it fuckpussy_8 even though that variable didn't exist before, or is it a whole coding thing I don't understand?
 

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
611
1,106
Can I add videos into the game by downloading the related files with the same name you have them ass plus the next number in the sequence? Like, the way you have fuckpussy_7, would it work if I added a video and named it fuckpussy_8 even though that variable didn't exist before, or is it a whole coding thing I don't understand?
Game will reload webmFinder on new files, should work :cool:
 
  • Red Heart
Reactions: TankH04
Sep 17, 2023
129
69
Oof I did not knew there was a loophole there. Will be fixed for next update :cool:
View attachment 3347170
There is one other, in the lb_sponsor_call.rpy - on line 11
Code:
    if timeManager.hour >= 19 and timeManager.hour <= 6:
- the if statement doesn't prevent you from calling the sponsor anytime you want. I thought you were supposed to be able to call anytime. I just changed the line in my game to read like this:

Code:
    if timeManager.hour <= 6 or timeManager.hour >= 19:
Now I can't call them between 19:00 and 06:00. It's going to be way more challenging to maintain relations with sponsors and still do many other things...
 
Sep 17, 2023
129
69
No, but one mod "sausage_info_mod" does have a file "sc_home.rpy" could this be the issue?
I've never had the error you showed, and I've been going through my code to see what I may have done. I don't see what would cause the conflict... I did realize that I had had many errors with Violet Pure from Bibimission. I removed her from my game and the problems went with her. The worst problems were trying to use the ratings with her in there. Try taking her out and see what happens.
 

xxdungeonxx

Member
May 3, 2017
110
104
I've never had the error you showed, and I've been going through my code to see what I may have done. I don't see what would cause the conflict... I did realize that I had had many errors with Violet Pure from Bibimission. I removed her from my game and the problems went with her. The worst problems were trying to use the ratings with her in there. Try taking her out and see what happens.
Hi, I fixed by changing the settings_menu to lb_settings, on another issue, this happens when you choose to fuck troath
You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: Canadian_sausage

Frostfire281

Member
Jan 18, 2019
126
212
How to add more clothing options to the game? This is a feature I would really like.
If it's anything like adding girls or more stuff to the existing girls, it's very easy to add more clothing options. Find pictures of the clothes you want to add, then just add them to the game/images/exam folder, ideally named in a similar manner as one of the closest already existing items, just with a higher number. So like, adding a new pair of panties as "string6" for example.

I dont understand what the photostuff and the marketing/sponsorship stuff has to do with this game, i find it boring and tedious

wouldnt this game be much better if there was more attention to the core?
Tbh I kind of agree, it's why I use the console command to just give my academy $100K immediately at the start of every run so I can ignore the sponsors entirely. Photoshoots are still somewhat decent since it's extra porn and it affects the stats of the girls, but sponsors are just there to make the game harder and more tedious imo.
 

Spenser4

Newbie
Jan 8, 2019
71
122
It such a cool concept for game, but i feel like this photoshoots take way more spotlight than they should. Really unnecessary and uninteresting for me personally. Like, instead of corrupting someone, managing school or planing some shenanigans, you just clicking to get pictures. Oh man, it just such a bummer.
 
Last edited:

篠原

Newbie
Jul 9, 2018
20
4
Got this error which forces me back to the title screen.
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/scripts/script.rpy", line 111, in script
call screen examButtons
File "renpy/common/000statements.rpy", line 609, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "game/scripts/sc_screens.rpy", line 62, in execute
screen examButtons():
File "game/scripts/sc_screens.rpy", line 62, in execute
screen examButtons():
File "game/scripts/sc_screens.rpy", line 94, in execute
hbox:
File "game/scripts/sc_screens.rpy", line 98, in execute
for girl in examGirls:
File "game/scripts/sc_screens.rpy", line 99, in execute
if not girl.notInRoom:
File "game/scripts/sc_screens.rpy", line 102, in execute
frame:
File "game/scripts/sc_screens.rpy", line 108, in execute
vbox:
File "game/scripts/sc_screens.rpy", line 111, in execute
hbox:
File "game/scripts/sc_screens.rpy", line 125, in execute
vbox:
File "game/scripts/sc_screens.rpy", line 175, in execute
if numberStats_debug:
File "game/scripts/sc_screens.rpy", line 177, in execute
if girl.correctAnswers < requiredAnswers:
File "game/scripts/sc_screens.rpy", line 178, in execute
$ _actualSubjectName = EXAM_subjects[girl.correctAnswers].name
File "game/scripts/sc_screens.rpy", line 178, in <module>
$ _actualSubjectName = EXAM_subjects[girl.correctAnswers].name
IndexError: list index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/scripts/script.rpy", line 111, in script
call screen examButtons
File "renpy/ast.py", line 2234, in execute
self.call("execute")
File "renpy/ast.py", line 2222, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "renpy/statements.py", line 281, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 609, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "renpy/exports.py", line 3161, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "renpy/ui.py", line 299, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "renpy/display/core.py", line 3377, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs) # type: ignore
File "renpy/display/core.py", line 3804, in interact_core
root_widget.visit_all(lambda i : i.per_interact())
File "renpy/display/core.py", line 582, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 582, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 582, in visit_all
d.visit_all(callback, seen)
File "renpy/display/screen.py", line 451, in visit_all
callback(self)
File "renpy/display/core.py", line 3804, in <lambda>
root_widget.visit_all(lambda i : i.per_interact())
File "renpy/display/screen.py", line 462, in per_interact
self.update()
File "renpy/display/screen.py", line 653, in update
self.screen.function(**self.scope)
File "game/scripts/sc_screens.rpy", line 62, in execute
screen examButtons():
File "game/scripts/sc_screens.rpy", line 62, in execute
screen examButtons():
File "game/scripts/sc_screens.rpy", line 94, in execute
hbox:
File "game/scripts/sc_screens.rpy", line 98, in execute
for girl in examGirls:
File "game/scripts/sc_screens.rpy", line 99, in execute
if not girl.notInRoom:
File "game/scripts/sc_screens.rpy", line 102, in execute
frame:
File "game/scripts/sc_screens.rpy", line 108, in execute
vbox:
File "game/scripts/sc_screens.rpy", line 111, in execute
hbox:
File "game/scripts/sc_screens.rpy", line 125, in execute
vbox:
File "game/scripts/sc_screens.rpy", line 175, in execute
if numberStats_debug:
File "game/scripts/sc_screens.rpy", line 177, in execute
if girl.correctAnswers < requiredAnswers:
File "game/scripts/sc_screens.rpy", line 178, in execute
$ _actualSubjectName = EXAM_subjects[girl.correctAnswers].name
File "game/scripts/sc_screens.rpy", line 178, in <module>
$ _actualSubjectName = EXAM_subjects[girl.correctAnswers].name
File "renpy/revertable.py", line 217, in __getitem__
rv = list.__getitem__(self, index)
IndexError: list index out of range

Windows-10-10.0.19041 AMD64
Ren'Py 7.5.1.22070801
WTM Academy 0.323
Mon Feb 12 19:01:02 2024
```
 
Sep 17, 2023
129
69
Oh man, it such a cool concept for game, but i feel like this photoshoots take way more spotlight than they should. Really unnecessary and uninteresting for me personally. Like, instead of corrupting someone, managing school or planing some shenanigans, you just clicking to get pictures. Oh man, just such a bummer.
Why's it a bummer? You can make the game into literally anything you want. Play it anyway you want. You can make all the girls super-slutty, or super-prudish. Everything that has an .rpy file is totally customizable. When I get the new version, I spend a few hours going through making small changes to things to mould the game more to my liking. You have the keys to control what your game-experience is like. If you need help editing the .rpy files, ask here. There's often somebody who can answer a question for you.
 
Sep 17, 2023
129
69
Can I add webp files for the sex videos or do they need to be webm files?
By definition, a sex video would be a .webm file. I use screen2gif to capture a video, and HandBrake video converter to create the .webm, you can make some very compact videos with them, and they're both free.
 
Sep 17, 2023
129
69
Got this error which forces me back to the title screen.
```
I'm sorry, but an uncaught exception occurred.


IndexError: list index out of range

Windows-10-10.0.19041 AMD64
Ren'Py 7.5.1.22070801
WTM Academy 0.323
Mon Feb 12 19:01:02 2024
```
Are you using any mods or non-vanilla girls in your game? Generally, when I see "IndexError: list index out of range", it indicates a problem with a picture array somewhere. pictures should be numbered sequentially, like this: face.webp, face1.webp, face2.webp, face3.webp - and the same applies to portrait, tportrait, boobs, pussy, and ass. If you have face.webp, face2.webp, face3.webp, you'll get the IndexError if the game tries to use face1.webp since it thinks it should be there based on the numbering.

I seem to remember this error kicked me out to the main screen too, but I could be mistaken. If you have added some girls to the game, check their folders and files, and make sure the files are all sequential, in both the girl's main folder and the bodyparts folder. if you find any that aren't sequential, fix them and try playing again. If you were playing a clean install with no additional girls or mods, let us know who was in the exam at the time, the action that led to the error, and anything else you can think of.
 
Sep 17, 2023
129
69
could someone reapir and reuload all girls mod.it said some files have errors
It's easiest to do those fixes locally. Normally, it's just renaming some image files in the girl's folder. My reply to another gent here outlines how the images should be named to avoid index errors. The first image in the array has no number, and each subsequent image is number from 1. Check all the images in the folder and sub-folders, except events. Images in that folder have specific names required by the event script, so don't change them or the event won't work right.
There's probably better than 250 girls that are "aftermarket", and that was just a really rough count, that might need some correction. I only fix the ones I want to use, which is about a hundred, grand total, including ones I made for myself. That was the first thing I did in modding my game, and is a recommended place to start to learn how to mod the game even further.
 

LateParty

Newbie
Jul 18, 2022
73
206
Sure, you can make whatever pack you would like. You could make it unicorn students if you wanted to.
Dope, actually tempted to vivisection some of the already existing mods just to do that.
Though I'm guessing that tying specific webms to specific characters and changing specific character's actions may be hard, since often simple stuff like hair color changes between the student and the webm.
 
Sep 17, 2023
129
69
It occurred to me that rather than making Ninoss push a fix for the sponsor call issue I noted, I'd just make a plug available. In the script, there is code that says you shouldn't be able to call sponsors at midnight, but you can. So this will plug that loophole, and keep you from bothering sponsors in the evening through the following morning. I'll attach the .7z here, it's just two files (30Kb), the lb_sponsor_call.rpy and lb_sponsor_call.rpyc files. They'll also be on the gofile until at least the next regular update. View attachment sponsor_call_loophole_plug.7z
 
Last edited:
  • Like
Reactions: WarblGarbl
4.10 star(s) 19 Votes