From the NannyMUD documentation

LAST CHANGE

2001-08-12

TOPIC

NAME

        ihelp_functions - Useful functions in ihelp

LOCATION

	/obj/ihelp

DESCRIPTION

	There are several functions that can be called in ihelp to add
	and remove help topics.

	
	int add_topic( string where, mixed name , string file )
	Add help for  in the  position in the ihelp tree,
	and point to  as helpfile.


	void add_help(string path,string where)
	Build help using a directory and its subdirs as the structure in the
	ihelp system.
	path: the directory where the new help files are placed.
	where: the location the help should have in the ihelp structure. Note
	that you must have a file called INDEX in this dir.

	Example:
	add_help("/guilds/khorne/help/", "khorne");


	int remove_topic(string topic)
	Remove the help for the issue topic,  is given as a
	ihelp-search path.


	void remove_help(string path)
	Remove help from a directory. It is the reverse of add_help.
	path: the directory where the new help files are.
	where: the location in the help structure.	

	Example:
	remove_help("/guilds/khorne/help/", "khorne");