赞 | 0 |
VIP | 0 |
好人卡 | 1 |
积分 | 128 |
经验 | 86993 |
最后登录 | 2024-11-16 |
在线时间 | 1457 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 12810
- 在线时间
- 1457 小时
- 注册时间
- 2012-7-24
- 帖子
- 1302
|
其实用这个脚本也行的- 宽度=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
复制代码 |
评分
-
查看全部评分
|