public class MyRobot extends Robot {
static ExternClass ec = null;
public void run() {
if(ec == null)
ec = new ExternClass();
}
}
then ec should be kept static till the battle is over. All right till now (i hope so), but do i have to make my variables in ec static too, in order to save them over the whole battle???
--deathcon
No you don't need to do that. -- Pulsar