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 Sat May 18, 2013 6:20 am

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  [ 28 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: Sat May 05, 2012 10:57 am 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
- Please help me to add video & disable to click to skip that.
~> Just waiting when Video play is done.

*Ex:
- "Text i write"
(I want to play Video after that text & i cannot click to skip that video )


- I want to make CG Gallery.
& Help me to unlock that picture when play that.

*Ex:
- "Text"
- show picture 1
& I will unlock that picture 1 on CG Gallery.

- Help me when I Open my Visual Novel.
There show Logo i make & cannot click skip again ( look like Video ^^! )

Please Help Me.
Thanks.


Last edited by vocaloidimai on Tue Jul 31, 2012 1:00 pm, edited 1 time in total.

Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sat May 05, 2012 4:22 pm 
Miko-Class Veteran
User avatar

Joined: Mon Feb 06, 2012 9:50 pm
Posts: 713
Location: NYC
Projects: Icebound
Organization: Fastermind Games
http://www.renpy.org/doc/html/rooms.html

This is the most up-to-date gallery explanation.

viewtopic.php?f=26&t=6999

This shows how to make a cutscene unskippable (I think)

http://www.renpy.org/wiki/renpy/doc/coo ... een_Effect

You can show a splash screen using this.

_________________
ImageImage


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sun May 06, 2012 12:17 pm 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
SundownKid wrote:
http://www.renpy.org/doc/html/rooms.html

This is the most up-to-date gallery explanation.

viewtopic.php?f=26&t=6999

This shows how to make a cutscene unskippable (I think)

http://www.renpy.org/wiki/renpy/doc/coo ... een_Effect

You can show a splash screen using this.


Thank You.
But about unskippable video ( cutscene ) is not work :(
When play video - I can click to skip that o_O
Please Help Me & Thank.


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Mon May 07, 2012 11:38 pm 
Veteran
User avatar

Joined: Thu Jul 07, 2011 9:33 am
Posts: 297
Projects: BloomingBlossoms
vocaloidimai wrote:
When play video - I can click to skip that o_O


You can use Ren'Py pause with hard click, but you have to know how long the video is ^.^;
Use it like this (example given has a two-minute video [120 seconds]):
Code:
    $ renpy.pause(120, hard=True)
    show my_video

_________________
Sorry for my bad english ^_^''
Image My VN Website~


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Tue May 08, 2012 1:46 am 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
tuna_sushi wrote:
vocaloidimai wrote:
When play video - I can click to skip that o_O


You can use Ren'Py pause with hard click, but you have to know how long the video is ^.^;
Use it like this (example given has a two-minute video [120 seconds]):
Code:
    $ renpy.pause(120, hard=True)
    show my_video


Thank You Very Much
Is work to me :D
A - Can you help me to change Original color text ?
Original color text on this game is White,right ?
I want to change that color Blue to color Original for all words i write ^^!
Please help me this ^^!


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Thu May 10, 2012 11:01 am 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
Anyone help me ?
How to change all color to text with other color ?
Original color text on this game is White,right ?
I want to change color White ~> Blue for all words i write
Not use {color=xxxxx}words{/color} :(
Please & Thank.


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Thu May 10, 2012 11:43 am 
Miko-Class Veteran
User avatar

Joined: Fri Dec 11, 2009 5:25 pm
Posts: 935
You need to change style for text color
Code:
init:
    $ style.default.color = "#0ff"

Some usefull links:
http://www.december.com/html/spec/colorhex.html
http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=14885&p=193961&hilit=tutorial#p193961


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sat May 12, 2012 12:55 pm 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
Alex wrote:
You need to change style for text color
Code:
init:
    $ style.default.color = "#0ff"

Some usefull links:
http://www.december.com/html/spec/colorhex.html
http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=14885&p=193961&hilit=tutorial#p193961


Thank You Very Much ^^
Is work ^^
Can you help me how to move image like this Video on Ren'py ?

http://www.youtube.com/watch?v=zBGF9jk_rs4

Just auto motion when i play game
Is mean....
When i click to read - The picture move like this Video ^^!
Thanks.


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sat May 12, 2012 4:13 pm 
Miko-Class Veteran
User avatar

Joined: Fri Dec 11, 2009 5:25 pm
Posts: 935
You should use ATL
http://www.renpy.org/doc/html/atl.html
http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=14823
Code:
transform bottom_to_top:
    xalign 0.5 yalign 1.0      # starts at bottom side of image
    linear 3.0 yalign 0.7      # it takes 3 seconds to move image a 30% of its height up (play with this numbers to get desired effect)

label start:
    show my_img_1 at bottom_to_top    # will show image using predefined transform (the image y-size must be bigger than screen height)
    "Text..."
    "...some more..."
    show my_img_2 at bottom_to_top
    "...and more..."
    "...text"


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sun May 13, 2012 6:04 am 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
Alex wrote:
You should use ATL
http://www.renpy.org/doc/html/atl.html
http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=14823
Code:
transform bottom_to_top:
    xalign 0.5 yalign 1.0      # starts at bottom side of image
    linear 3.0 yalign 0.7      # it takes 3 seconds to move image a 30% of its height up (play with this numbers to get desired effect)

label start:
    show my_img_1 at bottom_to_top    # will show image using predefined transform (the image y-size must be bigger than screen height)
    "Text..."
    "...some more..."
    show my_img_2 at bottom_to_top
    "...and more..."
    "...text"


Thank You Very Much ^^
A - How to change move image?
Like mean - i want to change bottom_to_right or to left or to down ^^!
Can you help me - Again ^^!
When i open the game.
There will show my Logo (or video or picture .gif ) & can't click to continues ^^!
Thanks.


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sun May 13, 2012 11:22 am 
Miko-Class Veteran
User avatar

Joined: Fri Dec 11, 2009 5:25 pm
Posts: 935
Well, you could make as many transforms as you want. The transform works like 1) sets the start state for an image (position, size, transparency, etc.) 2) sets the time the changing will take 3) sets what should be changed - position, size, transparency. Then you can apply this transform to any displayable. Just read some more about ATL.
Code:
transform to_the_left:
    xalign 1.0
    linear 2.0 xalign 0.0

