Search found 335 matches

by verysunshine
Thu Sep 19, 2019 4:52 am
Forum: Creator Discussion
Topic: Native Speakers, rate this English translation pls
Replies: 5
Views: 4388

Re: Native Speakers, rate this English translation pls

I'd give it a 4/10, with 1/10 being completely unintelligible and 10/10 being impossibly flawless. This translation has problems with grammar and tone. Some parts of the dialogue do feel natural, like "You were sleeping in my dream. Funny, isn't it?" The overall flow of the conversation is...
by verysunshine
Tue Aug 20, 2019 12:31 am
Forum: Asset Creation: Art
Topic: Please critique this mock up of a game
Replies: 3
Views: 8793

Please critique this mock up of a game

It's going to be made in Unity, and is more of a movement-based interactive fiction. I'm trying to do the art myself, so I'm aiming for a child-like style. mis-mockup.jpg Please critique the art. I'm trying to get a style down so I don't do too much before finding out it won't work. I'm not sure I s...
by verysunshine
Sun Aug 18, 2019 1:04 am
Forum: Ren'Py Questions and Announcements
Topic: [Meta-Question] What Licence Ren'Py Cookbook Under?
Replies: 2
Views: 534

[Meta-Question] What Licence Ren'Py Cookbook Under?

I've tried to figure out what kind of licence the code in the Ren'Py Cookbook is under. None of the code creators mention it.

Are there blanket permissions, or does it change with each project?

Specifically, can users alter cookbook code or make money with code from the cookbook?
by verysunshine
Fri Aug 16, 2019 5:32 pm
Forum: Asset Creation: Art
Topic: Feedback please
Replies: 4
Views: 9106

Re: Feedback please

I agree with what yayamiho said. In addition, the shading on the character looks strange. The light coming from her side appears to just be pasted on, and not a natural part of the shading.
by verysunshine
Fri Aug 16, 2019 4:45 pm
Forum: Creator Discussion
Topic: Is this acceptable?
Replies: 5
Views: 4383

Re: Is this acceptable?

I honestly think a more curated approach might be more helpful than allowing anyone to add things to the database. If you allow anyone to add items, you could have situations where people upload inappropriate material, material that isn't actually under a creative commons or public domain licence, o...
by verysunshine
Thu Aug 15, 2019 12:05 pm
Forum: Asset Creation: Writing
Topic: Fast pace stories or drawn out stories?
Replies: 4
Views: 1416

Re: Fast pace stories or drawn out stories?

Episode is designed for mobile. Standard VNs are designed for consoles or PCs. They have different expectations.
by verysunshine
Thu Aug 15, 2019 11:50 am
Forum: Creator Discussion
Topic: Is this acceptable?
Replies: 5
Views: 4383

Re: Is this acceptable?

That could be useful. I don't think it would break any rules unless you used CC - Noncommercial items on a site that (for example) has advertising. Resources can be quite scattered, and it's difficult to find something that matches what you have envisioned, even for things like "four characters...
by verysunshine
Tue Aug 06, 2019 7:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Jump leads to NameError and mis-routing issue
Replies: 6
Views: 905

Re: Jump leads to NameError and mis-routing issue

The final code ended up looking like this: label maingame: python: getJump = "" verbcount = 0 nouncount = 0 textinput = renpy.input(prompt='What should I do?', default='', allow=None, exclude='{}', length=30, with_none=None, pixel_width=None) textinput = textinput.lower() for verb in verbL...
by verysunshine
Tue Aug 06, 2019 1:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Jump leads to NameError and mis-routing issue
Replies: 6
Views: 905

Re: Jump leads to NameError and mis-routing issue

The reason I had name exception errors is because renpy.jump and renpy.call expect strings or variables, and strings need to be in quotation marks. This means "renpy.jump(noVerb)" should be "renpy.jump("noVerb")". Thanks to renpytom on the Discord for pointing that out....
by verysunshine
Tue Aug 06, 2019 1:43 pm
Forum: Completed Games
Topic: The Last Thing That We Do Together [GMTKJam2019][Short][Web]
Replies: 0
Views: 736

The Last Thing That We Do Together [GMTKJam2019][Short][Web]

The Last Thing That We Do Together is a short game created for the GMTK Game Jam 2019. In it, you have only one point of control. Type in a verb and a noun from the respective lists (or a verb or noun not on the list) to get one of ten possible endings.

Play this game on itch.io now.
by verysunshine
Sat Aug 03, 2019 10:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Jump leads to NameError and mis-routing issue
Replies: 6
Views: 905

Re: Jump leads to NameError and mis-routing issue

So I split the text up, presumably at the spaces. If the first item in the split text matches a word in the verb list, we set a flag to true and move on. If the item doesn't, give an error. Then, we see if the second item in the split text matches a verb, with the same process. Once we have both, we...
by verysunshine
Sat Aug 03, 2019 8:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Jump leads to NameError and mis-routing issue
Replies: 6
Views: 905

Jump leads to NameError and mis-routing issue

This section of code only seems to go to the correct place part of the time. It has four possible outcomes: One: The input doesn't match any verbs, so jump to noVerb. This goes to the correct label, but I get a nameError. Two: The input matches a verb, but it doesn't match a noun, so jump to noNoun....
by verysunshine
Thu Aug 01, 2019 9:21 pm
Forum: Creator Discussion
Topic: Template/Theme maker for Ren'Py
Replies: 11
Views: 4718

Re: Template/Theme maker for Ren'Py

Template Maker for Ren'Py sounds good!
by verysunshine
Wed Jul 31, 2019 10:13 pm
Forum: Creator Discussion
Topic: Should I continue to develop simple games?
Replies: 2
Views: 4042

Re: Should I continue to develop simple games?

I tried looking your username up on itch.io to learn more about what games you were making. I couldn't find you there. Are you posting your games anywhere, and if so, could you post a link to where you posted them? I'm not sure what you mean by "simple graphics". There are games which have...
by verysunshine
Wed Jul 31, 2019 9:54 pm
Forum: Creator Discussion
Topic: Template/Theme maker for Ren'Py
Replies: 11
Views: 4718

Re: Template/Theme maker for Ren'Py

I feel like this would be useful. A template maker would be handy with the current version of the Ren'Py GUI, as there are many elements to keep track of. Most GUIs in Creative Commons don't have a full set of images. It would be a great stepping stone between using the default items and creating it...