Lemma Soft Forums

Supporting creators of visual novels and story-based games since 2003.


Visit our new games list, blog aggregator, IRC, and wiki.
Activation problem? Email [email protected]
It is currently Thu May 23, 2013 9:09 pm

All times are UTC - 5 hours [ DST ]


Forum rules


Ask questions about one topic per thread, and use a descriptive subject. "NotImplemented error in script.rpy" is a good subject, "Tom's problems" is not. Remember to include all of traceback.txt or error.txt when reporting a problem, as well as the relevant lines of script. Use the [code] tag to format scripts.



Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: Tue Aug 14, 2012 10:41 pm 
Newbie
User avatar

Joined: Fri Apr 06, 2012 7:05 pm
Posts: 22
Location: Virginia
Projects: Let's Learn Latin, An Acceptable Break From Reality
At the very beginning of one of my VN's, I want to make it look like a start up screen for an old NES game- it says ROM check, the you click each time for the dot dot dot to appear (as in, each click reveals a dot) and then it says 'OK !', moving onto Checking Higher Function, dotdotdot, 'OK !' and finally, Starting Dream Sequence, dotdotdot, and then the story officially begins there. The only problem is, none of the images will show up! It goes directly to when the character starts speaking.

I have tried different iterations of show [and hide], scene, removing everything before it so it literally is the very first part of the story, but nothing works. It skips directly to the commands beneath it, which interestingly enough, are play music [which I removed] and scene, and after removing the music which was the barrier between the images with ROM check, etc and the scene background for when the first character starts speaking, it still skipped directly to the background for when the character first speaks.

Basically: how do I make a series of images appear using show, hide, scene or any other commands? I'm sorry if it's a simple fix, I used to be well-versed in this and I used to have a friend of mine help me, but it's been a long time since I've bothered with Ren'py :/


Top
 Profile Send private message  
 
PostPosted: Tue Aug 14, 2012 11:13 pm 
Ren'Py Creator
User avatar

Joined: Mon Feb 02, 2004 10:58 am
Posts: 10776
Location: Kings Park, NY
Completed: Moonlight Walks
Projects: Ren'Py
It's hard to understand what's going on without reading the script. From now, on, post the script if you want support. That being said...

In Ren'Py, scene, show, and hide are instantaneous, and don't cause an interaction that updates the screen. You probably want to use pause to add a time delay between each scene. Some variant of:

Code:
scene black
show loading one
pause .1
show loading two
pause .1
show loading three
pause .1

show loading done
pause 1

"Welcome to the game."

_________________
Another Old-Fashioned Bishoujo Gamer
Supporting creators since 2004; Code > Drama
(When was the last time you backed up your game?)
"It is not the critic who counts; not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better. The credit belongs to the man who is actually in the arena, whose face in marred by dust and sweat and blood; who strives valiantly; who errs, who comes short again and again, because there is no effort without error and shortcoming" - Theodore Roosevelt


Top
 Profile Send private message  
 
PostPosted: Tue Aug 14, 2012 11:27 pm 
Newbie
User avatar

Joined: Fri Apr 06, 2012 7:05 pm
Posts: 22
Location: Virginia
Projects: Let's Learn Latin, An Acceptable Break From Reality
Thank you (sorry for not posting the code, didn't think it was needed, but I just realized how rushed my first post was) and your suggestion worked up until I got to beginning 10 and 11, where sometimes (I must have ran it about 10 times) it cuts off at 10 to skip directly to when the character starts speaking, and sometimes it cuts off at 11 to skip ahead. The .5 pauses are ROM Check, Checking Higher Function, and Starting Dream Sequence, the .15 are the dots, and the .25 are 'OK !'s, if it matters- I'm going to make the .15 and .25 longer anyways.


Code:
show beginning 1
    pause .5
    show beginning 2
    pause .15
    show beginning 3
    pause .15
    show beginning 4
    pause .15
    show beginning 5
    pause .25
    show beginning 6
    pause .5
    show beginning 7
    pause .15
    show beginning 8
    pause .15
    show beginning 9
    pause .15
    show beginning 10
    pause .25
    show beginning 11
    pause .5
    show beginning 12
    pause .15
    show beginning 13
    pause .15
    show beginning 14
    pause .15


Top
 Profile Send private message  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Protected by Anti-Spam ACP
Powered by phpBB® Forum Software © phpBB Group