// May's Ed Tutorial for Wizards
// brought to FF on 5 Feb 2001
// brought to Riftwar and modified to work here 7/02/01 - Shaydz
#include "defs.h";
inherit ROOM_OBJ;
void setup(){
set_light(80);
set_short("Ed Tutorial 9");
set_long(" The search command lets you look for "
"the specified string and it looks like </TEXT>. "
"This command will find the next occurance of TEXT "
"in your code. Remember this command is case sensitive "
"like all the other commands in ED. If you want to see all "
"the occurances of TEXT in your code, you can find them by "
"typing <g/TEXT/p> meaning globally find TEXT and print it "
"out on the screen.\n");
add_exit("south",EDTUTOR "edtutor08","path");
add_exit("north",EDTUTOR "edtutor10","path");
}