I found this, but It seem that I can't get it working right
In Window_Item, I replace this
with
I change the ID to the element #"28" and set Key item Book to element 28 so it doesn't show itself in batttle, but it still shows if any can tell me how to use this thank in advance.
In Window_Item, I replace this
Code:
for i in 1...$data_items.size
if $game_party.item_number(i) > 0
@data.push($data_items[i])
end
end
with
Code:
for i in 1...$data_items.size
if $game_party.item_number(i) > 0
unless $data_items[i].element_set.include?(ID)
@data.push($data_items[i])
end
end
end
Change ID to the ID of the attribute you don't want to include. Then apply the attribute to the items you don't want to appear there.
I change the ID to the element #"28" and set Key item Book to element 28 so it doesn't show itself in batttle, but it still shows if any can tell me how to use this thank in advance.