affect*
--------

polymorph.c:235:   if( !xIS_EMPTY( morph->affected_by ) )
polymorph.c:236:      fprintf( fp, "Affected            %s\n", print_bitvector(            &morph->affected_by ) );
polymorph.c:241:   if( !xIS_EMPTY( morph->no_affected_by ) )
polymorph.c:242:      fprintf( fp, "NoAffected          %s\n", print_bitvector(            &morph->no_affected_by ) );
polymorph.c:483:      send_to_char( "  ac, affected, cha, class, con, damroll, d           ayto,\r\n", ch );
polymorph.c:487:      send_to_char( "  morphother, morphself, move, moveused, na           me, noaffected,\r\n", ch );
polymorph.c:981:   else if( !str_cmp( arg2, "affected" ) || !str_cmp( arg2, "aff           " ) )
polymorph.c:985:         send_to_char( "Usage: morphset <morph> affected <flag>            [flag]...\r\n", ch );
polymorph.c:995:            xTOGGLE_BIT( morph->affected_by, value );
polymorph.c:998:   else if( !str_cmp( arg2, "noaffected" ) || !str_cmp( arg2, "n           aff" ) )
polymorph.c:1002:         send_to_char( "Usage: morphset <morph> noaffected <fla           g> [flag]...\r\n", ch );
polymorph.c:1012:            xTOGGLE_BIT( morph->no_affected_by, value );
polymorph.c:1246:      pager_printf( ch, "  &cAffected by: &C%s\r\n", affect_bit           _name( &morph->affected_by ) );
polymorph.c:1252:      send_to_pager( "                     &BPrevented affects            to the Player\r\n", ch );
polymorph.c:1254:      pager_printf( ch, "  &cNot affected by: &C%s\r\n", affect           _bit_name( &morph->no_affected_by ) );
polymorph.c:1341:   ch_morph->affected_by = morph->affected_by;
polymorph.c:1345:   ch_morph->no_affected_by = morph->no_affected_by;
polymorph.c:1403:   xSET_BITS( ch->affected_by, morph->affected_by );
polymorph.c:1407:   xREMOVE_BITS( ch->affected_by, morph->no_affected_by );
polymorph.c:1517: * This makes sure to take all the affects given to the player            by the morph
polymorph.c:1521: * affects off, as the morph may not exist when they log back i           n.  This
polymorph.c:1556:   xREMOVE_BITS( ch->affected_by, morph->affected_by );
polymorph.c:1680:   xCLEAR_BITS( morph->affected_by );
polymorph.c:1693:   xCLEAR_BITS( morph->no_affected_by );
polymorph.c:1761:            KEY( "Affected", morph->affected_by, fread_bitvecto           r( fp ) );
polymorph.c:1826:            KEY( "NoAffected", morph->no_affected_by, fread_bit           vector( fp ) );
polymorph.c:2004:   morph->affected_by = temp->affected_by;
polymorph.c:2018:   morph->no_affected_by = temp->no_affected_by;
polymorph.c:2166:   if( !xIS_EMPTY( morph->affected_by ) )
polymorph.c:2167:      fprintf( fp, "Affect          %s\n", print_bitvector( &mo           rph->affected_by ) );
polymorph.c:2174:   if( !xIS_EMPTY( morph->no_affected_by ) )
polymorph.c:2175:      fprintf( fp, "NoAffect        %s\n", print_bitvector( &mo           rph->no_affected_by ) );
polymorph.c:2233:   xCLEAR_BITS( morph->affected_by );
polymorph.c:2234:   xCLEAR_BITS( morph->no_affected_by );
polymorph.c:2282:            KEY( "Affect", morph->affected_by, fread_bitvector(            fp ) );
polymorph.c:2322:            KEY( "NoAffect", morph->no_affected_by, fread_bitve           ctor( fp ) );


AFF*
------

None