赞 | 4 |
VIP | 211 |
好人卡 | 175 |
积分 | 7 |
经验 | 48096 |
最后登录 | 2014-1-9 |
在线时间 | 1327 小时 |
Lv2.观梦者 (?????)
- 梦石
- 0
- 星屑
- 736
- 在线时间
- 1327 小时
- 注册时间
- 2011-7-18
- 帖子
- 3184
|
本帖最后由 各种压力的猫君 于 2011-9-7 01:11 编辑
设置遇敌区域。
Game_player 约398-409行- #--------------------------------------------------------------------------
- # ● 更新遇敌
- #--------------------------------------------------------------------------
- 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
复制代码 return if in_vehicle? 注释掉 |
|