赞 | 7 |
VIP | 0 |
好人卡 | 1 |
积分 | 9 |
经验 | 33876 |
最后登录 | 2019-3-1 |
在线时间 | 576 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 878
- 在线时间
- 576 小时
- 注册时间
- 2010-6-26
- 帖子
- 793
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 sq333333 于 2017-5-20 22:41 编辑
试过了,逃跑和死亡时不会解除,但是住宿全回复时会解除,不知道哪里的问题。
脚本和工程设置如下:
#==============================================================================
# ■ RGSS3 戦闘不能時残留ステート Ver1.01 by 星潟
#------------------------------------------------------------------------------
# 戦闘不能に陥った際、消去されないステートを作成します。
# 用于那些全恢复时也不想要他消除的状态
# 設定方法.
# ステート欄に<残留>と記入する。
#
# Ver1.01
# 全回復時・逃走の処理でも戦闘不能時残留ステートの効果が表れていた問題を修正。
#==============================================================================
module UnclearableState
#ステートのメモ欄に記入する為の設定用ワード
WORD = "<残留>"
end
#==============================================================================
# ■ Game_BattlerBase
#------------------------------------------------------------------------------
# バトラーを扱う基本のクラスです。主に能力値計算のメソッドを含んでいます。こ
# のクラスは Game_Battler クラスのスーパークラスとして使用されます。
#==============================================================================
class Game_BattlerBase
#--------------------------------------------------------------------------
# ● オブジェクト初期化
#--------------------------------------------------------------------------
alias initialize_un_s initialize
def initialize
initialize_un_s
clear_states2
end
#--------------------------------------------------------------------------
# ● 全回復
#--------------------------------------------------------------------------
alias recover_all_un_s recover_all
def recover_all
recover_all_un_s
clear_states2
end
#--------------------------------------------------------------------------
# ● ステート情報をクリア
#--------------------------------------------------------------------------
def clear_states
@states = [] if @states == nil
stc = 0
stcl = []
stcl_turns = {}
stcl_steps = {}
for state in @states
if state != nil && $data_states[state].note.include?(UnclearableState::WORD)
stcl.push(@states[stc])
stcl_turns[state] = @state_turns[state]
stcl_steps[state] = @state_steps[state]
end
stc += 1
end
@states = stcl
@state_turns = stcl_turns
@state_steps = stcl_steps
end
#--------------------------------------------------------------------------
# ● ステート情報をクリア
#--------------------------------------------------------------------------
def clear_states2
@states = []
@state_turns = {}
@state_steps = {}
end
end
class Game_Battler < Game_BattlerBase
#--------------------------------------------------------------------------
# ● 逃げる
#--------------------------------------------------------------------------
alias escape_un_s escape
def escape
escape_un_s
clear_states2
end
end
设置:
|
|