Project1
标题:
谁能帮忙整合下脚本!
[打印本页]
作者:
610453969
时间:
2014-2-20 13:39
标题:
谁能帮忙整合下脚本!
刚刚下载的脚本~~
http://www.66rpg.com/articles/4925
求:修改成1024*768那样大的窗口,不是分辨率,是窗口大小,800*600的窗口太小,显示的内容太少了~~
跪求 跪求
求帮整合下!~~~我的素材已经准备好,准备做认真游戏了!!
作者:
上贺茂润
时间:
2014-2-20 15:18
1024*768……这么大的一把刀,拿起来需要很大的勇气……
宽度=320
高度=240
游戏ini名=".\\Game.ini"
#============================================================================
val = "\0"*256
gps = Win32API.new('kernel32', 'GetPrivateProfileString',%w(p p p p l p), 'l')
gps.call("Game", "Title", "", val, 256, 游戏ini名)
val.delete!("\0")
title = val
fw = Win32API.new('user32', 'FindWindow', %(p, p), 'i')
hWnd = fw.call("RGSS Player", title)
swp = Win32API.new('user32', 'SetWindowPos', %(l, l, i, i, i, i, i), 'i')
ok = swp.call(hWnd, 0, 0, 0, 宽度, 高度, 2)
class Game_Map
#--------------------------------------------------------------------------
# ● 向下滚动
# distance : 滚动距离
#--------------------------------------------------------------------------
def scroll_down(distance)
@display_y = [@display_y + distance, (self.height - 6.6) * 128].min
end
#--------------------------------------------------------------------------
# ● 向右滚动
# distance : 滚动距离
#--------------------------------------------------------------------------
def scroll_right(distance)
@display_x = [@display_x + distance, (self.width - 10) * 128].min
end
end
class Game_Player < Game_Character
CENTER_X = 144 * 4 # 画面中央的 X 坐标 * 4
CENTER_Y = 104 * 4 # 画面中央的 Y 坐标 * 4
end
复制代码
作者:
610453969
时间:
2014-2-21 12:41
上贺茂润 发表于 2014-2-20 15:18
1024*768……这么大的一把刀,拿起来需要很大的勇气……
谢谢,晚上回去试试!{:2_287:}
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1