def from_to(a, b) #依次从a枚举到b
   (a..b).each{|x|
      yield_msg x # 类似yield,只不过这是透过debug接口发给RGSS
   }
end