Hello.
I would like to transfer all the items from one character to another character which is going to be the player.ç
I was trying to create a for to transfer them from one to another, but I don't know which property gets the number of that array
Code: ags
Thank you.
I would like to transfer all the items from one character to another character which is going to be the player.ç
I was trying to create a for to transfer them from one to another, but I don't know which property gets the number of that array
for(i = 1, i < CharacterA.InventoryQuantity[].length(), i++) {
CharacterB.InventoryQuantity[i] = CharacterA.InventoryQuantity[i];
}
Thank you.