Search found 2 matches

by YourWaifu
Wed Apr 17, 2019 12:14 am
Forum: Ren'Py Questions and Announcements
Topic: Preventing the Same Selection Across Multiple Choices
Replies: 3
Views: 402

Re: Preventing the Same Selection Across Multiple Choices

for r in [ k for k in unlockedRecipes if k not in foodMenu.values() ]: Might do it. You might consider though looking into drag and drop as an alternative way to do the same. That helped a lot, thanks! The only problem is that now it's only showing up with one button for each day that changes to a ...
by YourWaifu
Mon Apr 15, 2019 3:48 am
Forum: Ren'Py Questions and Announcements
Topic: Preventing the Same Selection Across Multiple Choices
Replies: 3
Views: 402

Preventing the Same Selection Across Multiple Choices

Hi all! I'm a pretty novice programmer at best, and though I've messed around with python and ren'py before, this is my first real attempt at a game and by far my most ambitious project. Basically, in my game, the player plays as a restaurant owner and can choose one food to put on their menu for Mo...