| 
 
| 赞 | 5 |  
| VIP | 211 |  
| 好人卡 | 175 |  
| 积分 | 8 |  
| 经验 | 48096 |  
| 最后登录 | 2014-1-9 |  
| 在线时间 | 1327 小时 |  
 Lv2.观梦者 (?????) 
	梦石0 星屑814 在线时间1327 小时注册时间2011-7-18帖子3184 
 | 
| 本帖最后由 各种压力的猫君 于 2011-9-7 01:11 编辑 
 设置遇敌区域。
 
 
   
 
 
 Game_player 约398-409行
 return if in_vehicle? 注释掉复制代码  #--------------------------------------------------------------------------
  # ● 更新遇敌
  #--------------------------------------------------------------------------
  def update_encounter
    return if $TEST and Input.press?(Input::CTRL)   # 测试游戏中
    return if in_vehicle?                           # 乘坐交通工具中
    if $game_map.bush?(@x, @y)                      # 在草木繁茂处
      @encounter_count -= 2                         # 将遇敌计数减2
    else                                            # 否则
      @encounter_count -= 1                         # 将遇敌计数减1
    end
  end
 | 
 |