Here's something for the maintenance mode functionality.. I didn't figure out how to check group id in the character server, w/c is why I'm using account id..
Index: char.c
===================================================================
--- char.c (revision 16496)
+++ char.c (working copy)
@@ -3524,7 +3526,14 @@
WFIFOSET(fd,3);
break;
}
-
+ if(char_maintenance == 1 && sd && sd->account_id != 2000000)
+ {
+ WFIFOHEAD(fd,3);
+ WFIFOW(fd,0) = 0x6c;
+ WFIFOB(fd,2) = 0;// rejected from server
+ WFIFOSET(fd,3);
+ break;
+ }
// search authentification
node = (struct auth_node*)idb_get(auth_db, account_id);
if( node != NULL &&
to add more account ids,edit this line
if(char_maintenance == 1 && sd && sd->account_id != 2000000)
make it like this
if(char_maintenance == 1 && sd && (sd->account_id != 2000000 || sd->account_id != 2000001 || sd->account_id != 2000002 || sd->account_id != 2000003))
To activate maintenance mode, open conf/char_athena.conf
set it to 1
// Type of server.
// No functional side effects at the moment.
// Displayed next to the server name in the client.
// 0=normal, 1=maintenance, 2=over 18, 3=paying, 4=P2P
char_maintenance: 1
What Eurydice said is easier, what I've provided is mainly for server cosmetics.