Jump to content

Erm, Raven?


Recommended Posts

Posted

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;
                }
Posted

Sex is used in voice chat(siege for example). It's used in model 'sounds' file. That let female models use female voice for voice chat and male for male.

eezstreet likes this
Posted

Two values for 'neutral' (neither male or female?) and 3 for 'shemale'...

 

Go home Raven, ur drunk

Posted

Also, can someone explain to me the difference between "NEUTRAL" and "ASEXUAL" -- because I really can't see how that makes a difference in terms of vocal production… ;)

Posted

Coders can't have fun?  

 

Neutral - Doesn't reproduce at all.

Asexual - Like a plant, reproduces via cutting off a clipping.

JKG Developer

Posted

So... they sound different because…?  :lol:

 

I love this find, @. ^_^

 

These are those rare personality gems you come across in countless lines of monotone code.

Posted

So... they sound different because…?  :lol:

Asexual organisms will hit on themselves, neutral have no flirting skills however since they don't reproduce.

JKG Developer

Posted

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…"

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...