在游戏连接中禁用并允许角色创建 azerothcore

Disable in game connection and allow character creation azerothcore

AzerothCore 中,我如何才能只允许创建角色并禁用游戏内角色连接?

如果您不想触及代码,您可以实施一个 mysql 触发器,只要在 characters table 中创建一个新字符,就会在其中插入一行character_banned table 和 active = 1

http://www.azerothcore.org/wiki/character_banned

示例:

delimiter #
create trigger ban_after_ins after insert on characters
for each row
begin
  insert into character_banned values (new.guid, 0, 0 , 'system', 'custom', 1);
end#