can't save until level 2???

Posted by Raven23 on Thu 14 Feb 2002 07:42 AM — 3 posts, 15,146 views.

#0
can you change it to where you can save when you're level 1? i want to change it but not have to recompile the thing to do so!
Australia Forum Administrator #1
You would have to recompile to do that. In act_comm.c, at around line 2211 is the code:


if ( ch->level < 2 ) {
  send_to_char_color( "&BYou must be at least second level to save.\n\r", ch );
  return;
  }


You would have to delete that and recompile.
Australia #2
Or better still, create a new variable which it reads from the configuration, and compare it to that instead. That way, if you change your mind later you don't need another recompile.