Page 1 of 1

I'm new, sorry, but...

Posted: Fri Oct 25, 2019 8:30 pm
by MrCat
Folks, I'm new and know this a forum for folk who know what they're doing but I'm just working through some YT tutorials just now. One thing I discovered is that the dude kept saying put "pause" between everything to allow a user to click next. Doesn't work for me, I just put everything dialoge wise on a new line and that works fine or I just end up with a black text box between dialogues... Fine I figured that one out but am wondering if that's something to do with code indentation and structure or not, am I missing something?

I read a fabulous quote the other day something along the lines of (and whilst searching for game creation software);
"Here's some great tools, but by ... it's a lot of work, once you really get in to it and get started you'll wonder how games get created at all."

Much like everything and I'm sorely resting asking stupid questions here without reading up but I'm curious on this one, is it a RenPy version thing or whatnot?

Re: I'm new, sorry, but...

Posted: Fri Oct 25, 2019 9:09 pm
by isobellesophia
Can you show the code? So that they'll understand your problem.

Re: I'm new, sorry, but...

Posted: Fri Oct 25, 2019 10:11 pm
by Imperf3kt
MrCat wrote: Fri Oct 25, 2019 8:30 pm Folks, I'm new and know this a forum for folk who know what they're doing
Everyone is welcome here, even people with no programming knowledge at all.
Except spambots, they're not welcome anywhere.


Regarding why to use pause, how old is the video? Renpy is continually updated and many YouTube tutorials become obsolete within months of being uploaded. It's why I prefer the documentation (plus I dislike videos in general for this sort of thing anyway)

A pause is not necessary for each dialogue block, as you've noticed, just place the next line of dialogue on a new line at the same indentation as the last.

Re: I'm new, sorry, but...

Posted: Fri Oct 25, 2019 10:41 pm
by isobellesophia
Oh, and yes, Imperf3kt is right at one thing, Renpy on youtube is most i hate, just because their explanation is never done, (which is i know what is right of the simple codes on them. Obviously wrong.)

Just trust RenPy's documentation, that'll help you from the very start. Or maybe, dislike Youtube, that person may trying to put you in a wrong guide, especially when you are very far from the tutorial.

Re: I'm new, sorry, but...

Posted: Sat Oct 26, 2019 3:46 pm
by GNVE
We all have to start somewhere. So there are few true stupid questions (even if you feel stupid for asking them :) )

I don't know exactly what you're doing without a sample of your code but here's how you can use the pause function without the text background:

Code: Select all

label some_label:
	scene image-1
	writer "I'm the writer let me show you something" #Regular text
	window hide #hides the textbox
	
	scene image-2
	pause
	
	scene image-3
	pause
	
	scene image-4
	window show #shows text box again
	writer "Did you enjoy?"
	writer "Now go..."
It works the same if you are using the show command for your images by the way. Hope this answered your question :D

Re: I'm new, sorry, but...

Posted: Sun Oct 27, 2019 3:44 pm
by MrCat
Wow thanks folks, :D I feel welcomed. Yep I think I've figured it out for now but that helps a lot, and I will be posting code next time :)

Cheers.

Re: I'm new, sorry, but...

Posted: Sun Oct 27, 2019 3:50 pm
by MrCat
isobellesophia wrote: Fri Oct 25, 2019 10:41 pm Oh, and yes, Imperf3kt is right at one thing, Renpy on youtube is most i hate, just because their explanation is never done, (which is i know what is right of the simple codes on them. Obviously wrong.)

Just trust RenPy's documentation, that'll help you from the very start. Or maybe, dislike Youtube, that person may trying to put you in a wrong guide, especially when you are very far from the tutorial.
Hahaha, Love you, well said.

Re: I'm new, sorry, but...

Posted: Mon Oct 28, 2019 11:38 pm
by isobellesophia
Might as well learn in the documentations if you dont mind, Youtube RenPy tutorials are confusing.

Re: I'm new, sorry, but...

Posted: Sat Dec 21, 2019 12:44 am
by Ibitz
What Isobellesophia said is totally true. I tried learning to code/use Ren'Py through YT and it was ridiculously hard. Plus, a lot of people who make tutorial videos just basically seem to do stuff without actually explaining it and they go quick and it's just.. bleh.
Welcome to the forums! And, no need to feel bad about asking questions. There are no stupid questions. :)

Re: I'm new, sorry, but...

Posted: Sat Dec 21, 2019 2:55 am
by isobellesophia
Especially the people who narrates, they just point it that out that it was outdated, angry people were just stay in the comments until the person who make a tutorial replies, which is those people who wait until they give up.