From: <[EMAIL PROTECTED]>
> I want to remove customization 
> from startup on my MUD. I just want it to let your 
> choose and alignment, than a weapon, forgetting about 
> customization. I know this can be done simply by 
> modifing nanny, but I haven't found out how to do it 
> yet. 

    Just before:

     write_to_buffer(d,"Do you wish to customize this character?\n\r",0);

    add:

     group_add( ch, class_table[ ch->class ].default_group, TRUE );
     write_to_buffer( d, "\n\r", 2 );
     write_to_buffer( d,
       "Please pick a weapon from the following choices:\n\r", 0 );
     buf[ 0 ] = '\0';
     
     for ( i = 0; weapon_table[ i ].name != NULL; i++ )
        if ( ch->pcdata->learned[ *weapon_table[ i ].gsn ] > 0 )
          {
          strcat( buf, weapon_table[ i ].name );
          strcat( buf, " " );
          }

     strcat( buf,"\n\rYour choice? " );
     write_to_buffer( d, buf, 0 );
     d->connected = CON_PICK_WEAPON;
     break;

    Then comment out the line below:

     write_to_buffer(d,"Do you wish to customize this character?\n\r",0);

    through the line just ABOVE this line:

     case CON_PICK_WEAPON:

    This includes all of the "case CON_DEFAULT_CHOICE:" section.  

    Then comment out the "case CON_GEN_GROUPS:" section.


  |\      _,,,---,,_
  /,`.-'`'    -.  ;-;;,_
 |,4-  ) )-,_..;\ (  `'-'
'---''(_/--'  `-'\_)
BluSky is often lurking at Afterlife MUD:
[EMAIL PROTECTED] * http://www.afterlife.mudservices.com
------------------> telnet://afterlife.mudservices.com:5000> 
 



Reply via email to