Method code for $builder._ar__move()

[Turn on line numbering]
arg args, opts, request;
var group;

while (1) {
    .tell("** Changing AR Group for AR #" + request.id());
    catch ~abort
        group = (> ._ar__get_group(args, opts, 'notall) <);
    if (!group)
        return "** Not changing group.";
    if (group == request.group())
        return "** #" + request.id() + " is already in " + request.group();
    request.change_group(group);
    return "** " + request.id() + " is now in the " + group.name() + " group";
}

// $#Edited: 24 Jan 02 21:17 $brandon

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark