Search found 356 matches

by pwisaguacate
Sat Jun 08, 2013 11:49 am
Forum: Ren'Py Questions and Announcements
Topic: How to add Song Information to "Music Room." [Solved]
Replies: 10
Views: 873

Re: How to add Song Information to "Music Room." [Solved]

You are missing a left bracket and a comma around mr.Play(): imagebutton: idle "gui/Track1.png" hover "gui/Track2.png" action [mr.Play("music/Ajisai no Ha.mp3"), Show("music_info", chapter_text=u'This song is called "Ajisai no Ha", written by Yukari Hashimoto.')] # ^ ^
by pwisaguacate
Sat Jun 08, 2013 11:08 am
Forum: Ren'Py Questions and Announcements
Topic: Help defining/altering code (SOLVED)
Replies: 9
Views: 870

Re: Help defining/altering code

Init blocks run once at the beginning of the game. What you're looking for is a screen like this: screen month_display: if counter_points == 0: add "maugust.png" at monthspace [...] You should write the other if statements like this: elif 1 <= counter_points <= 4: add "mseptember.png" at monthspace ...
by pwisaguacate
Thu Jun 06, 2013 1:44 am
Forum: General Discussion
Topic: Get that thing off your chest... Now...
Replies: 5264
Views: 448658

Re: Get that thing off your chest... Now...

Link 1: http://www.rockpapershotgun.com/2013/05/30/wot-i-think-save-the-date/ Link 2: http://www.idlethumbs.net/forums/topic/8649-save-the-date/ Link 3: http://forums.tigsource.com/index.php?action=printpage;topic=33753.0 I am PISSED "calmed down" and am now in a fired up mode. I was also tempted to...
by pwisaguacate
Wed Jun 05, 2013 8:47 pm
Forum: Ren'Py Questions and Announcements
Topic: How to prevent style properties from effecting the UI?
Replies: 2
Views: 450

Re: How to prevent style properties from effecting the UI?

Sure - since outlines is a list, you can add more tuples to represent more outlines. The outlines are sorted from back to front. what_outlines=[(6, "#FFFFFF", 0, 0),(3, "#DF3BA7", 0, 0)] * http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=21025 . An example of setting all dialogue text blue with...
by pwisaguacate
Wed Jun 05, 2013 9:31 am
Forum: Ren'Py Questions and Announcements
Topic: How to export VN from Ren'Py? o_o
Replies: 8
Views: 2479

Re: How to export VN from Ren'Py? o_o

You should probably just download the complete .zip from the first link I provided. Extract it anywhere and then use that copy of Ren'Py.

On a note, 6.14.1 is an older release so run 6.15.x for your next projects, and we'll be able to help any issues better.
by pwisaguacate
Wed Jun 05, 2013 9:26 am
Forum: Ren'Py Questions and Announcements
Topic: Showing image with scale [SOLVED]
Replies: 3
Views: 507

Re: Showing image with scale

This will make an image appear from zoom 0.0 to zoom 1.0 in 2.0 seconds:

Code: Select all

    show image_test:
        xpos .25 ypos .25 # Set to whatever you want
        xanchor 0.5 yanchor 0.5 # From center
        zoom 0.0
        linear 2.0 zoom 1.0
by pwisaguacate
Wed Jun 05, 2013 12:38 am
Forum: Ren'Py Questions and Announcements
Topic: Showing an image when an option is selected?(Solved)
Replies: 11
Views: 1467

Re: Showing an image when an option is selected?

Are you sure you have all the images set up correctly?
by pwisaguacate
Tue Jun 04, 2013 10:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing an image when an option is selected?(Solved)
Replies: 11
Views: 1467

Re: Showing an image when an option is selected?

Variables are initialized by putting them in an init block, which can be placed almost anywhere. (Whether the variable is used in labels or screens, it works the same way.)

Code: Select all

init:
    $ songinfo = 0
by pwisaguacate
Tue Jun 04, 2013 9:02 pm
Forum: Creator Discussion
Topic: Rock Scissor Paper - How to make more interesting
Replies: 8
Views: 3054

Re: Rock Scissor Paper - How to make more interesting

Take it to the extreme 25 RPS 462.jpg why is there no bird? and i don't understand the system. does rock beat cockroach? cockroach beat nuke? paper beat dynamite? sponge beat thermonuclear device? o_O? https://www.youtube.com/watch?v=G_k-ILAM0uM You will understand it more easily when you play "RPS...
by pwisaguacate
Mon Jun 03, 2013 11:12 pm
Forum: Other Story-based Games
Topic: Save the Date
Replies: 8
Views: 2039

Re: Save the Date

I want my 150+ tormenting days of life back.

EDIT: So then I finally became a haxor and beat the game. Not to mention reaping my well-deserved rewards in bed.
by pwisaguacate
Mon Jun 03, 2013 8:32 pm
Forum: Ren'Py Questions and Announcements
Topic: How to export VN from Ren'Py? o_o
Replies: 8
Views: 2479

Re: How to export VN from Ren'Py? o_o

The file named "Ren'Py Launcher" is missing from the ~/renpy.app/Contents/MacOS/ folder. You might have to redownload the .zip from http://www.renpy.org/release/6.14 and use that. To potentially save you some time, I attached the folder's content for you: renpy.app.Contents.MacOS.zip If that doesn't...
by pwisaguacate
Mon Jun 03, 2013 1:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py not show when you're missing a file
Replies: 5
Views: 640

Re: Ren'Py not show when you're missing a file

Unfortunately that does cancel out all voice statements.
by pwisaguacate
Mon Jun 03, 2013 3:50 am
Forum: Anime, Games, and Japan
Topic: Mega Man Legends 3 an Idea
Replies: 8
Views: 1911

Re: Mega Man Legends 3 an Idea

Off topic, but to share a Gelbooru link, look at the URL and fix it. 403 Forbiddened (maybe): http://cdn1.gelbooru.com//samples/317/sample_5cf1f1bd35165293fe245cd50eba7bb8daccb423.png?320773 Working link (SFW): http://cdn1.gelbooru.com/samples/317/sample_5cf1f1bd35165293fe245cd50eba7bb8daccb423.png ...
by pwisaguacate
Mon Jun 03, 2013 3:30 am
Forum: Ren'Py Questions and Announcements
Topic: Animated Main Menu?
Replies: 7
Views: 2628

Re: Animated Main Menu?

I mean is...if I'm goin to use the imagemap am I able to make an animated main menu? is animating only for screens? What you're referring to about Always Remember Me is the background. Yes, you can make an animated background with imagemap menu buttons. Use transparency so the imagemap doesn't take...