赞 | 1 |
VIP | 0 |
好人卡 | 85 |
积分 | 1 |
经验 | 41098 |
最后登录 | 2015-3-17 |
在线时间 | 1071 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1071 小时
- 注册时间
- 2011-5-12
- 帖子
- 2317
|
本帖最后由 月夜神音 于 2011-7-22 14:00 编辑
额……是要通用怒气槽还是把怒气槽显示出来?
如果是要显示出来的话加入以下脚本:- # KGC_Overdrive Patch for ziifee's Spin Command
- # Paste below Spin Command and KGC_Overdrive scripts.
- class Window_BattleStatus < Window_Selectable
-
- OD_GAUGE_X = 0 # Gauge X coordinate
- OD_GAUGE_Y = 0 # Gauge Y coordinate
- OD_GAUGE_WIDTH = 80 # Gauge width
-
- alias od_for_spin_command_patch_draw_item draw_item
- def draw_item(index)
- od_for_spin_command_patch_draw_item(index)
- x = index * 96
- actor = $game_party.members[index]
- draw_actor_od_gauge(actor, x + OD_GAUGE_X, OD_GAUGE_Y, OD_GAUGE_WIDTH)
- end
- end
复制代码 |
|