赞 | 1 |
VIP | 171 |
好人卡 | 21 |
积分 | 4 |
经验 | 59678 |
最后登录 | 2024-7-30 |
在线时间 | 1292 小时 |
- 梦石
- 0
- 星屑
- 362
- 在线时间
- 1292 小时
- 注册时间
- 2013-1-12
- 帖子
- 3590
|
3楼
楼主 |
发表于 2013-10-13 13:41:12
|
只看该作者
Garbage Number: 2 / 雜物編号: 2- #====================
- # 间隔战斗才可使用道具 BY:Panda King
- #====================
- module Battle_after
- Renew_swith = 20
- end
- class Scene_Battle < Scene_Base
- include Battle_after
- def pre_terminate
- super
- $game_switches[Renew_swith] = false
- Graphics.fadeout(30) if SceneManager.scene_is?(Scene_Map)
- Graphics.fadeout(60) if SceneManager.scene_is?(Scene_Title)
- end
- end
复制代码 Usage:
Chose a item that you want to apply the effect to.(Can be use once between every battle)
Link it to a common event, set a Condition Branch between ether switch you set is on.
If on, no effect, if off, have effect.
This is a dummy script... I think anyone with the ability to type can make this script.... |
|