赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 2554 |
最后登录 | 2017-6-21 |
在线时间 | 3 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 3 小时
- 注册时间
- 2007-5-13
- 帖子
- 142
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 ACMREN 于 2009-7-31 18:09 编辑
最近在研究修改脚本,在看天狼星1110的“不是教学的教学”
其中有一个任务是要屏蔽掉“逃跑”这项,请问要如何屏蔽呢?
我已经研究好久了.. 脚本也修改过几次.. 还是不行…… 修改的脚本如下:- #==============================================================================
- # ■ Window_PartyCommand
- #------------------------------------------------------------------------------
- # 战斗画面、选择战斗与逃跑的窗口。
- #==============================================================================
- class Window_PartyCommand < Window_Selectable
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 640, 64)
- self.contents = Bitmap.new(width - 32, height - 32)
- self.back_opacity = 160
- @commands = ["战斗"]
- @item_max = 1
- @column_max = 1
- draw_item(0, normal_color)
- draw_item(1, $game_temp.battle_can_escape ? normal_color : disabled_color)
- self.active = false
- self.visible = false
- self.index = 0
- end
- #--------------------------------------------------------------------------
- # ● 描绘项目
- # index : 项目标号
- # color : 文字颜色
- #--------------------------------------------------------------------------
- def draw_item(index, color)
- self.contents.font.color = color
- rect = Rect.new(160 + index * 160 + 4, 0, 128 - 10, 32)
- self.contents.fill_rect(rect, Color.new(100, 100, 100, 100))
- self.contents.draw_text(rect, @commands[0], 1)
- end
- #--------------------------------------------------------------------------
- # ● 更新光标矩形
- #--------------------------------------------------------------------------
- def update_cursor_rect
- self.cursor_rect.set(160 + index * 160, 0, 128, 32)
- end
- end
复制代码 修改之后.. 逃跑是没了.. 但是出现了两个战斗的项…… 麻烦各位脚本大大看看..
PS:我真的已经想了很久了.. 不然也不会上来问各位大大.. 麻烦各位大大教教我…… |
|