Search found 6 matches

by m_evergreen
Mon Apr 25, 2011 12:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding Color to Player Input Character Name
Replies: 2
Views: 616

Re: Adding Color to Player Input Character Name

Yes! That is just what I've been looking for. Thank you, I'm off to give it a try.

Edit: I tried it and it worked, one problem down. Thanks again.
by m_evergreen
Mon Apr 25, 2011 10:12 am
Forum: Ren'Py Questions and Announcements
Topic: Adding Color to Player Input Character Name
Replies: 2
Views: 616

Adding Color to Player Input Character Name

I'm sure this is explained somewhere but I can't find it. This, and several variations of it, does not work: $ me = renpy.input("My name is ") $ me = me.strip() if me == "": jump start define m = Character('%(me)s', color="#f66d6d") What I'm trying to do is let the play...
by m_evergreen
Thu Apr 21, 2011 2:31 pm
Forum: Completed Games
Topic: [NaNoRenO '11] Anton's Vacation {Episode Zero}
Replies: 30
Views: 22475

Re: [NaNoRenO '11] Anton's Vacation {Episode Zero}

I played it and I was sad to see it come to an end. I hope to play more when it's available. :)
by m_evergreen
Thu Jun 21, 2007 2:49 pm
Forum: Completed Games
Topic: Starlit Sky
Replies: 46
Views: 31995

Great Story!

I downloaded, I read, I loved! Just thought I ought to let you know. Such a wonderful, emotional tale!

-M
by m_evergreen
Tue Jun 05, 2007 11:23 am
Forum: Creator Discussion
Topic: How do I track points?
Replies: 5
Views: 1492

Thank you PyTom, I thought I'd indented it but my spaces disappeared when I posted. But I've forgotten to indent properly several times since starting to use Ren'Py, and the colons...

Thank you too Guest, that's great to know! I'm pretty sure I'll need your other code as well.

-M
by m_evergreen
Tue Jun 05, 2007 10:21 am
Forum: Creator Discussion
Topic: How do I track points?
Replies: 5
Views: 1492

How do I track points?

If I want to keep track of something in my game as a number and add and subtract from it what is the proper method? Would this be right? $ dex = 10 menu exercise: "dance": $ dex = dex + 3 "walk": $ dex = dex + 1 "sit and watch people": $ dex = dex - 2 Would that set dex...