Search found 8 matches

by notanautomaton
Thu Feb 23, 2017 5:54 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make a character sheet in Ren'py
Replies: 2
Views: 1250

How to make a character sheet in Ren'py

I'd like to add rpg elements to my game, and part of that would be a character sheet that I can refer to in the game code and the player can refer to in the game. How would I go about setting this up?
by notanautomaton
Wed Feb 22, 2017 4:21 pm
Forum: Ideas
Topic: Panopticon - A game of transhuman conspiracy (MtAs)
Replies: 1
Views: 639

Re: Panopticon - A game of transhuman conspiracy (MtAs)

The current cast list is as follows: Jamelia Belltower, Veteran Agent. She's a veteran spy, the Da Vinci of espionage. If Da Vinci were a 60 year old Arabic woman. She looks 25 due to anti-aging treatments. Henriette Langley, Assault Walker Pilot. She's the heavy guns, bringing in a mecha that lets ...
by notanautomaton
Wed Feb 22, 2017 1:16 pm
Forum: Ideas
Topic: Panopticon - A game of transhuman conspiracy (MtAs)
Replies: 1
Views: 639

Panopticon - A game of transhuman conspiracy (MtAs)

This game is based on Panopticon Quest https://forums.sufficientvelocity.com/threads/panopticon-a-game-of-posthumans-perniciousness-paranoia-politics-and-plasmaguns.47/ It's set in the Mage the Ascension universe, making it the lowest form of fiction - A twice recursive fanfiction visual novel. But ...
by notanautomaton
Wed Feb 22, 2017 1:43 am
Forum: Ren'Py Questions and Announcements
Topic: indentation mismatch when attempting to have text box+menu
Replies: 2
Views: 484

indentation mismatch when attempting to have text box+menu

Exactly what it says in the title. It says 'indentation mismatch' and I'm trying to have a text box and a menu. Here's what the code looks like:

Code: Select all

    menu:
            "What Convention are you?"
        "NWO":
            jump nwo
        
label nwo:
by notanautomaton
Wed Feb 22, 2017 1:30 am
Forum: Development of Ren'Py
Topic: Choice menuitem expects a non-empty block.
Replies: 4
Views: 1173

Re: Choice menuitem expects a non-empty block.

Okay, I figured it out. My indentation was off. jump jameliabelltower should have had one more indent.
by notanautomaton
Wed Feb 22, 2017 12:55 am
Forum: Development of Ren'Py
Topic: Choice menuitem expects a non-empty block.
Replies: 4
Views: 1173

Re: Choice menuitem expects a non-empty block.

Scribbles wrote:use the [.code] and [./code] (without the "."s)
Thanks. I'll probably be asking a lot of these, sorry for the trouble.
by notanautomaton
Wed Feb 22, 2017 12:43 am
Forum: Development of Ren'Py
Topic: Choice menuitem expects a non-empty block.
Replies: 4
Views: 1173

Choice menuitem expects a non-empty block.

I'm pretty new to coding anything, and I got the title text when trying to run my game. My current script looks like this: menu: "Jamelia Belltower, Veteran Agent": jump jameliabelltower label jameliabelltower: (Edit: It has the correct indentation, but it's not showing up on the forum and...