赞 | 0 |
VIP | 258 |
好人卡 | 2 |
积分 | 0 |
经验 | 11030 |
最后登录 | 2016-8-20 |
在线时间 | 36 小时 |
Lv1.梦旅人 ~琉璃の雪~<
- 梦石
- 0
- 星屑
- 49
- 在线时间
- 36 小时
- 注册时间
- 2008-11-6
- 帖子
- 3678
|
本帖最后由 夏季冰川 于 2009-10-15 14:58 编辑
黑屏做法:(放到公共事件里就好了,然后自己调用)
事件页第三页的"完全回复"可以回复我方全体队员.
提示用显示文章.
或者:(插入main之前,用完全回复指令就能显示了,无需显示文章)- class Interpreter
- def command_314
- iterate_actor(@parameters[0]) do |actor|
- actor.recover_all
- end
- carol3_66RPG = Window_Base.new((640-160)/2,128,120,60)
- carol3_66RPG.contents = Bitmap.new(carol3_66RPG.width - 32, carol3_66RPG.height - 32)
- carol3_66RPG.contents.draw_text(0,0,240,32,"完全恢复")
- Audio.se_play("Audio/SE/"+"105-Heal01",80,100)
- carol3_66RPG.opacity = 160
- for i in 0..30
- Graphics.update
- end
- for i in 0..10
- carol3_66RPG.opacity -= 30
- carol3_66RPG.contents_opacity -= 30
- Graphics.update
- end
- carol3_66RPG.dispose
- return true
- end
- end
复制代码 |
|