Search found 26 matches

by vocaloidimai
Thu Nov 13, 2014 11:55 am
Forum: Ren'Py Questions and Announcements
Topic: Help! - Problem When Mouse Right-Click. [Solve]
Replies: 3
Views: 801

Re: Help! - Problem When Mouse Right-Click.

PyTom wrote:This is weird. A save file is somehow corrupt. You can either delete it from both places, or change the config.save_directory variable in options.rpy to use a new save directory.
Etou....what exactly name files i need to Delete ^^! ?
by vocaloidimai
Thu Nov 13, 2014 6:57 am
Forum: Ren'Py Questions and Announcements
Topic: Help! - Problem When Mouse Right-Click. [Solve]
Replies: 3
Views: 801

Help! - Problem When Mouse Right-Click. [Solve]

When i mouse Right-Click i have this problem T-T And I can't save too Please help me. I'm sorry, but an uncaught exception occurred. While running game code: AttributeError: 'NoneType' object has no attribute 'get' -- Full Traceback ------------------------------------------------------------ Full t...
by vocaloidimai
Thu Nov 13, 2014 6:28 am
Forum: Ren'Py Questions and Announcements
Topic: New to Ren'Py, Issues with NVL and Slowtext?
Replies: 3
Views: 1215

Re: New to Ren'Py, Issues with NVL and Slowtext?

You can try with code It's will be show slowtext in this character If you want all character slowtext too, you add what_slow_cps = your number init: $ imai = Character('Imai', color="Your color", what_slow_cps = 40) label start: imai "Hi - I'm Imai" Hope Help :D
by vocaloidimai
Thu Nov 13, 2014 5:41 am
Forum: Ren'Py Questions and Announcements
Topic: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Text.
Replies: 9
Views: 1703

Re: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Te

Did you customize the name box? If yes, please post the code. If no, then maybe customizing it with "background = Frame(...)" will help. Yes, it's a code I customize name box size 312x36 pixel ######################################### ## These settings let you customize the window contain...
by vocaloidimai
Thu Nov 13, 2014 4:06 am
Forum: Ren'Py Questions and Announcements
Topic: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Text.
Replies: 9
Views: 1703

Re: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Te

If that is exactly how you tried it, you missed a comma. The error message came because you either used a true tab instead of a "pseudo" tab (4 spaces) or Python reads the "line feed" after the missing comma as a tab. Here is a tutorial for customizing the text box: http://renpy...
by vocaloidimai
Wed Nov 12, 2014 12:53 am
Forum: Ren'Py Questions and Announcements
Topic: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Text.
Replies: 9
Views: 1703

Re: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Te

For the name to be in a separate window, you need: init: $ e = Character("Eileen", show_two_window=True) If you want to display text letter by letter, read this documentation: http://www.renpy.org/wiki/renpy/doc/cookbook/Default_text_speed_Setting I'm not sure what else you want, but you ...
by vocaloidimai
Mon Nov 10, 2014 11:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Text.
Replies: 9
Views: 1703

Re: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Te

You can't use gifs, but you can define images to be animations. image myanimation: "frame1.png" pause 0.2 "frame2.png" pause 0.2 "frame3.png" pause 0.2 "frame4.png" pause 0.2 "frame5.png" pause 0.2 repeat If you show it with show myanimation it will...
by vocaloidimai
Mon Nov 10, 2014 12:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Text.
Replies: 9
Views: 1703

Help!!-Theme, Auto-Advence & Symbol C.T.Continued All Text.

Can someone help me how can i make a theme in game like this ? http://i976.photobucket.com/albums/ae249/imai02/Visual%20Novel%20Help/ThemeHelp.png About number 3: - I search it but Renpy can't use file GIF, right? - So that will be Animation Image? And Help me how i can make Auto-Advance All Text &...
by vocaloidimai
Wed Aug 01, 2012 3:52 am
Forum: Ren'Py Questions and Announcements
Topic: Please Help Me Create Puzzle In Ren'py Novel :( (Solved)
Replies: 6
Views: 6391

Re: Please Help Me Create Puzzle In Ren'py Novel :(

"To go back, just press enter without typing anything" label part1: $ response1 = renpy.input("How many green ones are there?") label part2: $ response2 = renpy.input("How many red ones are there?") if response2.strip() = "": jump part1 if response1.strip() =...
by vocaloidimai
Tue Jul 31, 2012 9:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Please Help Me Create Puzzle In Ren'py Novel :( (Solved)
Replies: 6
Views: 6391

Re: Please Help Me Create Puzzle In Ren'py Novel :(

Yes, I meant having the player write the answer like the name entry in Ren'py's demo. It sounds like you're in over your head though, you may want to get used to making a simple game before you dive in to such complex customizations. To do these things you'll either need a programmer or be willing ...
by vocaloidimai
Tue Jul 31, 2012 1:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Please Help Me Create Puzzle In Ren'py Novel :( (Solved)
Replies: 6
Views: 6391

Re: Please Help Me Create Puzzle In Ren'py Novel :(

Well, here's a tutorial to do a puzzle with square pieces. With a little creativity it could be used like the second example. http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=16151 I bet you could also use this one http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=16151 to help you...
by vocaloidimai
Tue Jun 05, 2012 9:03 am
Forum: Ren'Py Questions and Announcements
Topic: Please Help Me :(( (Solved)
Replies: 27
Views: 3720

Re: Please Help Me :((

2) Open "screens.rpy" and find "screen main_menu:", then change the position of main menu frame # The main menu buttons. frame: style_group "mm" xalign .5 yalign .8 1) Mmm, it is a bit complicated. Here is the code for music room - http://www.renpy.org/doc/html/rooms.h...
by vocaloidimai
Sun Jun 03, 2012 9:16 am
Forum: Ren'Py Questions and Announcements
Topic: Please Help Me :(( (Solved)
Replies: 27
Views: 3720

Re: Please Help Me :((

You need to add a margin for file picker frame init -2 python: layout.scrolling_load_save() style.file_picker_frame = Style(style.menu_frame) style.file_picker_frame.right_margin = 400 Thank You Very Much ^^ Can you help me ? How to custom theme Music Room ? Custom menu Music Room like this Video ^...
by vocaloidimai
Sat May 26, 2012 11:49 am
Forum: Ren'Py Questions and Announcements
Topic: Please Help Me :(( (Solved)
Replies: 27
Views: 3720

Re: Please Help Me :((

Please Help Me ? :(