This set shortly after the events of the Lab Rats 1, but will not require any knowledge of it to enjoy. The game will focus on corrupting your female employees as you build your pharmaceutical empire. The game will feature procedurally generated girls, a detailed clothing and outfit system, and a complex sex system.
Installation:
1- Extract and run.
Developer: Vren
Censored: No
Version: v0.51.1
Language: English
Genre: 3DCG, Male protagonist, Group sex, Mind control, Teasing, Vaginal sex, Anal sex, Cosplay, Mobile game, Incest, Oral sex, Titfuck, Drugs
v0.51.1.
*CHANGES AND ADDITIONS*
– Refactored random_lists.rpy file to more accurately break up contents.
– Lists of names (first, last, male) are now class variables of the Person class.
– Key characters are now defined inside world_setup_characters.rpy
– Storyline character setup code refactored to be more clear.
– Character height refactored to be more internally consistent.
– Character height now described in feet/inches inside of the character details screen.
– Possible character opinion lists (normal and sexy) are stored as class variables inside of Person.
– Updated “Classical”, “Punk”, and “Pop” opinions to include “music” so they read more clearly inside of lists.
– Functions to check/compare breast sizes are now class functions of Person.
– Added several breast comparison functions (including checks for huge/tiny breasts, getting breasts by weight, etc.)
– Updated all existing calls to those breast comparisons to comply with the new interface.
– Hair colour functions are now class functions of Person.
– Eye colour functions are now class functions of Person.
– Refactored how random characters are generated. Should result in much more logically generated applicants when stacking recruitment requirements.
– Added new InstaPic/OnlyFanatics content for Jennifer.
– Jennifer’s InstaPic content begins after she has helped you twice. Results in her making an InstaPic account.
– Second phase of Jennifer’s new story content begins a few days after you have convinced her and Lily to take topless shots twice. Results in her making an OnlyFanatics account.
– Added event for helping Jennifer with her OnlyFanatics account; includes multiple branches.
– Added new event for Lily after you have helped Jennifer with her OnlyFanatics account. Results in her making an OnlyFanatics account.
– Added alternative triggers for all of the new events for situations where either character already has an InstaPic/OnlyFanatics account from other events/special training options.
– Levels of sex skill reduce energy cost from sex by 5% per level (truncated to integer value).
– Position class now responsible for calculating effective energy costs for both parties.
– Breast milk based serums now stack properly for identical designs.
- Support Developer of this game:
- Patreon
Download for Windows/ Linux
Download for Mac
Download for Android
- swipe down to hide the ui
- swipe left to roll back
- swipe right to start skipping of text
- swipe 2x left&right to open the game menu
- swipe up&down to toggle a small window with memory usage information
- longpress the save file thumbnail in the save/load screen to delete this slot
Download Quick start Guide
Console commands
# To activate console – edit the following file
# \Lab_Rats_2-v0.xx.0-pc\renpy\common\00console.rpy
# Find this line (around line 108) config.console = False and edit it to True.
# mc. <- You
# the_person. <- The person you are currently interacting with in the game. Its not a name but literally the_person)
# Letters goes in “”, numbers without “”. Example: mc.int = 6 and the_person.name = “Yolandi”
# Words are case sensitive. Example the_person.relationship = “Single” NOT “single”
mc.name=’YourNameHere’
mc.last_name=’YourLastNameHere’
mc.business.name=’CompanyNameHere’
# mc.money = xx <- This may not be used in the future. It seems to have been removed from the game.
mc.business.funds = xx <- These are your company funds ingame.
mc.business.supply_count = xxxx
mc.free_clarity = xxxx <- Used for research purposes (recently introduced mechanic)
mc.charisma = xx
mc.int = xx
mc.focus = xx
mc.hr_skill = xx
mc.market_skill = xx
mc.research_skill = xx
mc.production_skill = xx
mc.supply_skill = xx
mc.sex_skills[“Foreplay”] = xx
mc.sex_skills[“Oral”] = xx
mc.sex_skills[“Vaginal”] = xx
mc.sex_skills[“Anal”] = xx
mc.energy
mc.max_energy
mc.arousal
mc.max_arousal
the_person.love = xx
the_person.happiness = xx
the_person.energy
the_person.max_energy
the_person.arousal
the_person.max_arousal
the_person.core_sluttiness = xx (From 0 to 100)
the_person.sluttiness = xx (From 0 to 100)
the_person.obedience = xx (If you’re having trouble with tier 3 research, set this to 140 or something.)
the_person.tits = “xx” (“AA”, “A”, “B”, “C”, “D”, “DD”, “DDD”, “E”, “F”, “FF”)
the_person.body_type = “xx” (“thin_body”, “standard_body”, “curvy_body”)
the_person.height = x.x (From 0.8 to 1.0 – will take effect once the character is redrawn by the game engine)
the_person.name = “xx”
the_person.last_name = “xx”
the_person.kids = xx
the_person.relationship = “Single”
the_person.age = xx
# Changing titles of a person while keeping color and font formatting:
the_person.set_title(“custom title”) # e.g “friend”, “employee”
the_person.set_possessive_title(“their custom title”) # e.g “your friend”, “your employee”
the_person.set_mc_title(“what they call you”) # e.g “Boss”, “Master”, “Friend”
# Someone asked about changing the positions of locations on the map.
# All Room objects have an attribute called map_pos which references their [x, y] position on the map grid.
# e.g the newely added strip_club has a map_pos of [6, 5] meaning 6 on the x- axis from the left and 5 on the y- axis starting from the top.
room.map_pos = [x, y] # This will re- position the location on the map.
room.visible = True # Determines if the location is visible on the map.
room.public = True # If set to False then people will not roam into the location unless specified.
room.formalName = “new name” # Changes the name displayed on the map.
# If a room does not have the sexual positions you would like available it is most likely due to not having the correct objects available.
# You can add any objects to the room by using the add_object function together with a “make object” function.
room.add_object(make_wall()) # Adds a wall that can be leaned up against etc.
room.add_object(make_floor()) # Adds a floor to the room that can be used for sex.
room.add_object(make_bed()) # Adds a bed to the room.
room.add_object(make_window()) # Adds a window to the room.
# NOTE: room needs to be replaced with the variable of the room you want to edit.
# There are a couple of ways to do this. Easiest would be to go into the room and use mc.location which references your current location (room)
mc.location.map_pos = [x, y] # This edits map position of the current room you are in.
mc.location.add_object(make_bed())
list_of_places[0].map_pos = [x, y] # Replacing 0 with another number e.g 10 will reference a different room. You can do list_of_places[0].name or formalName to see which one it is you are editing.
list_of_places[0].add_object(make_bed())
strip_club.map_pos = [x, y] # This uses the variable name that the room is saved to. Names of all the rooms can be found in script.rpy ca. half-way down the label create_test_variables at lines 9150~ to 9500~.
# You can also add actions to a room by appending it.
room.actions.append(sleep_action) # This will allow you to sleep in the room. Adding actions to a room you can basically move the office into your bedroom.
Editor's Rating
Story - 79%
Visual - 84%
Engagement - 80%
Core Loop - 77%
80%
out off 100%
This review is based on author's perspective and actual experience may differ on individual's own preferences.