ldmud-3.3.719/
ldmud-3.3.719/doc/
ldmud-3.3.719/doc/efun.de/
ldmud-3.3.719/doc/efun/
ldmud-3.3.719/doc/man/
ldmud-3.3.719/doc/other/
ldmud-3.3.719/mud/
ldmud-3.3.719/mud/heaven7/
ldmud-3.3.719/mud/lp-245/
ldmud-3.3.719/mud/lp-245/banish/
ldmud-3.3.719/mud/lp-245/doc/
ldmud-3.3.719/mud/lp-245/doc/examples/
ldmud-3.3.719/mud/lp-245/doc/sefun/
ldmud-3.3.719/mud/lp-245/log/
ldmud-3.3.719/mud/lp-245/obj/Go/
ldmud-3.3.719/mud/lp-245/players/lars/
ldmud-3.3.719/mud/lp-245/room/death/
ldmud-3.3.719/mud/lp-245/room/maze1/
ldmud-3.3.719/mud/lp-245/room/sub/
ldmud-3.3.719/mud/lp-245/secure/
ldmud-3.3.719/mud/sticklib/
ldmud-3.3.719/mud/sticklib/src/
ldmud-3.3.719/mudlib/deprecated/
ldmud-3.3.719/mudlib/uni-crasher/
ldmud-3.3.719/pkg/
ldmud-3.3.719/pkg/debugger/
ldmud-3.3.719/pkg/diff/
ldmud-3.3.719/pkg/misc/
ldmud-3.3.719/src/
ldmud-3.3.719/src/autoconf/
ldmud-3.3.719/src/ptmalloc/
ldmud-3.3.719/src/util/
ldmud-3.3.719/src/util/erq/
ldmud-3.3.719/src/util/indent/hosts/next/
ldmud-3.3.719/src/util/xerq/
ldmud-3.3.719/src/util/xerq/lpc/
ldmud-3.3.719/src/util/xerq/lpc/www/
ldmud-3.3.719/test/generic/
ldmud-3.3.719/test/inc/
ldmud-3.3.719/test/t-0000398/
ldmud-3.3.719/test/t-0000548/
ldmud-3.3.719/test/t-030925/
ldmud-3.3.719/test/t-040413/
ldmud-3.3.719/test/t-041124/
ldmud-3.3.719/test/t-language/
void reset(int started)
{
    if (!started)
	set_light(1);
}

void init()
{
    add_action("north", "north");
    add_action("south", "south");
    add_action("east", "east");
    add_action("west", "west");
}

string short()
{
    return "The ruins of Arcanarton's tower";
}

void long()
{
    write("You are standing among the ruins of the tower of the evil mage, Arcanarton.\n" +
	  "Legend has it that the tower was destroyed in the mage wars about five hundred\n" +
	  "years ago, when all of the mages of Lustria combined their forces and attacked\n" +
	  "Arcanarton. A great many of them were killed, but they succeeded in destroying\n" +
	  "the evil mage's tower. His Body was never found, and rumours still abound\n" +
	  "that Arcanarton had become a Lich and has come back to haunt this isle.\n" +
	  "The powerful aura of magical combat still hangs in the air here.\n" +
	  "Lumps of half melted rock lay strewn about, and there is very little of\n" +
          "the original structure left standing.\n" +
	  "\nTo the north of the ruins, the hill slopes down to the bridge to the mainland.\n" +
	  "To the east stands a crumbling monument. To the west, an old, disused well.\n" +
	  "To the south of the ruins, the hill slopes away, down to the edge of Crescent Lake.\n");
}

int north()
{
    this_player()->move_player("north#room/south/sislnd13");
    return 1;
}

int south()
{
    this_player()->move_player("north#room/south/sislnd16");
    return 1;
}

int east()
{
    this_player()->move_player("north#room/south/sislnd15");
    return 1;
}

int west()
{
    this_player()->move_player("west#room/south/sislnd17");
    return 1;
}