赞 | 411 |
VIP | 0 |
好人卡 | 11 |
积分 | 392 |
经验 | 242285 |
最后登录 | 2025-1-13 |
在线时间 | 5737 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 39163
- 在线时间
- 5737 小时
- 注册时间
- 2006-11-10
- 帖子
- 6638
|
是啊,是很麻烦,不过可以设置在公共事件里,然后在需要的地方调用公共事件就可以了。脚本的方法是定义个方法,然后直接调用。继续复习脚本-。-
def aa(a)
$game_system.message_frame = 0
$game_system.message_position = a
if a == 0
$game_screen.pictures[50].show("pic", 0, 0, 0, 100, 100, 255, 0)
elsif a == 1
$game_screen.pictures[50].show("pic", 0, 0, 100, 100, 100, 255, 0)
else a == 2
$game_screen.pictures[50].show("pic", 0, 0, 200, 100, 100, 255, 0)
end
end
-.-就是这样定义,使用方法和公共事件一样,不过需要注意的地方有一些,还有些设置问题,不懂脚本的话容易出现BUG,所以新手还是建议使用事件来制作。
|
|