Page 1 of 1

Clone Index

PostPosted: Wed Jun 20, 2007 8:50 pm
by metal_pt
Hi!

Is there any way to know which is the highest/last clone index generated?

Best regards,
Jorge Pinto

PostPosted: Thu Jun 21, 2007 1:40 am
by makslane
You need to create a variable to track the max value, and use a code like this:

Code: Select all
if(cloneindex > trackcloneindex) trackcloneindex = cloneindex;

PostPosted: Thu Jun 21, 2007 3:12 pm
by metal_pt
Thanks Mak.
It did work :D
You were very helpfull :)