小小刀886 发表于 2013-8-4 19:03:01

怎样在事件中打开物品栏

本帖最后由 houyuxiaoyang 于 2013-8-22 22:24 编辑

RT,求大触帮忙..

Sonic1997 发表于 2013-8-5 01:42:06

$scene = Scene_Item.new
这样. .?

orzfly 发表于 2013-8-5 02:10:43

噗……囧叔写过这个。

# 在事件中快速调用物品、技能、装备、状态菜单。
#------------------------------------------------------------------------------
# 使用方法:
#         您可以在事件的注释中使用如下的自然语言来调用:
#         o 显示物品界面
#         o 打开技能窗口
#         o 调用装备界面 3号角色
#         o 打开4号角色的状态
#         o 打开技能窗口哦~亲~我可以指定是哪个角色么?哦~是4号角色的哦~
#         o 打开3号角色的猥琐无比的真orzFly的技能窗口~
#

#==============================================================================
# ■ 注释调用系统接入包 1.0
#   http://orzFly.com/RM/PowerComments
#------------------------------------------------------------------------------
# 为插件脚本的注释调用提供支持。需配合其他脚本使用。
#------------------------------------------------------------------------------
# PowerComments.register_command(args, proc)
#   - args 为 Regexp 或包含 Regexp 的 Array
#   - proc 为 Proc 对象
#          当 args 中任意一个 Regexp 对象能匹配事件注释中的文字时,将会调用 proc
#          调用 proc 时,将会传递下列参数:
#            o 当前事件解释器实例
#            o 成功匹配的 Regexp 的 last_match 数组
#
#          proc 的返回值将决定事件解释器的下一步动作
#            o 若 proc 的执行结果是 true
#                当前事件解释器实例 powercomments_repeat_count 归零
#                将继续执行事件中下一指令
#            o 若 proc 的执行结果是 false
#                当前事件解释器实例 powercomments_repeat_count 累加(+= 1)
#                将重复执行事件中当前指令
#------------------------------------------------------------------------------
# - 1.0 by orzFly [rm@orzfly.com]
#   * 首个版本
#==============================================================================
module PowerComments
Version = "1.0"
Commands = {}

module_function
def register_command(args, proc)
    if args.is_a?(Array)
      args.each { |arg| register_command_single(arg, proc) }
    else
      register_command_single(args, proc)
    end
end
def register_command_single(regexp, proc)
    if Commands.include?(regexp)
      raise("PowerComments Command " + regexp.to_s + " already exists")
    end
    Commands = proc
end
end

class Game_Interpreter
alias :execute_command_powercomment :execute_command
def execute_command
    if @index >= @list.size-1
      command_end
      return true
    else
      @params = @list[@index].parameters
      @indent = @list[@index].indent
      case @list[@index].code
      when 108
          return powercomments(@params)
      else
          return execute_command_powercomment
      return true
      end
    end
end

def powercomments(text)
    PowerComments::Commands.each {|k, v|
      if k =~ text
      result = v.call(self, *Regexp.last_match.to_a)
      @powercomments_repeat_count += 1 unless result
      @powercomments_repeat_count = 0 if result
      return result
      end
    }
    return true
end

attr_accessor :wait_count

def powercomments_repeat_count
    return @powercomments_repeat_count.nil? ? 0 : @powercomments_repeat_count
end

def powercomments_repeat_count=(value)
    @powercomments_repeat_count = value
