| 赞 | 0 |
| VIP | 40 |
| 好人卡 | 0 |
| 积分 | 1 |
| 经验 | 13258 |
| 最后登录 | 2021-2-21 |
| 在线时间 | 11 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 100
- 在线时间
- 11 小时
- 注册时间
- 2007-7-1
- 帖子
- 327
|
6楼

楼主 |
发表于 2007-8-25 00:18:24
|
只看该作者
果然很困难,可索尔迦·蓝帮我解决了~~非常感谢!!我还是拿出来参考参考吧
先转到脚本的WindowSELECTABLEnew
找到161行的
@index += 1
在下面加上
if @index > 3 and @column_max > 4
self.ox += 120
return
end
然后往下看几行,找到@index -= 1
加上
if @index >= 3 and @column_max > 4
self.ox -= 120
return
end
转到WindowTargetNew25行
self.contents.clear
下面加上
self.contents = Bitmap.new($game_party.actors.size * 120, height - 32)
48行else下面加上
if @index > 3 and @column_max > 4
x = 3 * 120
return
end
转到WindowTargetEquipment34行end下面加上
self.contents = Bitmap.new($game_party.actors.size * 120, height - 32)
231行 def update_cursor_rect
下面加上
if @index > 3 and @column_max > 4
x = 3 * 120
return
end
可能会出现SyntaxError检查一下IF与END的个数是否对应!完美解决!
|
|