[Array] Create a group of integer on my GET node

i have created an event that change value of my price in one of my item in my array. It need a target to know which item to change.

Is there a way to get 3 specific item from my array and group them ?

i only found “Random Integer in range”
i want “Integers in range”
not random
:frowning:

The Get Node can only ever return a single object inside an array defined by the element index you provide.

You will have to perform N number of Get operations to return N number of objects. This is commonly done using a ForLoop.

if you want make new array, with data use old array. first you must select data from old array first. then set into new array.

here the sample, i set new array, from arrayOfMaster[3] , arrayOfMaster[4] and arrayOfMaster[5]

sorry for my bad english.

@DevilsD
can you show me an example when you will have some time ? I m very visual :wink:

@udin jelek
My array of master are Master_Blueprint.
And the target (of what i want to do ) is need to be an actor

then like devilsD said, just make for loop.

here the sample

sorry for my bad English

Exactly !
the node “ForLoop” was the node i needed
thx all