Search found 128 matches

by Marionette
Wed Sep 08, 2021 8:18 am
Forum: We are a Free Project looking for Partners
Topic: [Closed] Seeking Artists for Spooktober 2021 Teaching sim game
Replies: 2
Views: 981

Re: [Open] Seeking Artists for Spooktober 2021 Teaching sim game

We are currently still looking for artists who would be interested in helping out with CG scenes.
by Marionette
Sat Aug 28, 2021 11:57 am
Forum: We are a Free Project looking for Partners
Topic: [Closed] Seeking Artists for Spooktober 2021 Teaching sim game
Replies: 2
Views: 981

[Closed] Seeking Artists for Spooktober 2021 Teaching sim game

Hi! I'm planning on making a stat-raiser / sim game where you play as a monster teacher for some monster kids with the end goal of reaching a certain passing score for the class by the end of the month so everyone graduates, with certain characters getting story arcs to help them along in their lear...
by Marionette
Thu Apr 18, 2019 7:31 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Avoiding using a {color} tag each time a word is mentioned?
Replies: 3
Views: 460

Re: Avoiding using a {color} tag each time a word is mentioned?

You could try setting the name up with the tag as a variable and adding it that way.
Eg

Code: Select all

#Define it like so
$Mark = "{color=#ffffff}Mark{/color}"

# Use it like so
"Hey its [Mark]."
by Marionette
Thu Apr 11, 2019 12:02 pm
Forum: Ren'Py Cookbook
Topic: Dating Sim Engine (DSE) 4.1! Day Planner and Event Manager
Replies: 193
Views: 97638

Re: Dating Sim Engine (DSE) 4.0! Day Planner and Event Manager

Highly doubt this is still supported, but I was wondering how I'd be able to run the event system without using the day planner. I did precisely this for my nanoreno game last month, so its definitely possible. If all you need are the events, just include the dse-event_dispatcher.rpy and use your o...
by Marionette
Wed Apr 10, 2019 12:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Help on a Pokemon Battle System?
Replies: 1
Views: 417

Re: Help on a Pokemon Battle System?

For the code blocks not working, try using [ code] [ /code] (no spaces) instead of [ c] [ /c] Edit: I noticed you don't use return on any of your labels, so its possible they are all running on when they shouldn't be, as any label that ends without a return or another jump will continue into the nex...
by Marionette
Wed Apr 10, 2019 12:39 pm
Forum: General Discussion
Topic: Server Problems
Replies: 11
Views: 2344

Re: Server Problems

Okay, fulltext is up and running at the moment. There are some style issues with the forums due to an upgrade that I'll try to get to soon. If you have any problem with the forums, renpy.org, or renai.us, then please let me know. Ah i guess that explains why the names and post times are currently s...
by Marionette
Sat Mar 09, 2019 8:39 pm
Forum: WiP: NaNoRenO
Topic: School Road [Nano2019][Time Loop]
Replies: 1
Views: 690

School Road [Nano2019][Time Loop]

https://i.imgur.com/DN7siVa.png School Road follows the path Martin takes to school, on the same morning, over and over. Can he figure out how to make there on time or at least how to not get bounced back? Characters: https://i.imgur.com/XY6g9mT.png Martin: The main character, trying to get to scho...
by Marionette
Fri Feb 15, 2019 6:39 am
Forum: Ren'Py Questions and Announcements
Topic: How to make the game blur everything
Replies: 2
Views: 401

Re: How to make the game blur everything

The simplest way might be to make a semi transparent 'blur' image and then just layer it over the top of your current displayed images, then you can just show and hide it as needed.
by Marionette
Mon Feb 11, 2019 1:35 pm
Forum: We are a Free Project looking for Partners
Topic: NaNoReno 2019 General Recruitment Thread
Replies: 61
Views: 12995

Re: NaNoReno 2019 General Recruitment Thread

I'm a programmer and this year I'm offering GUI programming services, if you can provide the assets, I can provide the code. :3 If you want to see some samples of my work you can find my personal games, as well as a list of games I worked on as a programmer here: https://marionette.itch.io/ Let me k...
by Marionette
Mon Feb 11, 2019 12:53 pm
Forum: Ren'Py Cookbook
Topic: Ren'Py Steam Achievement Guide
Replies: 10
Views: 14333

Re: Ren'Py Steam Achievement Guide

Excuse me, can you please clarify something for me? I'm going to publish my first Renpy vn in Steam soon and can't get the achievements working (I used other guide then). 1) Is there a way to get Steam Support Library without disturbing Tom? And what is this anyway? Steam libs from sdk? Or some spe...
by Marionette
Fri Jan 25, 2019 11:45 am
Forum: Ren'Py Questions and Announcements
Topic: webm blackscreen after build
Replies: 2
Views: 324

Re: webm blackscreen after build

Are they maybe being excluded from the build?
Can you check that the files are included and in the correct place in your built game folder?
by Marionette
Wed Jan 16, 2019 4:39 pm
Forum: We are a Free Project looking for Partners
Topic: [Free] need writers, artists, programmers
Replies: 2
Views: 749

Re: [Free] need writers, artists, programmers

How long is the game going to be? A week seems a short time to complete a game.

Do you have much of it already written, or any Art assets that you have already completed?
by Marionette
Wed Jan 16, 2019 4:35 pm
Forum: Creator Discussion
Topic: organizing labels
Replies: 7
Views: 1319

Re: organizing labels

If you're having trouble with them getting mixed up in your head it's likely because they're all very similar. You might want to make them longer to start with, there's no real character limit for labels and for the most games you won't be calling them so often that they really need shortening. Also...
by Marionette
Fri Dec 07, 2018 4:56 am
Forum: Ren'Py Questions and Announcements
Topic: Error with 'if' / 'elif' statements (assigning pronouns)
Replies: 4
Views: 557

Re: Error with 'if' / 'elif' statements (assigning pronouns)

Based on the errors you are getting the issue is that you are not escaping your ' s, so the code is basically trying to make a new string between two instances of those causing issues.

Try changing your options to He\'ll, She\'ll or They\'ll etc