//很久以前写的修正地图名的.
string Zone;
void on_enter_zone()
{
Zone=map_zone[get_map_info()["map_name"]];
if(strlen(Zone)==0)
{
tell_user3(sprintf("当前地图编号为[%s]",get_map_info()["map_name"]));
return ;
}
if(zone!=Zone)
{
tell_user3(sprintf("进入区域[%s],与百宝箱中地图名不符,修正为[%s]",zone,Zone));
}
else
{
tell_user3(sprintf("进入区域[%s]",zone));
}
}