赞 | 15 |
VIP | 320 |
好人卡 | 64 |
积分 | 3 |
经验 | 112963 |
最后登录 | 2022-8-25 |
在线时间 | 2355 小时 |
Lv2.观梦者 (暗夜天使)
- 梦石
- 0
- 星屑
- 266
- 在线时间
- 2355 小时
- 注册时间
- 2009-3-13
- 帖子
- 2309

|
hcm 发表于 2014-3-7 13:44 ![]()
问题是……这叫我怎么排啊……
事实上我找了一下别的整队脚本,不过貌似都不会自动跟进的……
...
这很容易就改了巴:- class Window_MenuStatus
- #--------------------------------------------------------------------------
- # ● 获取项目的高度
- #--------------------------------------------------------------------------
- def item_height
- #~ (height - standard_padding * 2) / 4
- super
- end
- #--------------------------------------------------------------------------
- # ● 绘制项目
- #--------------------------------------------------------------------------
- def draw_item(index)
- actor = $game_party.members[index]
- enabled = $game_party.battle_members.include?(actor)
- rect = item_rect(index)
- draw_item_background(index)
- draw_actor_name(actor, rect.x, rect.y, width = 112)
- #~ draw_actor_face(actor, rect.x + 1, rect.y + 1, enabled)
- #~ draw_actor_simple_status(actor, rect.x + 108, rect.y + line_height / 2)
- end
- end
复制代码 这个就随便改了下,只画了名字。你如果要显示详细信息,创建个窗口来显示就好了 |
|