Automap as default choice?

Posted by Oblisgr on Mon 17 Aug 2020 01:16 PM — 3 posts, 14,375 views.

#0
Hi,
is there any way i can set the automap in smaug 1.9.3.c as the default choice for new players?

I mean as they have used config +automap from the start.

Thanks
#1
Hey there Oblisgr,

If you want a new player to have an xSET_BIT when creating, you have to add the line within comm.c.

around line 2500-2600, you will find

/*
       * Added by Narn.  Start new characters with autoexit and autgold
       * already turned on.  Very few people don't use those.
       */
      xSET_BIT( ch->act, PLR_AUTOGOLD );
      xSET_BIT( ch->act, PLR_AUTOEXIT );


Just add
xSET_BIT( ch->act, PLR_AUTOMAP );

and you should be golden!
#2
Thanks!
That helped a lot