Oink_Oink
(Oink_Oink)
1
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

DevilsD
(Matt Boatswain)
2
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.
udin_jelek
(udin jelek)
3
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.
Oink_Oink
(Oink_Oink)
4
@DevilsD
can you show me an example when you will have some time ? I m very visual 
@udin jelek
My array of master are Master_Blueprint.
And the target (of what i want to do ) is need to be an actor
udin_jelek
(udin jelek)
5
then like devilsD said, just make for loop.
here the sample
sorry for my bad English
Oink_Oink
(Oink_Oink)
6
Exactly !
the node “ForLoop” was the node i needed
thx all