Search found 70 matches
- Mon Sep 14, 2020 12:06 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Image button stay on hover
- Replies: 2
- Views: 346
Re: Image button stay on hover
Hi, this is the way i usually do imagebuttons, what i see you are missing is the "unhovered" part, that can be either the variable, or your base image. unhovered SetVariable("hovered_door_variable", False) and heres the full thing imagebutton: idle "/door.png" action Jump("label_to_fill") hovered Se...
- Mon Sep 14, 2020 11:56 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] fading effect starting from the top?
- Replies: 4
- Views: 424
[Solved] fading effect starting from the top?
hi, i need to do a fading effect for a static image, a laser, and i need it to start from the top, so it gives the impression the laser is actually coming out.
i don't know if this even possible in renpy, otherwise id have to animate frame by frame the thing and its a pain.
i don't know if this even possible in renpy, otherwise id have to animate frame by frame the thing and its a pain.
- Thu Sep 03, 2020 7:48 pm
- Forum: Ren'Py Questions and Announcements
- Topic: renpy input outside of the textbox
- Replies: 3
- Views: 302
Re: renpy input outside of the textbox
it seems like the name of the screen was the problem, maybe sharing "input" as name caused some trouble
- Thu Sep 03, 2020 7:37 pm
- Forum: Ren'Py Questions and Announcements
- Topic: renpy input outside of the textbox
- Replies: 3
- Views: 302
Re: renpy input outside of the textbox
i got this set up for a screen in a phone, and the the if statements its just a filler, i will use that to activate cheat codes. the problem is aesthetic i took 3 quick screenshots so u understand what i mean. https://imgbox.com/g/sIpkbvfP1H 1 is how it looks when i try to call the input normally 2 ...
- Thu Sep 03, 2020 6:41 pm
- Forum: Ren'Py Questions and Announcements
- Topic: renpy input outside of the textbox
- Replies: 3
- Views: 302
renpy input outside of the textbox
ok here's the thing, a while ago i copied some code to move the text input out of the text box, but this moved the input outside in general when i just wanted to move it out for a one time use only. i'm not that familiar with the text input so i cant fix it for myself. :( label cheats_input: hide sc...
- Thu Sep 03, 2020 6:02 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Clicking on imagemap hotspot overrules modal True
- Replies: 5
- Views: 360
Re: Clicking on imagemap hotspot overrules modal True
are you doing all this in the same screen? try doing it in a different one and displaying the one with the inventory on top of the overworld.
- Thu Sep 03, 2020 5:49 pm
- Forum: Ren'Py Questions and Announcements
- Topic: How can I add a simple day counter?
- Replies: 3
- Views: 470
Re: How can I add a simple day counter?
I don't know if you are aware of the renpy.notify function, this shows a notification at the top left of the corner with any information given, hides automatically after 3 or 4 seconds. in this example is linked to a variable, everytime you jump to a label this will show, but it wont work saving and...
- Mon Aug 24, 2020 10:42 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Making a Support button in main screen
- Replies: 1
- Views: 230
Making a Support button in main screen
Hi, i'm making a project and i'd like to add a support button in the main screen (navigation screen) displaying information, but it's kind of blurry right now as this is my first project in renpy. i don't know how this works exactly... 1 do i create the screen normally and just plug it into the navi...
- Mon Aug 10, 2020 3:50 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Letting the player choose their pronouns?
- Replies: 13
- Views: 6371
Re: Letting the player choose their pronouns?
i remember a guy asking the same question, the thing about gender specification is that causes some issues when translating, what i suggested the guy to do is to define 2 list of words one for male and one for female, and have a menu give the choice, depending on what the user choice is, the menu wi...
- Sun Aug 09, 2020 10:56 am
- Forum: Ren'Py Cookbook
- Topic: telegram messenger (2 version)
- Replies: 122
- Views: 27365
Re: telegram messenger (2 version)
i was breaking my head a few months ago trying to achieve something like this, and i came up with a very decent result, but this one seems better, ill give it a try thank you.
- Tue Jun 23, 2020 11:44 pm
- Forum: Ren'Py Questions and Announcements
- Topic: % simple syntax question
- Replies: 2
- Views: 493
Re: % simple syntax question
ty, that's exactly what i want 
- Thu Jun 18, 2020 3:57 pm
- Forum: Ren'Py Questions and Announcements
- Topic: % simple syntax question
- Replies: 2
- Views: 493
% simple syntax question
i got a bar set but i don't know how to lead a if conditional, if the value goes a certain percentage. could you pls put and example of a percentage usage pls :( bar: xmaximum 400 value ben_hp range ben_max_hp left_gutter 0 right_gutter 0 thumb None thumb_shadow None $ ben_max_hp = 40 $ ben_hp = ben...
- Wed Jun 17, 2020 2:14 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVE] Gender Choice and Branching
- Replies: 7
- Views: 383
Re: Gender Choice and Branching
so there's another idea i got when i was rethinking about it, first came to my mind, make a variable that changes between o and a, to use it like this enferrmer[@], but since this is not true for all the words as example doctor and doctora, what you can do is to make 2 lists, each one with the diffe...
- Tue Jun 16, 2020 3:39 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Displaying renpy.notify at other position on the screen?
- Replies: 2
- Views: 208
Displaying renpy.notify at other position on the screen?
lately i've been using renpy.notify function, it displays a massage at the top left corner, but it also appears on top of one of my screens, is there a way to display it in other position?
i just want to display normal simple text out of the textbox.
i just want to display normal simple text out of the textbox.
- Tue Jun 16, 2020 3:32 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVE] Gender Choice and Branching
- Replies: 7
- Views: 383
Re: Gender Choice and Branching
to my mind comes something like this, just by doing that it changes depending on the gender, idk if i did the code right but you get the idea, if its a pain to write it like this, write it normally and use crlt + f to change all the he, she and him, her to the variable. maybe this works maybeee? def...