赞 | 0 |
VIP | 465 |
好人卡 | 35 |
积分 | 11 |
经验 | 27106 |
最后登录 | 2020-5-5 |
在线时间 | 404 小时 |
Lv3.寻梦者 永久的旅行者
- 梦石
- 1
- 星屑
- 110
- 在线时间
- 404 小时
- 注册时间
- 2006-12-13
- 帖子
- 3091
|
简单的说明/思路:
Scene_Menu第29行,改成这样的话...
if $game_switches[3]==true
# 物品、特技、装备、状态无效化
@command_window.disable_item(0)
@command_window.disable_item(1)
@command_window.disable_item(2)
@command_window.disable_item(3)
end 开关3打开时,菜单里的第1、2、3、4项就会变黑...
然后在128行,
# 演奏确定 SE
$game_system.se_play($data_system.decision_se)
# 切换到物品画面
$scene = Scene_Item.new 变成
if $game_switches[3]==true
# 演奏确定 SE
$game_system.se_play($data_system.decision_se)
# 切换到物品画面
$scene = Scene_Item.new
end 这样,只要开关3打开,道具界面才能被打开... 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|