08-11-2017, 05:01 AM
(This post was last modified: 08-11-2017, 05:03 AM by DerVVulfman.)
The suggestion in adding the second menu which only shows the special items assumed you did not know how to add a new option to the menu.
But it looks like you may not have read the script itself. As I stated on the 19th last month, you could normally bring up the item menu in a script call with:
$scene = Scene_Item.new
And the script which I supplied that same day stated you may use the script call of...
$scene = Scene_Item.new to show items other than special objects, and a script call of ...
$scene = Scene_Item.new(true) which only shows the special objects.
I altered the Item system so just adding (true) to the end of the statement shows only the special items, while it regularly hides them instead.
But it looks like you may not have read the script itself. As I stated on the 19th last month, you could normally bring up the item menu in a script call with:
$scene = Scene_Item.new
And the script which I supplied that same day stated you may use the script call of...
$scene = Scene_Item.new to show items other than special objects, and a script call of ...
$scene = Scene_Item.new(true) which only shows the special objects.
I altered the Item system so just adding (true) to the end of the statement shows only the special items, while it regularly hides them instead.