I did a Search on arrays in forum but couldn't find an answer, what I want to do is copy the values in one of my arrays to another array.
For example: Enemies(indexA) to RandomEnemies(IndexB), both arrays are of the same type i.e. Enemies() as Entity and RandomEnemies() as Entity.
Since my Random Enemies get deleted when they are defeated and they will also possibly be modified and I want keep the base Enemies that have been loaded for later use I though it would be easiest if I just copied them into the RandomEnemies array.
Whats the proper command to do this, I was thinking maybe this:
RandomEnemies(local_index) = Enemies(X)
Would that copy all the elements over?