Jump to content

Erm, Raven?


Recommended Posts

In JA's code:

//sex
                if ( !Q_stricmp( token, "sex" ) )
                {
                    if ( COM_ParseString( &p, &value ) )
                    {
                        SkipRestOfLine( &p );
                        continue;
                    }
                    if ( value[0] == 'm' )
                    {//male
                        stats->sex = SEX_MALE;
                    }
                    else if ( value[0] == 'n' )
                    {//neutral
                        stats->sex = SEX_NEUTRAL;
                    }
                    else if ( value[0] == 'a' )
                    {//asexual?
                        stats->sex = SEX_NEUTRAL;
                    }
                    else if ( value[0] == 'f' )
                    {//female
                        stats->sex = SEX_FEMALE;
                    }
                    else if ( value[0] == 's' )
                    {//shemale?
                        stats->sex = SEX_SHEMALE;
                    }
                    else if ( value[0] == 'h' )
                    {//hermaphrodite?
                        stats->sex = SEX_SHEMALE;
                    }
                    else if ( value[0] == 't' )
                    {//transsexual/transvestite?
                        stats->sex = SEX_SHEMALE;
                    }
                    continue;
                }
Link to comment

Soo… you're saying the asexual creatures will talk and flirt with themselves much more often, hence the vocal distinction? :P

 

I guess that makes sense… in a strange kind of way…  :lol:  :teehee:

 

...

 

Kyle: "Hey babe, you look gorgeous. Let's make out."

 

Jan: "What?" o.O

 

Kyle starts hugging himself.

 

Jan: "Ookay…"

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...