Please Help Me :(( (Solved)

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Message
Author
User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Please Help Me :(( (Solved)

#1 Post by vocaloidimai »

- 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.

SundownKid
Lemma-Class Veteran
Posts: 2299
Joined: Mon Feb 06, 2012 9:50 pm
Completed: Icebound, Selenon Rising Ep. 1-2
Projects: Selenon Rising Ep. 3-4
Organization: Fastermind Games
Deviantart: sundownkid
Location: NYC
Contact:

Re: Please Help Me :((

#2 Post by SundownKid »

http://www.renpy.org/doc/html/rooms.html

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

http://lemmasoft.renai.us/forums/viewto ... =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.

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#3 Post by vocaloidimai »

SundownKid wrote:http://www.renpy.org/doc/html/rooms.html

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

http://lemmasoft.renai.us/forums/viewto ... =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.

tuna_sushi
Veteran
Posts: 299
Joined: Thu Jul 07, 2011 9:33 am
Projects: BloomingBlossoms
Contact:

Re: Please Help Me :((

#4 Post by tuna_sushi »

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: Select all

    $ renpy.pause(120, hard=True)
    show my_video

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#5 Post by vocaloidimai »

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: Select all

    $ 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 ^^!

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#6 Post by vocaloidimai »

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.

User avatar
Alex
Lemma-Class Veteran
Posts: 3094
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Please Help Me :((

#7 Post by Alex »

You need to change style for text color

Code: Select all

init:
    $ style.default.color = "#0ff"
Some usefull links:
http://www.december.com/html/spec/colorhex.html
http://lemmasoft.renai.us/forums/viewto ... al#p193961

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#8 Post by vocaloidimai »

Alex wrote:You need to change style for text color

Code: Select all

init:
    $ style.default.color = "#0ff"
Some usefull links:
http://www.december.com/html/spec/colorhex.html
http://lemmasoft.renai.us/forums/viewto ... al#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.

User avatar
Alex
Lemma-Class Veteran
Posts: 3094
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Please Help Me :((

#9 Post by Alex »

You should use ATL
http://www.renpy.org/doc/html/atl.html
http://lemmasoft.renai.us/forums/viewto ... =8&t=14823

Code: Select all

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"

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#10 Post by vocaloidimai »

Alex wrote:You should use ATL
http://www.renpy.org/doc/html/atl.html
http://lemmasoft.renai.us/forums/viewto ... =8&t=14823

Code: Select all

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.

User avatar
Alex
Lemma-Class Veteran
Posts: 3094
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Please Help Me :((

#11 Post by Alex »

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: Select all

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

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#12 Post by vocaloidimai »

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: Select all

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.

User avatar
Alex
Lemma-Class Veteran
Posts: 3094
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Please Help Me :((

#13 Post by Alex »

You can make a splashscreen with your logo (do not forget <return> at the end of label)
http://www.renpy.org/wiki/renpy/doc/coo ... een_Effect
And didn't it helped you? - http://lemmasoft.renai.us/forums/viewto ... 12#p197449

User avatar
vocaloidimai
Regular
Posts: 26
Joined: Sat May 05, 2012 10:38 am
Contact:

Re: Please Help Me :((

#14 Post by vocaloidimai »

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/coo ... een_Effect
And didn't it helped you? - http://lemmasoft.renai.us/forums/viewto ... 12#p197449
Thanks You ^^
Is work.
A - Can you help me?
How to change Style Mouse ( Cursor ) on game ?
& change Style Menu ?

User avatar
Alex
Lemma-Class Veteran
Posts: 3094
Joined: Fri Dec 11, 2009 5:25 pm
Contact:

Re: Please Help Me :((

#15 Post by Alex »

To change the mouse cursor you need to play with <config.mouse>.

Code: Select all

init:
    $ config.mouse = { "default" : [ ("cur1.png", 5, 7), ("cur2.png", 5, 7) ]  }
http://www.renpy.org/doc/html/config.ht ... nfig.mouse

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

Post Reply

Who is online

Users browsing this forum: No registered users