Search found 777 matches
- Wed Aug 28, 2019 6:56 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Character expressions not changing
- Replies: 4
- Views: 526
Re: Character expressions not changing
So in my scene, the character arrives and things seem fine/sprites are displaying properly at first. But once I reuse an expression, it doesn't appear when I use "show" in the second instances. I've tried using the "hide" feature, but when I use it after every change of expressions to hide the prev...
- Wed Aug 28, 2019 6:42 pm
- Forum: Ren'Py Questions and Announcements
- Topic: $ renpy.show and image directory
- Replies: 31
- Views: 1659
Re: $ renpy.show and image directory
Damn, just when I thought, I'm finally done with organizing my stuff... The drKlauz code seemed so promising... I took a look at the program. It seems irrelevant I guess because its for file extensions. It just basically strips off the the need for including file extensions when declaring an image.
- Wed Aug 28, 2019 6:36 pm
- Forum: Ren'Py Questions and Announcements
- Topic: $ renpy.show and image directory
- Replies: 31
- Views: 1659
Re: $ renpy.show and image directory
So, the only solution is changing the images names? Persistent only adds a or b at the end of the image name, that's why I segregated them. Each subfolder contains images named 1a, 1b, 2a, 2b, 3a, 3b... Defining the extension isn't necessary while using 'show' option, at least it never was for me. ...
- Wed Aug 28, 2019 6:14 pm
- Forum: Ren'Py Questions and Announcements
- Topic: $ renpy.show and image directory
- Replies: 31
- Views: 1659
Re: $ renpy.show and image directory
So, the only solution is changing the images names? Persistent only adds a or b at the end of the image name, that's why I segregated them. Each subfolder contains images named 1a, 1b, 2a, 2b, 3a, 3b... Defining the extension isn't necessary while using 'show' option, at least it never was for me. ...
- Wed Aug 28, 2019 5:22 pm
- Forum: Ren'Py Questions and Announcements
- Topic: $ renpy.show and image directory
- Replies: 31
- Views: 1659
Re: $ renpy.show and image directory
I ran onto a weird problem, and I have no clue how to solve this issue. Basically, when my images are put directly in 'images' folder, everything works just fine. The problem is that I decided to organize everything a little bit, because it started to get really messy and hard to follow. I created ...
- Wed Aug 28, 2019 5:15 pm
- Forum: Ren'Py Questions and Announcements
- Topic: $ renpy.show and image directory
- Replies: 31
- Views: 1659
Re: $ renpy.show and image directory
I ran onto a weird problem, and I have no clue how to solve this issue. Basically, when my images are put directly in 'images' folder, everything works just fine. The problem is that I decided to organize everything a little bit, because it started to get really messy and hard to follow. I created ...
- Tue Aug 27, 2019 9:08 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] After-credits scene
- Replies: 2
- Views: 478
Re: After-credits scene
I'm trying to make my game go to the credits first and have an after-credits scene for each of the endings with the following code: label credits: $ credits_speed = 25 scene white play music "Credits.ogg" show credits_image at Move((0.5, 1.0), (0.5, -6.6), credits_speed, xanchor=0.5, yanchor=0) wit...
- Tue Aug 27, 2019 4:04 am
- Forum: Ren'Py Questions and Announcements
- Topic: [solved]Error for something that never returned an error before
- Replies: 11
- Views: 663
Re: Error for something that never returned an error before
I'm assuming the v is a placeholder for whatever my variable would be, which is the list I showed. I'm clueless, really. Ah. I thought you're the one who declared it in some of your functions, etc. I don't know if this will help. But this might be useful regarding the "TypeError" handling of Python...
- Mon Aug 26, 2019 11:46 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [solved]Error for something that never returned an error before
- Replies: 11
- Views: 663
Re: Error for something that never returned an error before
Not sure what I did but I haven't touched this code and it was working earlier. Now it returns this error: I'm sorry, but an uncaught exception occurred. While processing the padding property of anonymous style: File "game/script.rpy", line 15, in script call screen new_template File "renpy/common/...
- Mon Aug 26, 2019 8:13 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]picking the 3 highest from the list and than set to random choice
- Replies: 5
- Views: 572
Re: picking the 3 highest from the list and than set to random choice
I have long list of variables. The values keep changing in the game. I used this type of method to do it.: videos = [v1, v2, v3, v4, v5, v6, v7, v8, v9, v10] videos_best = videos.index(max(videos)) With that way I can pick the most viewed video, but I need the 3 most viewed video and then I would l...
- Mon Aug 26, 2019 5:39 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How can I make the quick-menu remain visible while hovered?
- Replies: 8
- Views: 896
Re: How can I make the quick-menu remain visible while hovered?
I changed the mousearea statement from mousearea: area (0,450, 640, 30) hovered Show("quick_menu", transition=dissolve) unhovered Hide("quick_menu", transition=dissolve) to mousearea: area (0,1000, 1000, 100) hovered SetVariable("quick_menu", True) unhovered SetVariable("quick_menu", False) Which f...
- Mon Aug 26, 2019 11:33 am
- Forum: Ren'Py Questions and Announcements
- Topic: when I play the game I click F4 can open save list but...
- Replies: 2
- Views: 435
Re: when I play the game I click F4 can open save list but...
I need some help. I define F4 is the key to save list, and F5 is the key to option when I play the game I click F4 can open save list but if I click F5 again, it will jump to option. I propose let two features seperate. As I click F4 and close it, then I can acturally click F5 and go to option, If ...
- Mon Aug 26, 2019 11:21 am
- Forum: Ren'Py Questions and Announcements
- Topic: Need some advice on condensing code. [SOLVED]
- Replies: 4
- Views: 551
Re: Need some advice on condensing code.
if redeemedtsu == 5 and tsu_points >= 5: $ redeemedtsu = 10 $ gift_ticket += 1 show screen notify("Gift Ticket Added") elif redeemedtsu == 10 and tsu_points >= 10: $ redeemedtsu = 15 $ gift_ticket += 1 show screen notify("Gift Ticket Added") elif redeemedtsu == 15 and tsu_points >= 15: $ redeemedts...
- Mon Aug 26, 2019 3:40 am
- Forum: Ren'Py Questions and Announcements
- Topic: NVL Spacing is Inexplicably Inconsistent (SOLVED)
- Replies: 3
- Views: 471
Re: NVL Spacing is Inexplicably Inconsistent
I'm relatively new to Ren'Py, and making a visual novel with my wife. She's doing the writing and art, I'm doing the work with Ren'Py itself. For the most part, it's been working pretty well, but there are a few issues I can't find any info on. For starters, I'm using NVL mode for the text of a let...
- Sun Aug 25, 2019 7:38 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]picking the 3 highest from the list and than set to random choice
- Replies: 5
- Views: 572
Re: picking the 3 highest from the list and than set to random choice
I have long list of variables. The values keep changing in the game. I used this type of method to do it.: videos = [v1, v2, v3, v4, v5, v6, v7, v8, v9, v10] videos_best = videos.index(max(videos)) With that way I can pick the most viewed video, but I need the 3 most viewed video and then I would l...