Search found 882 matches

by Per K Grok
Tue Feb 09, 2021 3:38 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Search a word in txt
Replies: 10
Views: 495

Re: Search a word in txt

I have tried to incorporate a word search engine into my visual novel. First, I incorporated a glossary containing all the words associated with baking (which is more than 50 technical terms). Second, each word is assigned to a specific label, which provides the respective information. For example:...
by Per K Grok
Sun Feb 07, 2021 4:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Overlay over .webm movie
Replies: 1
Views: 277

Re: Overlay over .webm movie

Hello, I want to put an overlay image, that is a black image with 50% opactiy, over a .webm movie. The reason for that is I want the same animation on the perferences/loading/saving screen as the starting screen but with that overlay. Is that possible, and if so how? Thanks define your movie as an ...
by Per K Grok
Sun Feb 07, 2021 2:18 pm
Forum: Ren'Py Questions and Announcements
Topic: How to properly configure the right mouse button action ?
Replies: 3
Views: 278

Re: How to properly configure the right mouse button action ?

I have a customized menu page, and I changed the file_slots to not use the game menu, but a separate frame, but now my right button instead of going to my menu, is going to save, how to change it? You could take a look at the 'Customizing the Keymap' page; https://www.renpy.org/doc/html/keymap.html...
by Per K Grok
Fri Feb 05, 2021 2:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Change player name from options menu
Replies: 5
Views: 396

Re: Change player name from options menu

SID Gaming wrote: Fri Feb 05, 2021 12:01 pm Still the same problem, unfortunately. The name change only works as long as the screen is open. When I go back to the game, it resets to what it was before.
Strange. It works fine for me. Have you done it the exact same way as I did or have you changed something?
by Per K Grok
Fri Feb 05, 2021 1:37 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Change player name from options menu
Replies: 5
Views: 396

Re: Change player name from options menu

I'd like to include the option to change the name the player put in at the start of the game. --- Any help is appreciated! You could try something like this. In script.rpy before label start init python: def name_func(newstring): store.mc = newstring default mc="Bert" In screens.rpy, scre...
by Per K Grok
Sun Jan 31, 2021 3:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Layered images, animation layers, changing central layer
Replies: 2
Views: 1219

Re: Layered images, animation layers, changing central layer

This is likely (hopefully) a very newbie question and pretty basic stuff for most of you: What I'm trying to achieve is a scene that has a background fog animation, a central body that advances when you click, and a foreground fog animation. I really have not messed with layered images in ren'py be...
by Per K Grok
Mon Jan 25, 2021 5:55 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Is there a way to stop users from accessing script.rpy?
Replies: 2
Views: 344

Re: Is there a way to stop users from accessing script.rpy?

I'm currently building a puzzle game, and I want the players to be forced to figure it out, rather than just opening the script and reading through the data. Is there a way to stop users from accessing the script.rpy? You can look at the possibility of using archives https://www.renpy.org/doc/html/...
by Per K Grok
Thu Jan 21, 2021 2:08 am
Forum: Ren'Py Questions and Announcements
Topic: how can i make average score of result in a quiz game on screen?
Replies: 2
Views: 256

Re: how can i make average score of result in a quiz game on screen?

is anyone here already made a sum and average score of result in a quiz game on screen? example of result like : Your average score is 90% Your correct score is 9 out of 10 how to make that ? thanks :) You could do something like this default q_asked=0 default correct_answ=0 screen scoreboard(): vb...
by Per K Grok
Sun Jan 10, 2021 3:56 pm
Forum: Ren'Py Questions and Announcements
Topic: No indicator (?) in input screen
Replies: 1
Views: 295

Re: No indicator (?) in input screen

I don't know how to describe this, but basically my input screen is missing that little flashing | at the end of the line to indicate that you should be writing lol Illustration.png How do I get that? It has never appeared, not even in the original game file to my knowledge... The thingy is called ...
by Per K Grok
Fri Jan 01, 2021 6:50 pm
Forum: Asset Creation: Art
Topic: Art Dumpage! Show your art ^^
Replies: 7876
Views: 1072823

Re: Art Dumpage! Show your art ^^

A good thread to start my way on forum ^_^ idk so many arts to choose from, ok let it be the one i made for food humanization artbook this year because i really like it ~ Now, that is really good art. Technically good and absolutely beautiful. I'm not really into manga/anime style, but beautiful ar...
by Per K Grok
Tue Dec 29, 2020 3:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Screen that's modal or not based on its parameters
Replies: 4
Views: 565

Re: Screen that's modal or not based on its parameters

I have a screen like this: screen my_screen(should_be_modal): modal should_be_modal text "Hello World" If I do show screen my_screen(False) , I get NameError: name 'should_be_modal' is not defined . What do I have to do to make a screen that's modal sometimes, depending on its parameters?...
by Per K Grok
Thu Dec 24, 2020 4:37 pm
Forum: Ren'Py Questions and Announcements
Topic: The while loop does not stop working when the condition is met. [SOLVED]
Replies: 3
Views: 425

Re: philat

Dosya wrote: Mon Dec 21, 2020 1:55 am --- Can you tell me how to close the threads? I tried to find it, but it wasn't successful.
What you can do is to edit the first post of the thread and add the text "[Solved]" to the title of the thread.
by Per K Grok
Thu Dec 24, 2020 10:30 am
Forum: Ren'Py Questions and Announcements
Topic: Changing page title fonts?
Replies: 1
Views: 287

Re: Changing page title fonts?

I want the font that says "Options" in pink in the top left corner to use a different font than the rest of the text on this page. I also want to do this on all my other menu pages "Save, Load, Options, Gallery, About, and Help." Where in the code can I make this change? Screen ...
by Per K Grok
Thu Dec 24, 2020 6:44 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]In a screen, show text and bar on same line?
Replies: 4
Views: 389

Re: In a screen, show text and bar on same line?

Hello! Simple question, but I really can't seem to find the answer. Here's a piece of simple screen code (basically taken from the Tutorial): screen stat(): frame: xalign 0.5 ypos 50 vbox: text "Health" bar value StaticValue(90, 100) xalign 0.5 xsize 250 This shows the word "Health,&...