I am trying to install the New_auth snippet that will allow players to continue to level 2 without been immediately authed (ie if there is no immortal on)
Went through the instructions 2x and double checked all the changes that I need to make - yet I get the same compile errors every time - this is a snip from the compile error, then the lines of offending code:
Compile Error: (there are many more lines with the same undefined ref)
act_comm.o: In function `do_quit':
/usr/local/mud/dist_newauth/src/act_comm.c:1946: undefined reference to `remove_from_auth'
/usr/local/mud/dist_newauth/src/act_comm.c:1949: undefined reference to `get_auth_name'
Offending Code:
/* new auth */
if ( NEW_AUTH( ch ) )
remove_from_auth( ch->name );
else
{
old_auth = get_auth_name( ch->name );
if( old_auth != NULL
&& (old_auth->state == AUTH_ONLINE || old_auth->state == AUTH_LINK_DEAD) )
old_auth->state = AUTH_OFFLINE; /* Logging off */
}
RUnning Smaug 1.4a
Redhat 7.2
PC.
Thank you
KIlroy