赞 | 0 |
VIP | 10 |
好人卡 | 25 |
积分 | 1 |
经验 | 13460 |
最后登录 | 2016-3-31 |
在线时间 | 251 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 251 小时
- 注册时间
- 2009-11-13
- 帖子
- 453
|
本帖最后由 hcm 于 2012-8-21 09:36 编辑
在Window_Message的172行- case $game_system.message_position
- when 0 # 上
- self.y = 16
- when 1 # 中
- self.y = 160
- when 2 # 下
- self.y = 304
- end
- end
复制代码 改成- case $game_system.message_position
- when 0 # 上
- self.x = $game_variables[1]
- self.y = $game_variables[2]
- when 1 # 中
- self.x = $game_variables[1]
- self.y = $game_variables[2]
- when 2 # 下
- self.x = $game_variables[1]
- self.y = $game_variables[2]
- end
- end
复制代码 长和宽,自己加,你要改变坐标或长宽的时候,先修改变量1,2,3,4可自己设置。就行了,��� |
|