Search found 46 matches

by Link2link8
Fri Dec 21, 2012 2:21 pm
Forum: Ren'Py Questions and Announcements
Topic: The "Name" Font Issue & to center name text
Replies: 2
Views: 509

Re: The "Name" Font Issue & to center name text

For the first, use "who_outlines=[(2,"#000000",0,0)]" instead of "outlines=[(2, "#000000")]". For the second, try with this: In options.rpy add: init -1 python hide: style.say_label.text_align = 0.5 style.say_label.xalign = 0.5 For the second one it worked pe...
by Link2link8
Tue Dec 18, 2012 1:37 pm
Forum: Ren'Py Questions and Announcements
Topic: The "Name" Font Issue & to center name text
Replies: 2
Views: 509

The "Name" Font Issue & to center name text

This sounds weird but I was trying to outline the name like you would with the text, however I end up making it look like: http://i.imgur.com/iGjWN.jpg Heres the code for defining the name: define m2 = Character("Name", outlines=[(2, "#000000")], what_outlines=[(2,"#000000&q...
by Link2link8
Thu Dec 13, 2012 4:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing or hiding menu options Issue [SOLVED]
Replies: 5
Views: 764

Re: Showing or hiding menu options Issue

Levrex wrote:You set variables in the same label you jump to. So, when you make a choice and then jump back to the menu, they get overwritten to False again. Set them before the label with the menu.
It's working now, thanks again Levrex for pointing out my obvious mistake once again!
by Link2link8
Thu Dec 13, 2012 1:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing or hiding menu options Issue [SOLVED]
Replies: 5
Views: 764

Re: Showing or hiding menu options Issue

Okay, the code is fixed, however the showing or hiding menu options doesn't seem to work, does anyone know why it isn't working?
by Link2link8
Thu Dec 13, 2012 10:40 am
Forum: Ren'Py Questions and Announcements
Topic: Showing or hiding menu options Issue [SOLVED]
Replies: 5
Views: 764

Re: Showing or hiding menu options Issue

Levrex wrote:One equal sign on line 177 is missing.
Use code tag next time.
Oh blimey, such an obvious mistake, thanks for pointing that out.

Also forgot to add the code tag, once again thanks for pointing it out, it's been ages since I was last on.
by Link2link8
Thu Dec 13, 2012 9:07 am
Forum: Ren'Py Questions and Announcements
Topic: Showing or hiding menu options Issue [SOLVED]
Replies: 5
Views: 764

Showing or hiding menu options Issue [SOLVED]

Hell, I've been practicing getting back into renpy recently and I came to a problem whilst I was looking through and practicing "Remembering User Choices", specifically Showing or hiding menu options. This is from line 165 downwards to line 207. label main2: $ went_toilet = False $ went_sn...
by Link2link8
Sat Jan 08, 2011 2:00 pm
Forum: Creator Discussion
Topic: Thoughts on visual novels moving to widescreen
Replies: 17
Views: 6197

Thoughts on visual novels moving to widescreen

Always occurred to me, but I was wondering what are peoples thought's on widescreen visual novels. for me I see it as a reason to move to HD gaming, since visual novels that do use widescreen use HD now, but the original boxed sized ones felt more "VN" like if that makes any sense. just cu...
by Link2link8
Wed Jan 05, 2011 10:25 am
Forum: Ren'Py Questions and Announcements
Topic: Name with avatar issue
Replies: 9
Views: 1268

Re: Name with avatar issue

sorry are you referring to this code, because I don't know where that is: you just add it in somewhere in the parentheses like so: $ I = Character("Iwasawa", color="#91D1FF", what_slow_cps=70, window_left_padding=180, who_xpos = -50, show_side_image=Image("00.png", xal...
by Link2link8
Wed Jan 05, 2011 5:24 am
Forum: Ren'Py Questions and Announcements
Topic: Name with avatar issue
Replies: 9
Views: 1268

Re: Name with avatar issue

I'm not sure what the issue is. style.say_label.xpos = -50 I used this code to change the placement of the name which sets it default. $ I = Character("Iwasawa", color="#91D1FF", what_slow_cps=70, window_left_padding=180, show_side_image=Image("00.png", xalign=0.0, yal...
by Link2link8
Tue Jan 04, 2011 5:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Name with avatar issue
Replies: 9
Views: 1268

Re: Name with avatar issue

So... no one?
by Link2link8
Sun Jan 02, 2011 1:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Name with avatar issue
Replies: 9
Views: 1268

Re: Name with avatar issue

Wouldn't it be better if you edit the box itself to include the name inside? About to explain that below. If you hover your mouse over something you want to edit and hit SHIFT+I at the same time, the Style Inspector will come up. The style for the name of who talks is: "say_label". Next, ...
by Link2link8
Sun Jan 02, 2011 9:10 am
Forum: Ren'Py Questions and Announcements
Topic: Name with avatar issue
Replies: 9
Views: 1268

Name with avatar issue

As the title says I'm having some issue with the name, I was trying to implement an avatar after moving it and all sorts which is all right but then this happens: http://img706.imageshack.us/img706/2212/nameissue.jpg I tried show_two_window but that messes up the frame itself, does anyone know how t...
by Link2link8
Thu Dec 23, 2010 12:55 pm
Forum: Ideas
Topic: Angel Beats! The Third View Re-Build Progress/Status
Replies: 1
Views: 2174

Angel Beats! The Third View Re-Build Progress/Status

http://abvisual.files.wordpress.com/2010/12/main-logo.jpg Summary from my site: A third view is based around a character called Inochi Ushina who isn’t in the SSS, the character plays the role as someone who sees the Angel Beats! story from a third person perspective. Unlike everyone else he isn’t ...
by Link2link8
Wed Dec 08, 2010 6:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Video Playback issues
Replies: 4
Views: 757

Video Playback issues

So as the title says I'm having some issues when playing a video on renpy. first off the video plays when on renpy, the issue is that the video itself would jerk back and forth whilst playing. If it helps the game resolution I'm using is 1067 x 600, the size of the video is 1056 x 592 the video is a...
by Link2link8
Sat Aug 21, 2010 2:01 am
Forum: Ren'Py Questions and Announcements
Topic: Scroll Button Settings to Right Click
Replies: 2
Views: 538

Re: Scroll Button Settings to Right Click

Mihara wrote:Take a look at the Keymap section of the reference manual and tweak the keymap to taste.
Ah didn't see that thanks! read it and it worked!