赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 225 |
最后登录 | 2012-1-15 |
在线时间 | 11 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 11 小时
- 注册时间
- 2010-12-19
- 帖子
- 11
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
RTAB使用全键盘脚本和
# ■ Scene_Battle (分割定義 2)
#------------------------------------------------------------------------------
# バトル画面の処理を行うクラスです。
#==============================================================================
#--------------------------------------------------------------------------
# ● フレーム更新 (ATゲージ更新フェーズ)
#--------------------------------------------------------------------------
def update_phase0
if $game_temp.battle_turn == 0
$game_temp.battle_turn = 1
end
if Kboard.keyboard($R_Key_K)
for actor in $game_party.actors
if actor.state?(17)
actor.remove_state(17, true)
@status_window.refresh
else
actor.add_state(17, true)
@status_window.refresh
end
end
end
在数据库添加的17号状态为普通攻击敌人,战斗结束取消,可是为什么如果不按K的话,战斗结束就取消不了呢,下次战斗会继续自动攻击。
请指教。。。 |
|