Project1
标题:
脚本里 怎样强制更改某样物品为不能使用?
[打印本页]
作者:
傲娇のLoli
时间:
2010-11-3 16:02
提示:
作者被禁止或删除 内容自动屏蔽
作者:
迷路子
时间:
2010-11-3 17:30
使用脚本还是事件完成判断?
如果是在脚本中完成
可修改window_item中的draw_item
在enabled = enable?(item)下面加入
if $game_variables[1] == 20
enabled = false if item == $data_items[10]
end
复制代码
大致是类似这样
不确定这样能否做成
事件有请事件达人了
我只会脚本的做法……
作者:
38571240
时间:
2010-11-3 22:04
这样的话,请在class Game_Party中的def item_can_use?(item)下加入:
return false if $game_variables[1] == 20 && item.id == 10
复制代码
即可
作者:
傲娇のLoli
时间:
2010-11-4 13:04
提示:
作者被禁止或删除 内容自动屏蔽
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1