DCWarhound
Dakka Dakka
Having a little problem,what does this mean?
I've striped my bot to the basics and it still happens
SYSTEM: You have made 10000 calls to setXX methods without calling execute()
SYSTEM: Robot disabled: : Too many calls to setXX methods
I've striped my bot to the basics and it still happens
package FirstyListy;
import robocode.*;
//import java.awt.Color;
// API help : http://robocode.sourceforge.net/docs/robocode/robocode/Robot.html
/**
* TestRobot - a robot by (your name here)
*/
public class TestRobot extends AdvancedRobot{
int turnGunDirection = 1;
public void run() {
setAdjustRadarForRobotTurn(true);
while (true) {
setTurnRadarRight(360);
}
}
public void onScannedRobot(ScannedRobotEvent e) {
}
public void onHitByBullet(HitByBulletEvent e) {
}
public void onHitWall(HitWallEvent e) {
}
public void onHitRobot (HitRobotEvent e) {
}
}