EDIT: Replicant COMP producing error (solved)

Hi everyone.

I am using Replicator COMP trying to replicate a Geo COMP and offset each replicant according to a table. But instead of passing the tx, ty parameters from the table to the Geo COMP replicants, I am getting the error message that you see below. Any help?

Pasting the solution posted on Facebook by Evan Gannon:

Try using me.digits instead of me.name. The .digits attribute will return “the numeric value of the last consecutive group of digits in the name”. When you write a reference for a table DAT that uses a string, it will try to find a row (or column) where the contents match that string, whereas if you use an integer it will specify that row or column index, so using me.digits should get the behavior you’re looking for. Alternatively, you could add an additional column called “name”, but when using a replicator in this way sticking with the row index from .digits is probably simpler.