Login while Maintenance

03/26/2018 09:17 MaP250#1
i have a questions how to allow GM's to login to the game while the player cannot login

is there a way to do that

/command? or in mysql ?!

please HELP!
03/26/2018 11:16 Fydes#2
set all not gm accounts to blocked or something like that?
03/26/2018 11:27 DasSchwarzeT#3
Code:
UPDATE account.account SET status="SHUTDOWN" where status = "OK";
After the maintenance

Code:
UPDATE account.account SET status="OK" where status = "SHUTDOWN";