Search found 22 matches

by cloverfirefly
Mon Feb 16, 2009 9:18 pm
Forum: Ideas
Topic: The Curious Alliance (light fantasy game) COMPLETED!
Replies: 20
Views: 3281

The Curious Alliance (light fantasy game) COMPLETED!

This game has been finished! Please visit the thread in the finished games section in order to download. Thank you for all of your support! http://i9.photobucket.com/albums/a63/cloverfirefly/curious_alliance/group_01.png The Curious Alliance Story Since receiving his Summoner's amulet, Albert has se...
by cloverfirefly
Tue Feb 10, 2009 3:08 am
Forum: Ren'Py Questions and Announcements
Topic: changing default behavior of say label
Replies: 2
Views: 452

Re: changing default behavior of say label

Thanks, JQuartz, that's what I was looking for.
by cloverfirefly
Mon Feb 09, 2009 1:27 am
Forum: Ren'Py Questions and Announcements
Topic: changing default behavior of say label
Replies: 2
Views: 452

changing default behavior of say label

This is (hopefully) a question with a simple answer. How do I change the default behavior of the text indicating who is speaking? (I believe this is called the say label, do correct me if I'm wrong so I can appropriately title my post.) I would like to unbold it because the font I am using is a bit ...
by cloverfirefly
Thu Aug 14, 2008 2:34 am
Forum: Ideas
Topic: Caramel Mokaccino (hiatused too =_=)
Replies: 37
Views: 7870

Re: Caramel Mokaccino

I'm looking forward to this one. I hope it comes to fruition! I'm excited by both the prospect of playing as a girl and the ability to pursue girls as well.
by cloverfirefly
Thu Aug 14, 2008 2:30 am
Forum: Ideas
Topic: Wood Witch
Replies: 27
Views: 3105

Re: Wood Witch

I think this looks really promising! I played around a little with it. :) Are you playing as the witch girl or is this more of a raising sim? A thought on making a "customizable" witch: You could possibly make it so that you can choose from a few witch archetypes, based on the attributes. For exampl...
by cloverfirefly
Sat Jul 19, 2008 3:45 am
Forum: Ren'Py Questions and Announcements
Topic: How to do Comparisons Between Variables?
Replies: 20
Views: 2821

Re: How to do Comparisons Between Variables?

Thanks, PyTom. Problem solved. :) For anyone following along, here is the fixed version of the sample game I posted earlier. label start: $ mary_score = 2 $ eileen_score = 1 $ lucy_score = 3 "Eileen's score is %(eileen_score)s." "Lucy's score is %(lucy_score)s." "Mary's score is %(mary_score)s." pyt...
by cloverfirefly
Fri Jul 18, 2008 2:48 am
Forum: Ren'Py Questions and Announcements
Topic: How to do Comparisons Between Variables?
Replies: 20
Views: 2821

Re: How to do Comparisons Between Variables?

(Hi, first post.) I tried PyTom's sample code to make a simple "game" and the following is my code. label start: $ mary_score = 2 $ eileen_score = 1 $ lucy_score = 3 "Eileen's score is %(eileen_score)s." "Lucy's score is %(lucy_score)s." "Mary's score is %(mary_score)s." python: scores = [ (eileen_s...