transform from_top_to_bottom:
    yalign 0.0
    linear 4.0 yalign 1.0


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Thu May 17, 2012 2:12 am 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
Alex wrote:
Well, you could make as many transforms as you want. The transform works like 1) sets the start state for an image (position, size, transparency, etc.) 2) sets the time the changing will take 3) sets what should be changed - position, size, transparency. Then you can apply this transform to any displayable. Just read some more about ATL.
Code:
transform to_the_left:
    xalign 1.0
    linear 2.0 xalign 0.0

transform from_top_to_bottom:
    yalign 0.0
    linear 4.0 yalign 1.0


Thank You - I work to me ^^
A - Can you help me? - Again ^^!
When i open the game.
There will show my Logo (or video or picture .gif ) & can't click to continues ^^!
Thanks.


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Thu May 17, 2012 3:08 am 
Miko-Class Veteran
User avatar

Joined: Fri Dec 11, 2009 5:25 pm
Posts: 935
You can make a splashscreen with your logo (do not forget <return> at the end of label)
http://www.renpy.org/wiki/renpy/doc/cookbook/Splashscreen_Effect
And didn't it helped you? - http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=15119&p=199112#p197449


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sat May 19, 2012 2:07 am 
Newbie

Joined: Sat May 05, 2012 10:38 am
Posts: 18
Alex wrote:
You can make a splashscreen with your logo (do not forget <return> at the end of label)
http://www.renpy.org/wiki/renpy/doc/cookbook/Splashscreen_Effect
And didn't it helped you? - http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=15119&p=199112#p197449


Thanks You ^^
Is work.
A - Can you help me?
How to change Style Mouse ( Cursor ) on game ?
& change Style Menu ?


Top
 Profile Send private message  
 
 Post subject: Re: Please Help Me :((
PostPosted: Sat May 19, 2012 2:48 am 
Miko-Class Veteran
User avatar

Joined: Fri Dec 11, 2009 5:25 pm
Posts: 935
To change the mouse cursor you need to play with <config.mouse>.
Code:
init:
    $ config.mouse = { "default" : [ ("cur1.png", 5, 7), ("cur2.png", 5, 7) ]  }
http://www.renpy.org/doc/html/config.html#var-config.mouse

And there you can read a great tutorial on how to customize menus - http://lemmasoft.renai.us/forums/viewforum.php?f=51


Top
 Profile Send private message  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 28 posts ]  Go to page 1, 2  Next

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