Yes I would believe you. And it's also so great that you came up with this idea!Would you believe I originally came up with this as a way for the player to see how far they were in the game?
Search found 124 matches
- Sat Apr 12, 2014 10:27 am
- Forum: Ren'Py Cookbook
- Topic: [Tutorial] Making a Contents page / screen
- Replies: 30
- Views: 21016
Re: [Tutorial] Making a Contents page / screen
- Fri Apr 11, 2014 1:24 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you put a stop flag for the chapters list?
- Replies: 3
- Views: 485
[Solved] How do you put a stop flag for the chapters list?
I read these two forums here: http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=17301 and http://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=24821&hilit=chapters+page to make a chapters list. And when I replayed the chapter through the chapters list page, it doesn't stop until you finish the w...
- Thu Apr 10, 2014 11:41 pm
- Forum: Asset Creation: Writing
- Topic: Planning a Story Question?
- Replies: 25
- Views: 2449
Re: Planning a Story Question?
Usually I plan the ending, or whatever it is I want my reader to understand. Then I concept the universe of the story, and finally start weaving plot. I do that too! Working backwards sometimes make the storyline more realistic because you already know what's the effect and so you just need to find...
- Thu Apr 10, 2014 11:39 pm
- Forum: Creator Discussion
- Topic: Would you play commercial VN without voices?
- Replies: 37
- Views: 4689
Re: Would you play commercial VN without voices?
Whether the voices will be accepted by the public or not does depend on their quality, but I think the consensus is that even at their best, they are not absolutely necessary to the medium. A VN can be good with good ones, or bad ones can ruin the whole experience, but not having any voice acting s...
- Thu Apr 10, 2014 11:04 pm
- Forum: Creator Discussion
- Topic: Would you play commercial VN without voices?
- Replies: 37
- Views: 4689
Re: Would you play commercial VN without voices?
So I guess it all comes down to whether or not the voices are good then?
- Thu Apr 10, 2014 11:02 pm
- Forum: Asset Creation: Writing
- Topic: Planning a Story Question?
- Replies: 25
- Views: 2449
Re: Planning a Story Question?
I usually do a whole storyboard, to know what I'm doing for each route and then write the dialogue parts for it later. The coding tends to come last for me. So you kind of writer it like a book, then go to the dialogue, then do the coding? You can say that. I use to write stories in a novel format ...
- Thu Apr 10, 2014 8:18 pm
- Forum: Asset Creation: Writing
- Topic: Planning a Story Question?
- Replies: 25
- Views: 2449
Re: Planning a Story Question?
I usually do a whole storyboard, to know what I'm doing for each route and then write the dialogue parts for it later. The coding tends to come last for me.
- Wed Apr 09, 2014 8:16 am
- Forum: Ren'Py Cookbook
- Topic: [Tutorial] Making a Contents page / screen
- Replies: 30
- Views: 21016
Re: [Tutorial] Making a Contents page / screen
This is a great tutorial! Going to use it in the future!
- Wed Apr 09, 2014 8:10 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you change the font of the save names?
- Replies: 2
- Views: 410
Re: How do you change the font of the save names?
Using Style Inspector it looks like file_picker_extra_info references the text for the date/time stamp, if that's what you need. (You can use the style inspector by hovering over an element and hitting Shift+I). Thank you for your help! But that didn't work for me, mostly because I wasn't sure what...
- Mon Apr 07, 2014 4:20 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you change the font of the save names?
- Replies: 2
- Views: 410
[Solved] How do you change the font of the save names?
From here: http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=20720&hilit=change+save+screen I learnt that you can change the font of the buttons with this code: init -2 python: ##The save/load slots. style.large_button_text.font = "AUBREY1__.TTF" But when I tried it never worked. So I was wonder...
- Mon Apr 07, 2014 1:07 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you delete saves?
- Replies: 9
- Views: 903
Re: How to delete saves?
Ah! That's true! I should use something more universal. Thank you for the suggestion!Might I suggest 2014/04/06 though? 06/04/2014 could trip up Americans who use month/date instead of date/month. Y/M/D is pretty universal though.
FileTime(number, format="%Y/%m/%d, %H:%M", empty=_("Empty"))
- Mon Apr 07, 2014 12:40 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you delete saves?
- Replies: 9
- Views: 903
Re: How to delete saves?
I did add it under 'screen load_save_slot:' but it didn't work. Then I went and cut the whole part of 'screen load_save_slot:' and put it after 'screen file_picker:' then it worked! Yay! Thank you so much for your help! Also just wondering but does someone know who to change the date format when a s...
- Sun Apr 06, 2014 10:52 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you delete saves?
- Replies: 9
- Views: 903
Re: How to delete saves?
Don't know if it will really help you or just add to the confusion (haven't tested those codes) but viewtopic.php?f=51&t=25981 I tried it that thread last night, but it was more confusing for me. So I have no ideas where to go to now. If you choose the 'Delete Persistant' option on the main menu, t...
- Sun Apr 06, 2014 9:12 am
- Forum: Ren'Py Questions and Announcements
- Topic: [Solved] How do you delete saves?
- Replies: 9
- Views: 903
[Solved] How do you delete saves?
Hi, I just customized my save and load page by using this post here: http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=14237 And so I'm using this code now: screen load_save_slot: $ file_text = "%2s. %s\n %s" % ( FileSlotName(number, 8), FileTime(number, empty=_("Empty")), FileSaveName(number)) ...
- Mon Mar 31, 2014 6:39 am
- Forum: Ren'Py Questions and Announcements
- Topic: any way to set music volume by default?
- Replies: 12
- Views: 7876
Re: any way to set music volume by default?
Ah okay I'll keep in mind that python: block is more important then!
And about the indentation, it didn't work originally and kept saying that the code wasn't working because of the indentation. So yeah...
And about the indentation, it didn't work originally and kept saying that the code wasn't working because of the indentation. So yeah...