end
end
#==============================================================================
# ■ 事件调用物品、技能、装备、状态菜单 1.0
#   http://orzFly.com/RM/MoreSceneFromEvent
#------------------------------------------------------------------------------
# 在事件中快速调用物品、技能、装备、状态菜单。
#------------------------------------------------------------------------------
# 使用方法:
#
# 方法 1:推荐!与注释调用系统 http://orzFly.com/RM/PowerComments 配合使用。
#         需要注释调用系统 1.0 以上版本。请将本脚本置于注释调用系统接入包之下。
#         
#         您可以在事件的注释中使用如下的自然语言来调用:
#         o 显示物品界面
#         o 打开技能窗口
#         o 调用装备界面 3号角色
#         o 打开4号角色的状态
#         o 打开技能窗口哦~亲~我可以指定是哪个角色么?哦~是4号角色的哦~
#         o 打开3号角色的猥琐无比的真orzFly的技能窗口~
#
# 方法 2:事件中使用脚本调用。
#         o $game_temp.next_scene = "item"
#         o $game_temp.next_scene = ["skill", 0]
#         o $game_temp.next_scene = ["equip", 0]
#         o $game_temp.next_scene = ["status", 0]
#         其中 0 为角色队伍编号。队伍中第一位为 0,第二位为 1。以此类推。
#------------------------------------------------------------------------------
# - 1.0 by orzFly [rm@orzfly.com]
#   * 首个版本
#==============================================================================

class Scene_Map < Scene_Base
alias update_scene_change_map_more_scene update_scene_change
def update_scene_change
    return if $game_player.moving?
    return call_item if $game_temp.next_scene == "item"
    if $game_temp.next_scene.is_a?(Array)
      return call_skill($game_temp.next_scene) \
      if $game_temp.next_scene == "skill"
      return call_equip($game_temp.next_scene) \
      if $game_temp.next_scene == "equip"
      return call_status($game_temp.next_scene) \
      if $game_temp.next_scene == "status"
    end
    return update_scene_change_map_more_scene
end
def call_item
    $game_temp.next_scene = nil
    $scene = Scene_Item_Map.new
end
def call_skill(index)
    $game_temp.next_scene = nil
    $scene = Scene_Skill_Map.new(
      (index.nil? or $game_party.members.nil?) ? 0 : index
    )
end
def call_equip(index)
    $game_temp.next_scene = nil
    $scene = Scene_Equip_Map.new(
      (index.nil? or $game_party.members.nil?) ? 0 : index
    )
end
def call_status(index)
    $game_temp.next_scene = nil
    $scene = Scene_Status_Map.new(
      (index.nil? or $game_party.members.nil?) ? 0 : index
    )
end
end

["Scene_Item", "Scene_Skill", "Scene_Equip", "Scene_Status"].each { |s|
eval("class #{s}_Map<#{s};def return_scene;$scene=Scene_Map.new;end;end")
}

unless PowerComments.nil?
if PowerComments.methods.include?("register_command")
    PowerComments.register_command(/^(打开|调用|显示).*?物品/, Proc.new {
      $game_temp.next_scene = "item"
      true
    })
    PowerComments.register_command(/
^(打开|调用|显示).*?(+).*?技能.*?$|
^(打开|调用|显示).*?技能.*?(+).*?$|
^(打开|调用|显示)[^0-9]*?技能[^0-9]*?$/x,
      Proc.new { |_, _, _, x, _, y, _|
      $game_temp.next_scene = [
          "skill",
          ((y.nil? or y == "") ? (
            (x.nil? or x == "") ? 0 : x.to_i - 1
          ) : y.to_i - 1)
      ]
      true
      }
    )
    PowerComments.register_command(/
^(打开|调用|显示).*?(+).*?装备.*?$|
^(打开|调用|显示).*?装备.*?(+).*?$|
^(打开|调用|显示)[^0-9]*?装备[^0-9]*?$/x,
      Proc.new { |_, _, _, x, _, y, _|
      $game_temp.next_scene = [
          "equip",
          ((y.nil? or y == "") ? (
            (x.nil? or x == "") ? 0 : x.to_i - 1
          ) : y.to_i - 1)
      ]
      true
      }
    )
    PowerComments.register_command(/
^(打开|调用|显示).*?(+).*?状态.*?$|
^(打开|调用|显示).*?状态.*?(+).*?$|
^(打开|调用|显示)[^0-9]*?状态[^0-9]*?$/x,
      Proc.new { |_, _, _, x, _, y, _|
      $game_temp.next_scene = [
          "status",
          ((y.nil? or y == "") ? (
            (x.nil? or x == "") ? 0 : x.to_i - 1
          ) : y.to_i - 1)
      ]
      true
      }
    )
end
end
页: [1]
查看完整版本: 怎样在事件中打开物品栏