Search found 108 matches
- Tue Oct 13, 2020 5:03 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Adding a CTC animation to custom name
- Replies: 4
- Views: 350
Re: Adding a CTC animation to custom name
Welp, now the ctc animation is gone again. I literally didn't change the code at all but it just disappeared??? Only on the mc character, too.
- Tue Oct 13, 2020 1:27 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Adding a CTC animation to custom name
- Replies: 4
- Views: 350
Re: Adding a CTC animation to custom name
Characters should be defined with define statement. Also you may want to use a different variable for the character's name to avoid confusion with the character object. Try something like: define mc = Character("[mc_name]", ctc="ctc_animation") label start: $ mc_name = renpy.input("Your Name", leng...
- Tue Oct 13, 2020 6:32 am
- Forum: Ren'Py Questions and Announcements
- Topic: Adding a CTC animation to custom name
- Replies: 4
- Views: 350
Re: Adding a CTC animation to custom name
Still can't find a solution to this.
This does nothing :/
Code: Select all
$ mc = Character("[mc]", ctc="ctc_animation", ctc_position="fixed")
- Mon Oct 12, 2020 9:29 am
- Forum: Ren'Py Questions and Announcements
- Topic: Save/load slot hover color issue
- Replies: 2
- Views: 292
Re: Save/load slot hover color issue
If I'm not wrong, that purple line comes from the slot_hover_background.png image file located in the project folder, game/gui/button , that's generated when you create a project with that gui color. To change it you would just have to edit that image with a program like Gimp or Photoshop. omg, tha...
- Mon Oct 12, 2020 8:55 am
- Forum: Ren'Py Questions and Announcements
- Topic: Save/load slot hover color issue
- Replies: 2
- Views: 292
Save/load slot hover color issue
I wasn't sure how to accurately say this in the title so sorry if it's messy lol. Basically I've changed all colors and images in my gui to match each other but for some reason I can't find a way to change this one tiny thing in the save/load screen. Screen Shot 2020-10-12 at 15.52.16.png I have tha...
- Mon Oct 12, 2020 8:19 am
- Forum: Ren'Py Questions and Announcements
- Topic: Adding a CTC animation to custom name
- Replies: 4
- Views: 350
Adding a CTC animation to custom name
I'm wondering how to add a CTC animation to the dialogue of the player character. I can't find an easy way of doing this :( Here's my code: $ mc = renpy.input("Your Name", length=8) $ mc = mc.strip() if mc == "": $ mc="MC" init -1: $ d = Character("Damon", ctc="ctc_animation", ctc_position="fixed") ...
- Sun Aug 09, 2020 4:21 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Narrator textbox changing position?
- Replies: 7
- Views: 748
Re: Narrator textbox changing position?
How are you changing the background you're using? By `window_background` in the character definition? define e = Character("Eileen", window_background="e_bg.png") define narrator = Character(None, window_background="n_bg.png") Sorry for late reply! This is how I do it: $ n = Character(None, window_...
- Tue Aug 04, 2020 5:06 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Narrator textbox changing position?
- Replies: 7
- Views: 748
Re: Narrator textbox changing position?
I'm still having this issue. Tried copying an entire .gui file from another game of mine which doesn't have this issue and also triple-checked to make sure the two namebox files are the exact same size. I don't understand what's wrong?!
- Sun Jul 12, 2020 5:45 am
- Forum: Ren'Py Questions and Announcements
- Topic: Narrator textbox changing position?
- Replies: 7
- Views: 748
Re: Narrator textbox changing position?
Those options are fixed on the gui.rpy file, look for the "dialogue" X and Y vars and you need to "play" with them untill you can find the placement you want I don#t see anything in the gui.rpy that indicates the position of the textbox image, only the text in said textbox. I also haven#t changed a...
- Fri Jul 03, 2020 12:24 am
- Forum: Ren'Py Questions and Announcements
- Topic: Narrator textbox changing position?
- Replies: 7
- Views: 748
Re: Narrator textbox changing position?
Still haven#t figured this out 

- Tue Jun 30, 2020 4:01 am
- Forum: Ren'Py Questions and Announcements
- Topic: Narrator textbox changing position?
- Replies: 7
- Views: 748
Narrator textbox changing position?
I have a little issue with my narrator-specific textbox. For every other character I use a textbox with a separate place for the name, and for the narrator I have a unique one. Capture.PNG The files are the exact same size, the only thing I changed was removing the namebox from the top. For some rea...
- Mon Mar 02, 2020 2:27 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Centering character's name in namebox?
- Replies: 3
- Views: 288
Re: Centering character's name in namebox?
here is example how to change the color for the name define a = Character("Maejima", who_color="#c8ffc8") and for to align the name with the namebox and align the namebox and look for define gui.name_xalign = define gui.textbox_yalign = I successfully fixed the centering problem, but the color one ...
- Mon Mar 02, 2020 2:23 pm
- Forum: Ren'Py Questions and Announcements
- Topic: "Possible infinite loop" error on choice menu?
- Replies: 2
- Views: 225
Re: "Possible infinite loop" error on choice menu?
The if statement is likely causing the problem. But do you really need it? If you do something like this in all three labels: label explore_school_grounds: "I'll explore the school for a bit." jump choice1 And add the jump to the next scene right after the menu: menu choice1: set menuset "Where sho...
- Mon Mar 02, 2020 9:42 am
- Forum: Ren'Py Questions and Announcements
- Topic: "Possible infinite loop" error on choice menu?
- Replies: 2
- Views: 225
"Possible infinite loop" error on choice menu?
Hey all! I programmed the first choices into the game and wanted to make the menu options disappear once you've been through that option. Everything works splendid up until all options have been through and the game should jump to the next scene. The game lags out (not responding) and then this show...
- Sun Mar 01, 2020 9:25 am
- Forum: Ren'Py Questions and Announcements
- Topic: Centering character's name in namebox?
- Replies: 3
- Views: 288
Centering character's name in namebox?
I've been playing around with this little thing for the better part of an hour and still can't figure out a simple way to do this no matter how many threads I go to. :/ All I want is for the character's name to center in my namebox instead of being at the very left side of it. help.PNG Any easy tric...