赞 | 0 |
VIP | 16 |
好人卡 | 0 |
积分 | 1 |
经验 | 849 |
最后登录 | 2012-1-6 |
在线时间 | 3 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 3 小时
- 注册时间
- 2007-6-8
- 帖子
- 505
|
#==============================================================================
# ■ Window_BattleStatus
#------------------------------------------------------------------------------
# 显示战斗画面同伴状态的窗口。
#==============================================================================
Window_BattleStatus里面
class Window_BattleStatus < Window_Base
#--------------------------------------------------------------------------
# ● 初始化对像
#--------------------------------------------------------------------------
def initialize
super(0, 320, 640, 160)
self.contents = Bitmap.new(width - 32, height - 32)
@level_up_flags = [false, false, false, false]
refresh
end
第一段改成这样,如果你加了外挂脚本 注意看看super(0, 320, 640, 160) 里的坐标 |
|