Recently I made this post
And I got my answer for it.
However, I’ve come to realize that this answer (Although satisfies my question) does in fact have a small problem.
Right now I’m able to get a RowName from a data table, within another data table.
As shown here:
However, if I want to build an array to select several items from the same data table (In this example DT_Weapons), I’d basically have to re-select the data table to then be able to select the RowName. (Which is very tedious)
As seen here:
Essentially, what I want to do is to select the data table once, and then have the rowname as an array, so I can select however many I want without needing to put the data table each single time.
So… what I want to happen is this:
Is this even possible?
I’m aware this will need C++, I tried to dabble with the code and see if I can do something, but I’m not so experienced with C++ so I got stuck.