        设定在 ROOM 中定时出现的物件

可为 NPC 或者其它的物件。

物件需继承 F_DTIME：

inherit F_DTIME;


设置函数 set_appear_time(mapping t);

mapping t 的格式：([ 时间段 : 时间段 ])

时间段字符串的格式：
	"月,日,秒"

时间设置格式：
 mapping t = ([
		time_start1 : time_stop1,
		time_start2 : time_stop2,
		...,
		...,
		...
 ])
 set_appear_time(t);

例子：

1.
  5月3日 至 6月7日 出现：
  set_appear_time(([
	"5,3," : "6,7,",
  ]));

2.
  每月1日早晨2点 至 每月15日中午12点 出现：
  set_appear_time(([
	",1,120" : ",7,720",
  ]));

3.
  每年1月 至 3月 和 9月 至 11月 出现：
  set_appear_time(([
	"1,," : "3,,",
	"9,," : "11,,",
  ]));

4.
  每月1日 至 5日 和 3月12日 至 3月20日 出现：
  set_appear_time(([
	",1," : ",5,",
	"3,12," : "3,20,",
  ]));


	by Find.
              2000.9.28.

