Project1

标题: 求改脚本 [打印本页]

作者: 靰鞡靰鞡瓦鰰鰰    时间: 2013-4-26 11:16
标题: 求改脚本
# ▼▲▼ XRXS15. スキル名クラス別設定 ▼▲▼
# by 桜雅 在土, シムナフ, fukuyama

#==============================================================================
# □ RPG::Class
#==============================================================================
module RPG
  class Class
    def name
      name = @name.split(/,/)[0]
      return name != nil ? name : ''
    end
    def name=(str)
      str2 = @name[/^[^,]*(,.*)/, 1]
      @name = str2 != nil ? str + str2 : str
    end
    def word_skill
      name = @name.split(/,/)[1]
      return name != nil ? name : $data_system.words.skill
    end
  end
end
#==============================================================================
# ■ Window_Command
#==============================================================================
class Window_Command
  def set_command_name(index, name)
    @commands[index] = name
    refresh
  end
end
  
#==============================================================================
# ■ Scene_Battle
#==============================================================================
class Scene_Battle
  alias skill_names_original_phase3_setup_command_window phase3_setup_command_window
  def phase3_setup_command_window
    skill_names_original_phase3_setup_command_window
    return if @active_battler.nil?
    word_skill = $data_classes[@active_battler.class_id].word_skill
    @actor_command_window.set_command_name(1234,word_skill)
  end
end



#==============================================================================
# 本脚本来自66RPG,使用和转载请保留此信息
#==============================================================================
作者: 小和尚    时间: 2013-4-26 21:23
= =意义不明...你要怎么改
作者: SuperMario    时间: 2013-4-27 00:06
在每一行前面都加一个 #




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1