@dezz-nuts What you an do is use a variable instead of the built-in clone ID system.
For example:
set [variable] to 0;
repeat [number] times {
change [variable] by 1;
create clone of myself;
}
Afterwards, you can say:
when I start as clone {
if ([var] = 1) {
[action]
} else if ([var] = 2) {
[action]
} …
}
and so on
If you don’t understand I can simplify it