赞 | 0 |
VIP | 0 |
好人卡 | 5 |
积分 | 1 |
经验 | 2277 |
最后登录 | 2020-9-11 |
在线时间 | 72 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 136
- 在线时间
- 72 小时
- 注册时间
- 2009-12-24
- 帖子
- 25
|
在Scene_Map的 return if $data_troops[troop_id] == nil 下面 加入- if troop_id==1 #如果当前战斗敌人id=1
- if $game_variables[1]==0 #1号变量记录战斗次数
- $game_message.texts.push($data_enemies[troop_id].name+" 说:终于让我碰到你了")
- $game_variables[1]+=1
- elsif $game_variables[1]==1
- $game_message.texts.push($data_enemies[troop_id].name+" 说:这次绝不会让你跑了")
- $game_variables[1]+=1
- elsif
- $game_message.texts.push($data_enemies[troop_id].name+" 说:你上次跑的像兔子一样")
- end
- end
复制代码 |
|