Dusty Posted August 22, 2014 Posted August 22, 2014 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; }
eezstreet Posted August 22, 2014 Posted August 22, 2014 It's for sound effects on players. Nothing really interesting here, it's just all the possible values for the "sex" cvar.
Grab Posted August 22, 2014 Posted August 22, 2014 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
Dusty Posted August 23, 2014 Author Posted August 23, 2014 Two values for 'neutral' (neither male or female?) and 3 for 'shemale'... Go home Raven, ur drunk
Cerez Posted August 23, 2014 Posted August 23, 2014 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…
Futuza Posted August 23, 2014 Posted August 23, 2014 Coders can't have fun? Neutral - Doesn't reproduce at all.Asexual - Like a plant, reproduces via cutting off a clipping.
Cerez Posted August 23, 2014 Posted August 23, 2014 So... they sound different because…? I love this find, @. These are those rare personality gems you come across in countless lines of monotone code.
Futuza Posted August 23, 2014 Posted August 23, 2014 So... they sound different because…? Asexual organisms will hit on themselves, neutral have no flirting skills however since they don't reproduce.
Cerez Posted August 23, 2014 Posted August 23, 2014 Soo… you're saying the asexual creatures will talk and flirt with themselves much more often, hence the vocal distinction? I guess that makes sense… in a strange kind of way… ... Kyle: "Hey babe, you look gorgeous. Let's make out." Jan: "What?" o.O Kyle starts hugging himself. Jan: "Ookay…"
Futuza Posted August 23, 2014 Posted August 23, 2014 And Jan is stunned at Kyle's comments because she's neutral and can't even? Cerez likes this
Cerez Posted August 24, 2014 Posted August 24, 2014 Anyone get the feeling this topic is getting rather peculiar? "Curious and curiouser…"
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now