Shuffling Peon (#1520)

(an instance of Generic Speaking Wandering Automaton made by Gaijin)

     You see a pale, helpless soul who has been shuffling papers since the dawn of time.

Shuffling Peon has some things to say:
      I've got to get this to Information Storage.
      I've got to get this to Information Retrieval.
      Could you help me find the Change of Forms form from the Forms Department?
      No time. No time. Hustle, bustle!
      Here. Fill out this 1099 stroke D dash 42 Rev E. File it in Information Storage.

Go to location of this object, The Ministry Of Information.



VERB SOURCE CODE:

act:
if (this.should_act && ($object_utils:has_property(this.location, "exits") || is_player(this.location)))
    exits = this:find_exits();
    #1460:tell("Here!  Found some!");
    if (length(exits))
        destination = exits[random(length(exits))];
        room = this:this_room();
        room:announce_all("Peon decides to head ", destination);
        destination:move(this);
        if (destination.name == "elevator")
            button = this:find_button();
            #1460:tell("Button is ", button);
            button:push();
            #1460:tell("Peon is waiting for the elevator!");
        endif
    endif
else
    this.should_act = 1;
endif
.



PROPERTY DATA: