赞 | 2 |
VIP | 156 |
好人卡 | 48 |
积分 | 1 |
经验 | 109707 |
最后登录 | 2017-12-27 |
在线时间 | 1914 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 121
- 在线时间
- 1914 小时
- 注册时间
- 2013-9-2
- 帖子
- 1770
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我想做一个穿上就能让角色放技能消耗MP为0的首饰,这段代码有什么问题?
注:RMXP1.02版本
#class Game_Battler
# def no_mp_cost?
# return self.note.include?("特殊MP消耗0")
# end
#end
#----------------------------------------------------------------------------
#class Game_Battler
# alias no_mp_cost_mp mp
# def mp=(mp)
# no_mp_cost_mp(mp)
# return if self.maxmp == 0
# if self.mp == 0
# self.states.each{|state|
# next unless state.no_mp_cost?
# remove_state(state.id)
# @removed_states.push(state.id) if $game_temp.in_battle
# }
# end
# end
#--------------------------------------------------------------------------
# alias no_mp_cost_add_state add_state
# def add_state(state_id)
# if $data_states[state_id].no_mp_cost?
# return if self.mp == 0
# end
# no_mp_cost_add_state(state_id)
# end
#--------------------------------------------------------------------------
# alias no_mp_cost_remove_state remove_state
# def remove_state(state_id)
# no_mp_cost_remove_state(state_id)
# return if state?(state_id)
# no_mp_cost_mp(0) if $data_states[state_id].no_mp_cost?
# end
#--------------------------------------------------------------------------
# alias no_mp_cost_calc_mp_cost calc_mp_cost
# def calc_mp_cost(skill)
# if self.states.any?{|state| state.no_mp_cost? }
# return 0 if self.mp > 0
# end
# return no_mp_cost_calc_mp_cost(skill)
# end
#end |
|