How do I
STOP certain armor ID's from being displayed in in the Equip Item window in the equip scene?
I know how to make ONLY certain armors in a menu
I just use a loop like this right?
for i in [armor ID's that I want to display here]
There is a better alternative. This piece of code:
for i in 1...$data_armors.size
You need to change it to:
for i in (1...$data_armors.size).to_a - [IDs that you want REMOVED from display]