Project1
标题:
如何更改对话框尺寸
[打印本页]
作者:
qq295268654
时间:
2012-8-20 18:07
标题:
如何更改对话框尺寸
本帖最后由 qq295268654 于 2012-8-20 18:32 编辑
我不想用那个加强版脚本,改变太多了。
我需要事件或脚本的,并且随时可以在游戏中多次改变 dsu_plus_rewardpost_czw
作者:
bbaugle
时间:
2012-8-20 18:27
F11. Window_Message super后的参数 super( X坐标, Y坐标 , 宽度, 高度 )
作者:
zxcgood2009
时间:
2012-8-20 21:14
本帖最后由 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可自己设置。就行了,���
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1