by equinox » Fri Apr 03, 2009 10:31 pm 
			
			Hi at ALL,
in script:
crate EROE1-2-3
for destroy:
DestroyActor(getclone2(EROE.name, 1));
DestroyActor(getCloneIdx(EROE.name, 1));
DestroyActor(getCloneIdx("EROE", 1));
NOT WORK x 3.
Is there solution for this? Tnk1000.
===========================
 int t;
 for(t = 13; t < 22; t++){
  if(cloneindex == t){
   DestroyActor("Event Actor");
  }
 }
in this code ,work...but i prefer...DestroyActor(getCloneIdx("EROE", 1)) or something similar:
 int TTT;
 for(TTT = 13; TTT < 22; TTT++){
   DestroyActor(getCloneIdx("EROE", TTT))
  }
 }