| 赞 | 0 |
| VIP | 12 |
| 好人卡 | 5 |
| 积分 | 1 |
| 经验 | 43535 |
| 最后登录 | 2020-11-2 |
| 在线时间 | 1050 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 136
- 在线时间
- 1050 小时
- 注册时间
- 2006-5-3
- 帖子
- 774
|
谢谢,不过最后那个姐姐的脚本还是有点问题:
self.width = [$game_variables[WidthVariables], 64].max
self.height = [$game_variables[HeightVariables], 64].max
self.contents.clear
self.contents.dispose
self.contents = Bitmap.new(width - 32, height - 32)
if $game_system.message_frame == 0
这一段应该改成
self.width = [$game_variables[WidthVariables]+ 480].max
self.height = [$game_variables[HeightVariables]+ 160].max
self.contents.clear
self.contents.dispose
self.contents = Bitmap.new(width - 32, height - 32)
if $game_system.message_frame == 0
不然脚本不起作用而且初始对话框也太小了{/cy}
随便问句,如果要改对话框坐标 像HeightVariables的东西,应该改成什么?{/jy}
|
|