// TOWN SCRIPT
//    Town 6: Underground Fort

// This is the special encounter script for this town.
// The states INIT_STATE, EXIT_STATE, and START_STATE have
// meanings that are described in the documenation. States you write
// yourself should be numbered from 10-100.

begintownscript;

variables;

int i,j,k,r1,choice;


body;

beginstate INIT_STATE;
	set_name(8,"Renn");

break;

beginstate EXIT_STATE;
break;

beginstate START_STATE;
break;

beginstate 10;	
	message_dialog("It takes a lot of effort, but you manage to slowly turn the wheel. As you turn it, you hear a loud, clanging noise from the gates to the west.","");
	set_terrain(27,5,32);
	set_terrain(28,5,32);	
break;

