init()
{
  ::init();
  add_action("cmd_read", "read");
}

cmd_read(str)
{
  if(!str)
  {
    notify_fail("What would you like to read?\n");
    return 0;
  }
  if(str != "scrolls")
  {
    notify_fail("You can only read the scrolls.\n");
    return 0;
  }
  write("The scrolls are written in a language that you\n"+
        "do not understand.\n");
  return 1;
}
