deviantfiend999
Active Member
- Apr 21, 2018
- 502
- 607
- 245
To add further, the game uses a serum design container for putting in all the serum traits, how you create a new serum isIs there a cheat code available to obtain a specific serum in some quantity x?
A: create a new design object,
B. insert traits into design object,
C. use that design object as serum to add to your inventory
I wrote a lr2cheats.pyc file myself for quick and simple cheats and one of them was adding serums of my design
the file would look like:
Code:
init 9999 python:
def get_new_serum(count=100):
new_serum = SerumDesign()
new_serum.name = "New Serum"
new_serum.add_trait(futuristic_serum_prod)
new_serum.add_trait(mind_control_agent)
new_serum.add_trait(breast_enhancement)
new_serum.add_trait(happiness_tick)
new_serum.add_trait(climax_enhancer)
new_serum.add_trait(rolling_orgasm)
new_serum.add_trait(fertility_suppression_trait)
new_serum.add_trait(happiness_tick)
new_serum.duration=50
mc.inventory.change_serum(new_serum(), count)
"new_serum.duration" simple changes the duration of the serum.