Search found 91 matches

by Zherot
Sat Aug 12, 2017 11:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

Also? The Tutorial and The Question have open code and is available through the Renpy Launcher. Also, looking at the screens.rpy file in a new project will teach you a lot. In addition to the documentation, looking at the code of those two things will teach you a lot. There are other games that kee...
by Zherot
Sat Aug 12, 2017 11:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

Honestly a BIG part of developing in Renpy is breaking down the code that's given to you and trying to figure out how it works. Actually that's not just Renpy, that's pretty much any SDK. It's rare to have a guide that explains exactly how do do something, because there are about a million differen...
by Zherot
Sat Aug 12, 2017 9:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Text Box Change Based on Choices
Replies: 2
Views: 496

Re: Text Box Change Based on Choices

I would make a class of buttons and a bunch of "if's" depending on the score that you are using to determine this, every button that i wanted to behave like this would inherit from that class. Now... don't ask me how to code that in renpy because i have no idea, renpy guides are pretty bad.
by Zherot
Sat Aug 12, 2017 9:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

If i want to make some buttons that are on the right side of the screen but are "hidden" to the right but you can still see a bit of them and the moment you hover onto one of them they move to the left like they are being dragged and the moment you stop hovering it goes back to it's positi...
by Zherot
Sat Aug 12, 2017 9:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

I know that is the code that is making it, it is the code that changes the size of the buttons: https://image.ibb.co/kV2mRa/Sin_t_tulo.png https://image.ibb.co/k67aKv/Sin_t_tulo2.png This are the images of how it looks, the red circle represents the place in which the cursor was at the moment that t...
by Zherot
Sat Aug 12, 2017 9:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

Nero wrote: Sat Aug 12, 2017 4:54 pm Hmmm this should not happen if you coded everything correctly could you post your code in here please?
I fixed it by using vbox but i will make it how it was to show you.
by Zherot
Sat Aug 12, 2017 4:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

If I understood you correctly you want to have space between each button so they don't overlap each other. Give your buttons xalign and yalign to place them at desired location something like this. You can use xpos and ypos also to do that. screen test: textbutton "Button1" xalign 0.500 y...
by Zherot
Sat Aug 12, 2017 2:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

Ok, i think the vbox and hbox thing makes so they don't overlap like crazy... so if you plan to put the buttons in a type of list may aswell use that, the problem though would persist if you don't want to use that so it still would be a good idea to find out how to reduce the clickable/hovering area.
by Zherot
Sat Aug 12, 2017 2:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

I managed to make an Imagebutton that appears and disappears on hover, i don't know if it is possible with textbuttons but at least for imagebuttons i just had to make 2 images one completely transparent and the other not. I still would like to see if the problem with stacking buttons too close can ...
by Zherot
Sat Aug 12, 2017 12:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

While playing a bit with the textbuttons i found out that if you put them too close together they start to conflict, you hover into a button and it looks like you are hovering on another one, it is like the button press area gets bugged or it is too big for each button that when they are together th...
by Zherot
Fri Aug 11, 2017 9:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

Thank you i will check your posts tomorrow im tired and i need to stay away from this for the rest of the day, i did managed to do what i wanted though even if i had to be infront of the computer all the day... sorry if i bothered you all too much. I installed the package for atom Nero thanks it wil...
by Zherot
Fri Aug 11, 2017 8:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

Hi Zherot! It's not "divination" (sorry, I lol at the idea), but please be aware that this forum about Ren'Py is always a "guess" work, for you who ask and for us who try to understand you and give an appropriate answer. When somebody asks something, it's hard to know hoy much t...
by Zherot
Fri Aug 11, 2017 8:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

One semi major problem with the documentation and inline code examples is that they are 'presumably' mostly written by PyTom who is a programmer rather than an artist/storyteller (debatable)/composer/singer (cough - we do not talk about that - see the ToS - some say the Egyptians pouring molten lea...
by Zherot
Fri Aug 11, 2017 8:08 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

LOL how i was supposed to know about the PAUSE function? i mean i have literally the same thing in the code that i put minus the pause instruction...

And now that the button "magically" appeared how can i edit position and all of that hassle?, do the other buttons are called the same way?
by Zherot
Fri Aug 11, 2017 8:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Actual guides?
Replies: 58
Views: 5440

Re: Actual guides?

I tried everything, even started a new proyect and it doesn't work: https://preview.ibb.co/kQTi4v/Sin_t_tulo.png What i get is the menu of the game and when i hit start nothing happens... So can you give me the complete instructions please? EDIT: I was getting desperate and commented before seeing y...