Lemma Soft Forums

Supporting creators of visual novels and story-based games since 2003.


Visit our new games list, blog aggregator, IRC, and wiki.
Activation problem? Email [email protected]
It is currently Sat May 25, 2013 6:43 am

All times are UTC - 5 hours [ DST ]


Forum rules


Ask questions about one topic per thread, and use a descriptive subject. "NotImplemented error in script.rpy" is a good subject, "Tom's problems" is not. Remember to include all of traceback.txt or error.txt when reporting a problem, as well as the relevant lines of script. Use the [code] tag to format scripts.



Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Out of Letters
PostPosted: Wed Jan 02, 2008 3:16 am 
Miko-Class Veteran
User avatar

Joined: Wed Jan 02, 2008 3:12 am
Posts: 607
Let me know if I'm in the wrong forum. Anyway,

I'm out of Letters like this:
$ a = Character('', color="#c8ffc8")
$ b = Character('', color="#c8c8ff")
$ c= Character('', color="#c8ffc8")
$ d = Character('', color="#c8ffc8")
$ e = Character('', color="#c8c8ff")
$ f = Character('', color="#c8ffc8")

When I get to z = Character, how do I add more characters?

_________________
Mujinchitai
viewtopic.php?f=16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai


Top
 Profile Send private message  
 
 Post subject: Re: Out of Letters
PostPosted: Wed Jan 02, 2008 5:38 am 
Support Hero
User avatar

Joined: Sat Jun 17, 2006 7:28 pm
Posts: 3767
Cybeat wrote:
Let me know if I'm in the wrong forum.


This looks like a Ren'Py question to me, and thus should probably be in the Ren'Py subforum, since Ren'Py and Lemmasoft are separate.

Cybeat wrote:
When I get to z = Character, how do I add more characters?


Anyway, presuming that it is - the answer is that you're not limited to a single letter for character names - you can call them more or less anything you like, so long as it doesn't have spaces in. So one strategy would be to carry on in the same fashion:

Code:
$ z = Character('', color="#c8ffc8")
$ aa = Character('', color="#c8c8ff")
$ ab = Character('', color="#c8ffc8")
...


but probably a better one, in the long run, would be to give them descriptive names in the first place so you can readily tell them apart:

Code:
$ eva = Character('', color="#c8ffc8")
$ joshua = Character('', color="#c8c8ff")
$ magdalen = Character('', color="#c8ffc8")
...


even if those are just colours:

Code:
$ grey-green = Character('', color="#c8ffc8")
$ grey-blue = Character('', color="#c8c8ff")
$ grey-red = Character('', color="#ffc8c8")
...




The reason a lot of people will use a single character - or two characters - is just that you're going to be typing them a lot when you write dialogue for those characters, so it's convenient to abbreviate it to save yourself typing. So instead of full names, you might still be better off with something like:

Code:
$ ev = Character('', color="#c8ffc8")
$ jo = Character('', color="#c8c8ff")
$ ma = Character('', color="#c8ffc8")
...


or

Code:
$ eva = Character('', color="#c8ffc8")
$ josh = Character('', color="#c8c8ff")
$ mag = Character('', color="#c8ffc8")
...


or something.

_________________
Image


Top
 Profile Send private message  
 
 Post subject: Re: Out of Letters
PostPosted: Wed Jan 02, 2008 3:51 pm 
Miko-Class Veteran
User avatar

Joined: Wed Jan 02, 2008 3:12 am
Posts: 607
Thanks for the help. BTW, what's Lemmasoft?

_________________
Mujinchitai
viewtopic.php?f=16&t=3360
Current Status: artist of R.E.M: Reality's Dream and musician, programmer, and writer of Mujinchitai


Top
 Profile Send private message  
 
 Post subject: Re: Out of Letters
PostPosted: Wed Jan 02, 2008 6:44 pm 
Support Hero
User avatar

Joined: Sat Jun 17, 2006 7:28 pm
Posts: 3767
Cybeat wrote:
Thanks for the help. BTW, what's Lemmasoft?


Lemma Soft is Blue Lemma's game development name/site/identity; this forum, as the tagline goes, is for support issues with Lemma Soft titles.

Blue Lemma graciously gives over part of his forum for Ren'Py and for general game-development discussion, which is why you'll have been directed here for Ren'Py help. ;-)

_________________
Image


Top
 Profile Send private message  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: Google [Bot]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Protected by Anti-Spam ACP
Powered by phpBB® Forum Software © phpBB Group