Search found 5 matches

by Daert
Tue Mar 07, 2017 6:42 am
Forum: Ren'Py Questions and Announcements
Topic: Room navigation and free movement
Replies: 9
Views: 6823

Re: Room navigation and free movement

xavimat wrote:Don't forget the quotes...

Code: Select all

$ area = "bedroom"
Yes that was it! Thank you! Besides that I also had to make some small changes but it appears to be working good now, I'll post the final code later in case anyone has the same problem.
by Daert
Mon Mar 06, 2017 11:32 am
Forum: Ren'Py Questions and Announcements
Topic: Room navigation and free movement
Replies: 9
Views: 6823

Re: Room navigation and free movement

Alright I'm totally stuck with the area variable. I understand the variable tells the game where the player is. But when I use $ area = bedroom in start label, the game tells me that the "name 'bedroom' is not defined". What am I doing wrong? Is the variable tied to some label? Also why is...
by Daert
Mon Feb 27, 2017 8:27 am
Forum: Ren'Py Questions and Announcements
Topic: Room navigation and free movement
Replies: 9
Views: 6823

Re: Room navigation and free movement

Thanks for your reply Kiwi! style_prefix "choice" was JUST for the textbuttons. I just used it so if you wanted to plug it directly into a game, it would show up correctly. vbox creates a vertical box to align the choices in. Once again, only necessary with textbuttons or imagebuttons. It ...
by Daert
Tue Feb 14, 2017 11:52 am
Forum: Ren'Py Questions and Announcements
Topic: Room navigation and free movement
Replies: 9
Views: 6823

Re: Room navigation and free movement

Thank you for your answer Kiwi, I really apreciate it! I'll be honest, I'm not sure I understand it correctly. I'll try to use it in a simple example. Let's say I've got 3 locations, Bedroom, Hallway and Bathroom. Hallway connects Bathroom and Bedroom so that you can't go directly from Bedroom to Ba...
by Daert
Mon Feb 13, 2017 8:17 am
Forum: Ren'Py Questions and Announcements
Topic: Room navigation and free movement
Replies: 9
Views: 6823

Room navigation and free movement

Hi, I'm working on a simple game which is also a way for me to learn coding. Recently I've decided to try to make some sort of free movement. It was challenging but I was moving slowly. However I feel like I've hit a wall and also I'm pretty sure I've got it somehow all wrong. So after a while of ba...