Search found 6 matches
- Fri Sep 23, 2016 8:02 am
- Forum: Development of Ren'Py
- Topic: Can't find the right Android Packages
- Replies: 0
- Views: 478
Can't find the right Android Packages
I would like to make a game work on Android devices so I followed a tutorial video on Youtube (The video is around two weeks old by now so it seems up to date) but no matter what I do, the same error shows up. It can't seem to find the packages it's looking for. The video said that installing the JR...
- Fri Apr 15, 2016 7:39 am
- Forum: Ren'Py Questions and Announcements
- Topic: Crashing on choice_screen
- Replies: 4
- Views: 426
Re: Crashing on choice_screen
Huh, I have never come across this doc before. It helped, everything works now. Thank you!
- Fri Apr 15, 2016 7:06 am
- Forum: Ren'Py Questions and Announcements
- Topic: Crashing on choice_screen
- Replies: 4
- Views: 426
Re: Crashing on choice_screen
That's amazing, it worked thank you!
Now to another part of the problem. If I would like the action to be "$ option = 1" instead of jumping to another scene? What would I have to write? Maybe I should ask if it's possible first, hehe?
Now to another part of the problem. If I would like the action to be "$ option = 1" instead of jumping to another scene? What would I have to write? Maybe I should ask if it's possible first, hehe?
- Fri Apr 15, 2016 5:16 am
- Forum: Ren'Py Questions and Announcements
- Topic: Crashing on choice_screen
- Replies: 4
- Views: 426
Crashing on choice_screen
Hi! I'm trying to make a choice_screen for my game through python: but it keeps crashing. result = [(kiss[1][1][0].text, 'renpy.jump("start")', ''), (kiss[1][1][1].text, 'renpy.jump("home_scene")', ''), (kiss[1][1][2].text, 'renpy.jump("school_scene")', '')] renpy.call_screen('choice', items=result)...
- Fri Apr 15, 2016 5:07 am
- Forum: Ren'Py Questions and Announcements
- Topic: XML/txt implementation and usage in Ren'py
- Replies: 2
- Views: 361
Re: XML/txt implementation and usage in Ren'py
Thanks, I got it working now!
- Tue Apr 12, 2016 5:03 am
- Forum: Ren'Py Questions and Announcements
- Topic: XML/txt implementation and usage in Ren'py
- Replies: 2
- Views: 361
XML/txt implementation and usage in Ren'py
Hi, I'm trying to implement text through outside files such as .txt or .xml. However I can't find any helpful documentation except how to open and close the file. For example, I'd like to dampen the usage of hard coded lines in Ren'py and instead use a .txt file. So I'd like to open the file tell it...