Search found 30 matches

by acorn-says-no
Fri Jan 22, 2021 9:28 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Custom mouse cursor in 7.4.x
Replies: 6
Views: 877

Re: Custom mouse cursor in 7.4.x

Try this in gui.rpy

Code: Select all

define config.mouse = {"default":[ ("gui/cursor.png", 1, 1) ] }
by acorn-says-no
Fri Jan 22, 2021 3:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Is it possible to have a grid like menu?
Replies: 1
Views: 346

Is it possible to have a grid like menu?

I was wondering if something like this is possible in Ren'Py?
643px-Greater-dog-beckon.png
643px-Greater-dog-beckon.png (8.23 KiB) Viewed 346 times
Every time I try an hbox the spacing is waaaaay to far apart
by acorn-says-no
Fri Jan 22, 2021 10:36 am
Forum: Ren'Py Questions and Announcements
Topic: Different Choice buttons
Replies: 4
Views: 428

Re: Different Choice buttons

Sort of, but there's always a huge space between the buttons when I do that. Anyway to close that large spacing?
by acorn-says-no
Thu Jan 21, 2021 5:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Different Choice buttons
Replies: 4
Views: 428

Re: Different Choice buttons

You're a saint once again!!!
One last question- do you think there's a way to have the yn menu choices be next to each other instead of onto of each other?
Thanks <3
by acorn-says-no
Wed Jan 20, 2021 1:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Different Choice buttons
Replies: 4
Views: 428

Different Choice buttons

Hi, I've been attempting to have it so I have two different placements of choice boxes depending on the number of choices that are there. However, I attempted to use a tutorial from Reddit on this and I got an error with it. Here is the code I have written down in screens.rpy screen choice(items): $...
by acorn-says-no
Wed Jan 20, 2021 1:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Sound effects cutting off. [Solved]
Replies: 3
Views: 383

Re: Sound effects cutting off.

I fixed it! It was because the music and text noises were cutting in- so I made the sound before the character hopped in instead of after so the full sound can play and the text sound doesn't cut in
by acorn-says-no
Mon Jan 18, 2021 11:08 am
Forum: Ren'Py Questions and Announcements
Topic: Sound effects cutting off. [Solved]
Replies: 3
Views: 383

Re: Sound effects cutting off.

Still having issues, tried to make a new audio channel but for some reason its really quite

Code: Select all

init python: 
    renpy.music.register_channel(name='beeps', mixer='voice')
    renpy.music.register_channel(name='effect', mixer='sound', loop=None)
by acorn-says-no
Mon Jan 18, 2021 10:48 am
Forum: Ren'Py Questions and Announcements
Topic: Toggle Screens with map overly? [Solved]
Replies: 5
Views: 1007

Re: Toggle Screens with map overly?

I feel so dumb-- i didnt think it would be that easy to fix-
thank you so much you are a saint <3 <3 <3 <3
by acorn-says-no
Sun Jan 17, 2021 6:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Toggle Screens with map overly? [Solved]
Replies: 5
Views: 1007

Re: Toggle Screens with map overly?

It doesn't seem to be doing anything-

basically what I'm asking is if there is a way to not let the player call the map screen during a conversation. like, is there a way to make the 'm' key not activate during a conversation? something similar to $ quick_menu=False
by acorn-says-no
Sun Jan 17, 2021 4:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Toggle Screens with map overly? [Solved]
Replies: 5
Views: 1007

Toggle Screens with map overly? [Solved]

I want it so when I press "M" I have a map overlay. The only issues are that the map is a screen, which means that I can click on different parts of the image to send me to different locations. That would be ok if my other screens with characters being there weren't active. This causes me ...
by acorn-says-no
Sun Jan 17, 2021 12:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Sound effects cutting off. [Solved]
Replies: 3
Views: 383

Sound effects cutting off. [Solved]

I want to play this sound effect: https://www.youtube.com/watch?v=Cio6qpP78bA But renpy keeps cutting out the sound! Ive tried all audio files and nothing works! The move in transition sound works fine, but that sound specifically isn't working. Ive even tried to make it as music instead of sound an...
by acorn-says-no
Sat Jan 16, 2021 8:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Call Screen with Key? [SOLVED]
Replies: 2
Views: 341

Re: Call Screen with Key?

That didn't work... am I supposed to put it like this? screen map(): vbox: imagemap: ground "map.png" hotspot (489, 201, 427, 402) action Jump('room1') hotspot (1195, 201, 400, 407) action Jump('room2') screen my_key(): key 'm' action ToggleScreen('map') And yes, I did show the screen at t...
by acorn-says-no
Sat Jan 16, 2021 7:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Call Screen with Key? [SOLVED]
Replies: 2
Views: 341

Call Screen with Key? [SOLVED]

I want to call a map onscreen by pressing "m" Does anyone know how to do this? screen map(): vbox: imagemap: ground "map.png" hotspot (489, 201, 427, 402) action Jump('room1') hotspot (1195, 201, 400, 407) action Jump('room2') Should I add something here to do so or somewhere else?
by acorn-says-no
Fri Jan 15, 2021 7:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Moving image button [SOLVED]
Replies: 12
Views: 1436

Re: Moving image button

Thank you so so much!! It works perfectly!! I'll also be putting this here for anyone who may need this in the future; if you want to have multiple characters showing at once, use "show" and not "call" Also, be sure to hide the character once the conversation starts. Here is my c...
by acorn-says-no
Fri Jan 15, 2021 3:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Moving image button [SOLVED]
Replies: 12
Views: 1436

Re: Moving image button

Oh!!! That seems to have worked!! She moves and I can click on her!
ezgif-3-0145883f1133.gif
But I do have one more- well two more issues.

1. How can I reposition her?
2. How can I have a smoother transition when clicking on her?