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

Project1

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

有没有一个不能更换武器的脚本

 关闭 [复制链接]
头像被屏蔽

Lv1.梦旅人 (禁止发言)

梦石
0
星屑
50
在线时间
0 小时
注册时间
2008-1-20
帖子
11
跳转到指定楼层
1
发表于 2008-1-28 02:20:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
提示: 作者被禁止或删除 内容自动屏蔽

Lv1.梦旅人

随缘

梦石
0
星屑
55
在线时间
12 小时
注册时间
2007-12-16
帖子
671
2
发表于 2008-1-28 02:44:52 | 只看该作者
  1. #==============================================================================
  2. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  3. #==============================================================================

  4. #==============================================================================
  5. # ■ Game_System
  6. #------------------------------------------------------------------------------
  7. #  处理系统附属数据的类。也可执行诸如 BGM 管理之类的功能。
  8. #==============================================================================
  9. class Game_System
  10. attr_accessor :cursed_weapons
  11. attr_accessor :cursed_armors
  12. alias carol3_ini initialize
  13. def initialize
  14.    @cursed_weapons = []  #——在这里输入诅咒武器的编号,用逗号隔开。
  15.    @cursed_armors = []   #——在这里输入诅咒防具编号,逗号隔开。比如 = [1,2,3,4]
  16.    carol3_ini
  17. end
  18. end
  19. #==============================================================================
  20. # ■ Scene_Equip
  21. #------------------------------------------------------------------------------
  22. #  处理装备画面的类。
  23. #==============================================================================
  24. class Scene_Equip
  25. def update_right
  26.     if Input.trigger?(Input::B)
  27.       $game_system.se_play($data_system.cancel_se)
  28.       $scene = Scene_Menu.new(2)
  29.       return
  30.     end
  31.     if Input.trigger?(Input::C)
  32.       w = @actor.weapon_id
  33.       a1 = @actor.armor1_id
  34.       a2 = @actor.armor2_id
  35.       a3 = @actor.armor3_id
  36.       a4 = @actor.armor4_id
  37.       if @actor.equip_fix?(@right_window.index)
  38.         $game_system.se_play($data_system.buzzer_se)
  39.         return
  40.       end
  41.       if @right_window.index == 0 && $game_system.cursed_weapons.include?(w)
  42.         $game_system.se_play($data_system.buzzer_se)
  43.         return
  44.        elsif @right_window.index == 1 && $game_system.cursed_armors.include?(a1)
  45.         $game_system.se_play($data_system.buzzer_se)
  46.         return
  47.        elsif @right_window.index == 2 && $game_system.cursed_armors.include?(a2)
  48.         $game_system.se_play($data_system.buzzer_se)
  49.         return
  50.        elsif @right_window.index == 3 && $game_system.cursed_armors.include?(a3)
  51.         $game_system.se_play($data_system.buzzer_se)
  52.         return
  53.        elsif @right_window.index == 4 && $game_system.cursed_armors.include?(a4)
  54.         $game_system.se_play($data_system.buzzer_se)
  55.         return
  56.       end
  57.       $game_system.se_play($data_system.decision_se)
  58.       @right_window.active = false
  59.       @item_window.active = true
  60.       @item_window.index = 0
  61.       return
  62.     end
  63.     if Input.trigger?(Input::R)
  64.       $game_system.se_play($data_system.cursor_se)
  65.       @actor_index += 1
  66.       @actor_index %= $game_party.actors.size
  67.       $scene = Scene_Equip.new(@actor_index, @right_window.index)
  68.       return
  69.     end
  70.     if Input.trigger?(Input::L)
  71.       $game_system.se_play($data_system.cursor_se)
  72.       @actor_index += $game_party.actors.size - 1
  73.       @actor_index %= $game_party.actors.size
  74.       $scene = Scene_Equip.new(@actor_index, @right_window.index)
  75.       return
  76.     end
  77.   end
  78. end
  79. #==============================================================================
  80. # ■ Window_EquipRight
  81. #------------------------------------------------------------------------------
  82. #  装备画面、显示角色现在装备的物品的窗口。
  83. #==============================================================================
  84. class Window_EquipRight < Window_Selectable
  85.   def draw_item_name(item, x, y)
  86.     if item == nil
  87.       return
  88.     end
  89.     bitmap = RPG::Cache.icon(item.icon_name)
  90.     if item.is_a?(RPG::Weapon) && $game_system.cursed_weapons.include?(item.id)
  91.       self.contents.font.color = cursed_color
  92.     end
  93.     if item.is_a?(RPG::Armor) && $game_system.cursed_armors.include?(item.id)
  94.       self.contents.font.color = cursed_color
  95.     end
  96.     self.contents.draw_text(x + 28, y, 212, 32, item.name)
  97.   end
  98. end
  99. #==============================================================================
  100. # ■ Window_Base
  101. #------------------------------------------------------------------------------
  102. #  游戏中全部窗口的超级类。
  103. #==============================================================================
  104. class Window_Base < Window
  105.   def cursed_color
  106.     return Color.new(255, 107, 255)
  107.   end
  108. end



  109. #==============================================================================
  110. # 本脚本来自www.66RPG.com,使用和转载请保留此信息
  111. #==============================================================================
复制代码



系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~
论坛:
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-12-5 10:55

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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