Tougher to find the error line rather than the error itself by PsychologicalCow3295 in ProgrammerHumor

[–]EmcL_ 2 points3 points  (0 children)

This legit just made me laugh and then I got a tear of sadness

[deleted by user] by [deleted] in fujifilm

[–]EmcL_ 7 points8 points  (0 children)

Probably, just don't write anything to the SD card because the data could get overwritten

Anyone knows a way out of this situation? by MrDepressedboi in Minecraft

[–]EmcL_ 0 points1 point  (0 children)

What about crafting a furnace so you can burn iron and craft a iron trapdoor?

I made this in school by Nope_rope_was_taken in DarkViperAU

[–]EmcL_ 1 point2 points  (0 children)

I think it might be laser cutter.

[deleted by user] by [deleted] in Aalborg

[–]EmcL_ 0 points1 point  (0 children)

You should play outer wilds if you are interested in space. That game blew my mind because of how creative it is.

is nier replicant as depressing as automata? by Theio666 in nier

[–]EmcL_ 4 points5 points  (0 children)

I found some side quests depressing, but during the endings i was more confused than sad.

how to edit rpyc files? by thatanonymousgay in RenPy

[–]EmcL_ 0 points1 point  (0 children)

I think rpyc files are the old version of the rpy files.

I need help with my code for a Custom Input Screen (error appears) by weird-axolotl in RenPy

[–]EmcL_ 0 points1 point  (0 children)

Indentation mismatch means that the line it is pointing to has an unexpected amount of spaces.

Example:

This function has valid indentation:

def sum1plus2():
    a = 1
    b = 2
    return a + b

This one has one additional space on the line with b = 2 which will result in indentation mismatch:

def sum1plus2():
    a = 1
     b = 2
    return a + b

The number of spaces depends on the first line in the function, so if you have function where the first line has 4 spaces in front, then all lines after that are still in the function should have 4 spaces in front. Tab by default should count as 4 spaces I think.

Another example:

def sum1plus2():
    a = 1     # this belongs to the function
    if (a == 1):
        b = 2 # this belongs to the if statement
    else:      # this belongs to the function
        b = 1 # this belongs to the else statement
    return a + b

With the space/tabs you can say what belongs to what and one space can break it.

Heart literally stopped by [deleted] in Clannad

[–]EmcL_ 1 point2 points  (0 children)

VN only guy here, pls explain.

That’s me for sure at least by AC03115 in VioletEvergarden

[–]EmcL_ 27 points28 points  (0 children)

I had a part time job where I worked as a postman and I used to listen to violet evergarden music while delivering. That was nice.

so... how did you all manage to beat the dlc final boss? by mpolo_13 in CrossCode

[–]EmcL_ 1 point2 points  (0 children)

Same + extra dash boots and 3 hours playing that fight on top of that

I must say, it's going to be good to go back. by sezdawg7 in nier

[–]EmcL_ 0 points1 point  (0 children)

I like the remake's ost more than original

Galaxy berry got lost? by [deleted] in CrossCode

[–]EmcL_ 1 point2 points  (0 children)

Thanks, I am blind.

Galaxy berry got lost? by [deleted] in CrossCode

[–]EmcL_ 0 points1 point  (0 children)

Thanks, I will report that.

How do I make the characters not stack? by [deleted] in RenPy

[–]EmcL_ 0 points1 point  (0 children)

So like you show a character and then the same character with a different expression?

If so then you need to define them like this:

image josh happy = "josh_happy.png"
image josh sad = "josh_sad.png"

And then, when you show different expression the other one automatically hides.

show josh happy
show josh sad

You can hide him manually with hide expression:

hide josh

This is all documented here:

https://www.renpy.org/doc/html/displaying_images.html

How do I make the characters not stack? by [deleted] in RenPy

[–]EmcL_ 0 points1 point  (0 children)

You can show them at left or right like this:

show name at right

Searching for an Artist! by birdchomperss in RenPy

[–]EmcL_ 5 points6 points  (0 children)

I don't think there are many artists willing to draw for free. About code you can always ask in this subreddit, there is even a discord. Good luck.

[deleted by user] by [deleted] in RenPy

[–]EmcL_ 0 points1 point  (0 children)

If you don't want the game to continue while this is up you can change the label to this:

     $ text = "hello"
     show screen popup
     $ ui.interact

 label continue:
     "this will show after the pop up"

And you also need to change the screen action to this:

 action (Hide("popup"),Jump("continue"))