Search found 15 matches

by xCephalopod
Sat Nov 08, 2014 8:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Menu options overlay textbox
Replies: 4
Views: 707

Re: Menu options overlay textbox

After I added the "menu:" script inside the script file, and then launched the game, it appeared in the text box. I didn't change any code for it to do that. o: I moved the script you gave me to the screens file and out of the options file, and it still shows up at the top left corner.
by xCephalopod
Sat Nov 08, 2014 7:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Side sprite won't change with ShowingSwitch [Solved]
Replies: 4
Views: 679

Re: Side sprite won't change with ShowingSwitch

Thank you! You helped me figure it out! c:
by xCephalopod
Sat Nov 08, 2014 1:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Menu options overlay textbox
Replies: 4
Views: 707

Re: Menu options overlay textbox

I added that to the options menu.

The menu screen ends up in the top left corner, and not in the middle.
by xCephalopod
Sat Nov 08, 2014 1:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Side sprite won't change with ShowingSwitch [Solved]
Replies: 4
Views: 679

Re: Side sprite won't change with ShowingSwitch

I added the comma, but now no picture shows up before I put in the code to have "evita 2" show up.

When I do "show evita 2 hidden" and then "show evita 2", I get an error.
by xCephalopod
Fri Nov 07, 2014 4:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Side sprite won't change with ShowingSwitch [Solved]
Replies: 4
Views: 679

Side sprite won't change with ShowingSwitch [Solved]

I keep getting an error code when trying to change my side sprite to a different mood. Picture of the error below. #Characters image Evita 1 = "evita 1.png" image Evita 2 = "evita surprised.png" image Evita 3 = "evita mad.png" image Evita 4 = "evita sad.png" i...
by xCephalopod
Fri Nov 07, 2014 4:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Menu options overlay textbox
Replies: 4
Views: 707

Menu options overlay textbox

How do I fix it so that the menu options are over the bg like normal?
by xCephalopod
Tue Nov 04, 2014 4:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Pictures not showing up?
Replies: 9
Views: 1123

Re: Pictures not showing up?

I figured it out! :D Thank you all for the help!
by xCephalopod
Tue Nov 04, 2014 4:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Pictures not showing up?
Replies: 9
Views: 1123

Re: Pictures not showing up?

Okay. I'll have to resave her. :p Good thing I kept the non-picture document. c: Thanks!

I want her in front of the textbox on the side. o:
by xCephalopod
Mon Nov 03, 2014 3:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Pictures not showing up?
Replies: 9
Views: 1123

Re: Pictures not showing up?

Okay! So, I followed your code, and she shows up now! But, she is showing up in the middle instead of the side. :c Also, she's not transparent anymore, but I think that's because I saved her under .jpg and not .png? I'm not sure. init: $ offScreen = Position(xpos=1, xanchor='left', ypos=0) show bake...
by xCephalopod
Sat Nov 01, 2014 12:49 am
Forum: Ren'Py Questions and Announcements
Topic: Pictures not showing up?
Replies: 9
Views: 1123

Re: Pictures not showing up?

I mean, this is the first time I've ever tried doing anything like this, so I don't really know how I'd know code. I've kind of have the understanding of a lot of it from tutorials or the forums here, but I'm just having some trouble with a couple things. :c I appreciate the help, though. Thank you....
by xCephalopod
Fri Oct 31, 2014 10:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Pictures not showing up?
Replies: 9
Views: 1123

Re: Pictures not showing up?

I was looking at a different thread, and that's the code it said to put in for it to show on the side. :c I don't know anything about coding, and I just followed the thing on the other thread.

Code: Select all

init:
    $ offScreen = Position(xpos=1, xanchor='left', ypos=0)
...
show jinko 01 at offScreen
??
by xCephalopod
Fri Oct 31, 2014 9:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Pictures not showing up?
Replies: 9
Views: 1123

Pictures not showing up?

I followed the script instructions to show my protag sprite on the side of the text box, but she's not showing up. If I put her at left, a grey box takes over the bg, and says the image name at the top. I don't know what I'm doing wrong? init: $ offScreen = Position(xpos=1, xanchor='left', ypos=0) s...
by xCephalopod
Tue Oct 28, 2014 10:13 pm
Forum: Ren'Py Questions and Announcements
Topic: When a background is shown, the grid is behind it?
Replies: 5
Views: 693

Re: When a background is shown, the grid is behind it?

The transparency will still show- what it is showing you is that you do not have the images the correct size. To fix this, either change the screen size in options, or resize your images online. Oh! I went into the "options" part, and I guess I overlooked the code where I could change the...
by xCephalopod
Tue Oct 28, 2014 10:11 pm
Forum: Ren'Py Questions and Announcements
Topic: When a background is shown, the grid is behind it?
Replies: 5
Views: 693

Re: When a background is shown, the grid is behind it?

The image is 800x600. I've tried resizing it to make it larger, but it doesn't affect the way it shows up, and still comes with the transparency in the back.
by xCephalopod
Tue Oct 28, 2014 8:39 pm
Forum: Ren'Py Questions and Announcements
Topic: When a background is shown, the grid is behind it?
Replies: 5
Views: 693

When a background is shown, the grid is behind it?

:I When I do the "show suchandsuch bg", the background comes up, but it doesn't stretch to the dimesions of the window, and show's the grey scale grid/transparency behind it/to the sides of it. Is it supposed to be like that, or are my bg images not correct? Will it show up normal when som...