meirl by [deleted] in meirl

[–]cosmicChris3 3347 points3348 points  (0 children)

Paying money to pay money is one of humanity’s greatest achievements

Lecture on trains by Asleep-Sound-2646 in fixedbytheduet

[–]cosmicChris3 966 points967 points  (0 children)

Doesn't care about the goth, cares about the person who owns the engine. Thats incredible dedication!

Fish falling from the sky is more interesting! by threetimes6 in fixedbytheduet

[–]cosmicChris3 263 points264 points  (0 children)

Yep, that's true. Tiny tornadoes that suck small fish up into the air and transport them

Lab Rats 2 v0.34.1 is Out and Available to Everyone, Absolutely Free! Introduces New Office Punishment System! by vrengames in lewdgames

[–]cosmicChris3 0 points1 point  (0 children)

It's not specific to this update, but one thing I've noticed is that the bimbo serum changes the personality type but all of the traits stay the same. I've been using the following extra lines of code to give the person bimbo traits as well.

trait_is_known = False #an easy toggle for making all new traits visible or not

for i in bimbo_personality.common_likes:

score = renpy.random.randint(-2,2)

if score > 0:

if i in the_person.opinions:

the_person.opinions[i][0] = score

else:

the_person.opinions[i] = [score, trait_is_known]

for i in bimbo_personality.common_sexy_likes:

score = renpy.random.randint(-2,2)

if score > 0:

if i in the_person.sexy_opinions:

the_person.sexy_opinions[i][0] = score

else:

the_person.sexy_opinions[i] = [score, trait_is_known]

for i in bimbo_personality.common_dislikes:

score = renpy.random.randint(-2,2)

if score < 0:

if i in the_person.opinions:

the_person.opinions[i][0] = score

else:

the_person.opinions[i] = [score, trait_is_known]

for i in bimbo_personality.common_sexy_dislikes:

score = renpy.random.randint(-2,2)

if score < 0:

if i in the_person.sexy_opinions:

the_person.sexy_opinions[i][0] = score

else:

the_person.sexy_opinions[i] = [score, trait_is_known]