targetAccess = Integer.parseInt(params[1]);
} catch(NumberFormatException e) {
throw new InvalidUseException();
}
Account subjectAccount = CommandEventHandler.findOrCreateAccount(source, user, commanderAccount, params[0], targetAccess);
CommandEventHandler.setAccountAccess(user, commanderAccount, subjectAccount, targetAccess, superUser, whisperBack);
} catch(InvalidUseException e) {
user.sendChat("Use: %trigger%add <account> <access>", whisperBack);
}
}