pm.registerEvent(Event.Type.ENTITY_DAMAGE, entityListener,
Priority.Lowest, this);
pm.registerEvent(Event.Type.ENTITY_TARGET, entityListener,
Priority.Lowest, this);
this.getCommand("authme").setExecutor(new AdminCommand(database));
this.getCommand("register").setExecutor(new RegisterCommand(database));
this.getCommand("login").setExecutor(new LoginCommand(database));
this.getCommand("changepassword").setExecutor(new ChangePasswordCommand(database));
this.getCommand("logout").setExecutor(new LogoutCommand(this,database));
this.getCommand("unregister").setExecutor(new UnregisterCommand(this, database));