设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1972|回复: 2
打印 上一主题 下一主题

[已经过期] 物品分类脚本

[复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
17 小时
注册时间
2013-10-5
帖子
8
跳转到指定楼层
1
发表于 2015-8-13 19:33:46 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
求个物品分类的脚本。没了

Lv1.梦旅人

梦石
0
星屑
55
在线时间
44 小时
注册时间
2006-6-4
帖子
386
2
发表于 2015-8-13 21:42:02 | 只看该作者
064_form-ei·物品分类.rar (190.09 KB, 下载次数: 119)



对工程改动还是满大的一个版本。。。。

评分

参与人数 1星屑 +300 收起 理由
hys111111 + 300 认可答案

查看全部评分

迷宫````
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
33 小时
注册时间
2015-7-4
帖子
27
3
发表于 2015-8-15 12:06:49 | 只看该作者
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================
  4. #可以自定义设置物品分类,利用物品描述,每个描述后面添加@物品分类即可。

  5. #==============================================================================
  6. # ■ Harts_Window_ItemTitle
  7. #==============================================================================

  8. class Harts_Window_ItemTitle < Window_Base
  9.   def initialize
  10.     super(0, 0, 160, 64)
  11.     self.contents = Bitmap.new(width - 32, height - 32)
  12.     self.contents.clear
  13.     self.contents.font.color = normal_color
  14.     self.contents.draw_text(4, 0, 120, 32, $data_system.words.item, 1)
  15.   end
  16. end

  17. #==============================================================================
  18. # ■ Harts_Window_ItemCommand
  19. #==============================================================================

  20. class Harts_Window_ItemCommand < Window_Selectable
  21.   attr_accessor :commands
  22.   #--------------------------------------------------------------------------
  23.   # ● 初始化,生成commands窗口
  24.   #--------------------------------------------------------------------------
  25.   def initialize
  26.     super(0, 64, 160, 352)
  27.     @commands = []
  28.     #————————生成commands窗口
  29.     for i in 1...$data_items.size
  30.       if $game_party.item_number(i) > 0
  31.         push = true
  32.         for com in @commands
  33.           if com == $data_items[i].desc
  34.             push = false
  35.           end
  36.         end
  37.         if push == true
  38.           @commands.push($data_items[i].desc)
  39.         end
  40.       end
  41.     end
  42.     for i in 1...$data_weapons.size
  43.       if $game_party.weapon_number(i) > 0
  44.         push = true
  45.         for com in @commands
  46.           if com == $data_weapons[i].desc
  47.             push = false
  48.           end
  49.         end
  50.         if push == true
  51.           @commands.push($data_weapons[i].desc)
  52.         end
  53.       end
  54.     end
  55.     for i in 1...$data_armors.size
  56.       if $game_party.armor_number(i) > 0
  57.         push = true
  58.         for com in @commands
  59.           if com == $data_armors[i].desc
  60.             push = false
  61.           end
  62.         end
  63.         if push == true
  64.           @commands.push($data_armors[i].desc)
  65.         end
  66.       end
  67.     end
  68.     if @commands == []
  69.       @commands.push("普通物品")
  70.     end      
  71.     @item_max = @commands.size
  72.     self.contents = Bitmap.new(width - 32, @item_max * 32)
  73.     refresh
  74.     self.index = 0
  75.   end
  76.   #--------------------------------------------------------------------------
  77.   #--------------------------------------------------------------------------
  78.   def refresh
  79.     self.contents.clear
  80.     for i in 0...@item_max
  81.       draw_item(i, normal_color)
  82.     end
  83.   end
  84.   #--------------------------------------------------------------------------
  85.   #--------------------------------------------------------------------------
  86.   def draw_item(index, color)
  87.     self.contents.font.color = color
  88.     y = index * 32
  89.     self.contents.draw_text(4, y, 128, 32, @commands[index])
  90.   end
  91.   #--------------------------------------------------------------------------
  92.   # 只描绘原文字
  93.   #--------------------------------------------------------------------------
  94.   def update_help
  95.     @help_window.set_text(@commands[self.index])
  96.   end
  97. end

  98. #==============================================================================
  99. # ■ Window_Item
  100. #==============================================================================

  101. class Harts_Window_ItemList < Window_Selectable
  102.   #--------------------------------------------------------------------------
  103.   #--------------------------------------------------------------------------
  104.   def initialize
  105.     super(160, 0, 480, 416)
  106.     refresh
  107.     self.index = 0
  108.   end
  109.   #--------------------------------------------------------------------------
  110.   #--------------------------------------------------------------------------
  111.   def item
  112.     return @data[self.index]
  113.   end
  114.   #--------------------------------------------------------------------------
  115.   #--------------------------------------------------------------------------
  116.   def refresh
  117.     if self.contents != nil
  118.       self.contents.dispose
  119.       self.contents = nil
  120.     end
  121.     @data = []
  122.   end
  123.   #--------------------------------------------------------------------------
  124.   #--------------------------------------------------------------------------
  125.   def set_item(command)
  126.     refresh
  127.     for i in 1...$data_items.size
  128.       if $game_party.item_number(i) > 0 and $data_items[i].desc == command
  129.         @data.push($data_items[i])
  130.       end
  131.     end
  132.     for i in 1...$data_weapons.size
  133.       if $game_party.weapon_number(i) > 0 and $data_weapons[i].desc == command
  134.         @data.push($data_weapons[i])
  135.       end
  136.     end
  137.     for i in 1...$data_armors.size
  138.       if $game_party.armor_number(i) > 0 and $data_armors[i].desc == command
  139.         @data.push($data_armors[i])
  140.       end
  141.     end
  142.     @item_max = @data.size
  143.     if @item_max > 0
  144.       self.contents = Bitmap.new(width - 32, row_max * 32)
  145.       self.contents.clear
  146.       for i in 0...@item_max
  147.         draw_item(i)
  148.       end
  149.     end
  150.   end
  151.   #--------------------------------------------------------------------------
  152.   #--------------------------------------------------------------------------
  153.   def item_number
  154.     return @item_max
  155.   end
  156.   #--------------------------------------------------------------------------
  157.   #--------------------------------------------------------------------------
  158.   def draw_item(index)
  159.     item = @data[index]
  160.     case item
  161.     when RPG::Item
  162.       number = $game_party.item_number(item.id)
  163.     when RPG::Weapon
  164.       number = $game_party.weapon_number(item.id)
  165.     when RPG::Armor
  166.       number = $game_party.armor_number(item.id)
  167.     end
  168.     if item.is_a?(RPG::Item) and
  169.       $game_party.item_can_use?(item.id)
  170.       self.contents.font.color = normal_color
  171.     else
  172.       self.contents.font.color = disabled_color
  173.     end
  174.     x = 4
  175.     y = index * 32
  176.     bitmap = RPG::Cache.icon(item.icon_name)
  177.     opacity = self.contents.font.color == normal_color ? 255 : 128
  178.     self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24), opacity)
  179.     self.contents.draw_text(x + 28, y, 212, 32, item.name, 0)
  180.     self.contents.draw_text(x + 400, y, 16, 32, ":", 1)
  181.     self.contents.draw_text(x + 416, y, 24, 32, number.to_s, 2)
  182.   end
  183.   #--------------------------------------------------------------------------
  184.   #--------------------------------------------------------------------------
  185.   def update_help
  186.     @help_window.set_text(self.item == nil ? "" : self.item.description)
  187.   end
  188. end

  189. #==============================================================================
  190. # ■ Harts_Scene_Item
  191. #==============================================================================

  192. class Scene_Item
  193.   #--------------------------------------------------------------------------
  194.   #--------------------------------------------------------------------------
  195.   def main
  196.     @itemtitle_window = Harts_Window_ItemTitle.new
  197.     @itemcommand_window = Harts_Window_ItemCommand.new
  198.     @command_index = @itemcommand_window.index
  199.     @itemlist_window = Harts_Window_ItemList.new
  200.     @itemlist_window.active = false
  201.     @help_window = Window_Help.new
  202.     @help_window.x = 0
  203.     @help_window.y = 416
  204.     @itemcommand_window.help_window = @help_window
  205.     @itemlist_window.help_window = @help_window
  206.     @target_window = Window_Target.new
  207.     @target_window.visible = false
  208.     @target_window.active = false
  209.     @itemlist_window.set_item(@itemcommand_window.commands[@command_index])
  210.     Graphics.transition
  211.     loop do
  212.       Graphics.update
  213.       Input.update
  214.       update
  215.       if $scene != self
  216.         break
  217.       end
  218.     end
  219.     Graphics.freeze
  220.     @itemtitle_window.dispose
  221.     @itemcommand_window.dispose
  222.     @itemlist_window.dispose
  223.     @help_window.dispose
  224.     @target_window.dispose
  225.   end
  226.   #--------------------------------------------------------------------------
  227.   #--------------------------------------------------------------------------
  228.   def update
  229.     @itemtitle_window.update
  230.     @itemcommand_window.update
  231.     @itemlist_window.update
  232.     @help_window.update
  233.     @target_window.update
  234.     if @command_index != @itemcommand_window.index
  235.       @command_index = @itemcommand_window.index
  236.       @itemlist_window.set_item(@itemcommand_window.commands[@command_index])
  237.     end
  238.     if @itemcommand_window.active
  239.       update_itemcommand
  240.       return
  241.     end
  242.     if @itemlist_window.active
  243.       update_itemlist
  244.       return
  245.     end
  246.     if @target_window.active
  247.       update_target
  248.       return
  249.     end
  250.   end
  251.   #--------------------------------------------------------------------------
  252.   #--------------------------------------------------------------------------
  253.   def update_itemcommand
  254.     if Input.trigger?(Input::B)
  255.       $game_system.se_play($data_system.cancel_se)
  256.       $scene = Scene_Menu.new(0)
  257.       return
  258.     end
  259.     if Input.trigger?(Input::C)
  260.       if @itemlist_window.item_number == 0
  261.         $game_system.se_play($data_system.buzzer_se)
  262.         return
  263.       end
  264.       $game_system.se_play($data_system.decision_se)
  265.       @itemcommand_window.active = false
  266.       @itemlist_window.active = true
  267.       @itemlist_window.index = 0
  268.       return
  269.     end
  270.   end
  271.   #--------------------------------------------------------------------------
  272.   #--------------------------------------------------------------------------
  273.   def update_itemlist
  274.     if Input.trigger?(Input::B)
  275.       $game_system.se_play($data_system.cancel_se)
  276.       @itemcommand_window.active = true
  277.       @itemlist_window.active = false
  278.       @itemlist_window.index = 0
  279.       @itemcommand_window.index = @command_index
  280.       return
  281.     end
  282.     if Input.trigger?(Input::C)
  283.       @item = @itemlist_window.item
  284.       unless @item.is_a?(RPG::Item)
  285.         $game_system.se_play($data_system.buzzer_se)
  286.         return
  287.       end
  288.       unless $game_party.item_can_use?(@item.id)
  289.         $game_system.se_play($data_system.buzzer_se)
  290.         return
  291.       end
  292.       $game_system.se_play($data_system.decision_se)
  293.       if @item.scope >= 3
  294.         @itemlist_window.active = false
  295.         @target_window.x = 304
  296.         @target_window.visible = true
  297.         @target_window.active = true
  298.         if @item.scope == 4 || @item.scope == 6
  299.           @target_window.index = -1
  300.         else
  301.           @target_window.index = 0
  302.         end
  303.       else
  304.         if @item.common_event_id > 0
  305.           $game_temp.common_event_id = @item.common_event_id
  306.           $game_system.se_play(@item.menu_se)
  307.             if @item.consumable
  308.               $game_party.lose_item(@item.id, 1)
  309.               @itemlist_window.draw_item(@itemlist_window.index)
  310.             end
  311.           $scene = Scene_Map.new
  312.           return
  313.         end
  314.       end
  315.       return
  316.     end
  317.   end
  318.   #--------------------------------------------------------------------------
  319.   #--------------------------------------------------------------------------
  320.   def update_target
  321.     if Input.trigger?(Input::B)
  322.       $game_system.se_play($data_system.cancel_se)
  323.       unless $game_party.item_can_use?(@item.id)
  324.         @itemlist_window.refresh
  325.       end
  326.       @itemlist_window.active = true
  327.       @target_window.visible = false
  328.       @target_window.active = false
  329.       @itemlist_window.set_item(@itemcommand_window.commands[@command_index])
  330.       return
  331.     end
  332.     if Input.trigger?(Input::C)
  333.       if $game_party.item_number(@item.id) == 0
  334.         $game_system.se_play($data_system.buzzer_se)
  335.         return
  336.       end
  337.       if @target_window.index == -1
  338.         used = false
  339.         for i in $game_party.actors
  340.           used |= i.item_effect(@item)
  341.         end
  342.       end
  343.       if @target_window.index >= 0
  344.         target = $game_party.actors[@target_window.index]
  345.         used = target.item_effect(@item)
  346.       end
  347.       if used
  348.         $game_system.se_play(@item.menu_se)
  349.         if @item.consumable
  350.           $game_party.lose_item(@item.id, 1)
  351.           @itemlist_window.draw_item(@itemlist_window.index)
  352.           @itemlist_window.set_item(@itemcommand_window.commands[@command_index])
  353.         end
  354.         @target_window.refresh
  355.         if $game_party.all_dead?
  356.           $scene = Scene_Gameover.new
  357.           return
  358.         end
  359.         if @item.common_event_id > 0
  360.           $game_temp.common_event_id = @item.common_event_id
  361.           $scene = Scene_Map.new
  362.           return
  363.         end
  364.       end
  365.       unless used
  366.         $game_system.se_play($data_system.buzzer_se)
  367.       end
  368.     return
  369.     end
  370.   end
  371. end

  372. #==============================================================================
  373. # ■ RPG追加定义,使用@符号分类
  374. #==============================================================================

  375. module RPG
  376.   class Weapon
  377.     def description
  378.       description = @description.split(/@/)[0]
  379.       return description != nil ? description : ''
  380.     end
  381.     def desc
  382.       desc = @description.split(/@/)[1]
  383.       return desc != nil ? desc : "普通物品"
  384.     end
  385.   end
  386.   class Item
  387.     def description
  388.       description = @description.split(/@/)[0]
  389.       return description != nil ? description : ''
  390.     end
  391.     def desc
  392.       desc = @description.split(/@/)[1]
  393.       return desc != nil ? desc : "普通物品"
  394.     end
  395.   end
  396.   class Armor
  397.     def description
  398.       description = @description.split(/@/)[0]
  399.       return description != nil ? description : ''
  400.     end
  401.     def desc
  402.       desc = @description.split(/@/)[1]
  403.       return desc != nil ? desc : "普通物品"
  404.     end
  405.   end
  406. end

  407. #==============================================================================
  408. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  409. #==============================================================================


复制代码

评分

参与人数 1星屑 +66 收起 理由
hys111111 + 66 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-14 01:22

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表