You can always check with the source: atcommandIs there a way to reload this config file?
/*==========================================* @reloadatcommand - reloads conf/atcommand.conf conf/groups.conf*------------------------------------------*/void atcommand_doload();ACMD(reloadatcommand) { config_t run_test; if (conf_read_file(&run_test, "conf/groups.conf")) { clif->message(fd, msg_txt(1036)); // Error reading groups.conf, reload failed. return false; } config_destroy(&run_test); if (conf_read_file(&run_test, iMap->ATCOMMAND_CONF_FILENAME)) { clif->message(fd, msg_txt(1037)); // Error reading atcommand.conf, reload failed. return false; } config_destroy(&run_test); atcommand_doload(); pc_groups_reload(); clif->message(fd, msg_txt(254)); return true;}
We use essential cookies to make this site work, and optional cookies to enhance your experience.