try {
User user = ServiceManager.getServices().getUserbase().getUser(victim.getKey());
long credits = 0;
if (!user.hasLeech()) {
credits = victim.getValue() * multiplier;
user.takeCredits(credits);
}
nukees += user.getUsername() + '/' + user.getPrimaryGroup() + '/' + credits + '|';
} catch (NoSuchUserException e) {
// just skip this user if it doesn't exist anymore
}