Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
( 4)

Hi, I'm not IJ but I did some experimentation and I think I've figured it out - it seems the card.copy and card.paste commands let you copy multiple widgets at once.

So you'd do like this:

card.paste[A.copy[A.widgets.X,A.widgets.Y,A.widgets.Z]]

(As a side note, if you're referring to a card in a script you can just use the card's name, you don't need the deck.cards in front of it)

Let me know if this works for you!

( 1)

oooooooooo!!! thank you so much, millie! i'll try as soon as i can!

( 1)

worked like a charm <3 thank you once again!

( 4)

Just to build on this, if the only widgets on card A are X, Y, and Z, you can copy them all with:

A.copy[A.widgets]

And here's one other slightly more concise way to select a bunch of widgets by name:

A.copy[A.widgets @ "X","Y","Z"]
( 1)

i learned so much today!