AdvancedRobot
(Redirected from Advanced robot)
Jump to navigation
Jump to search
This page is dedicated for describing the robocode.AdvancedRobot
In order to convert a Robot into an AdvancedRobot, replace:
public class NameOfRobot extends Robot { //...
with:
public class NameOfRobot extends AdvancedRobot { //...
This will allow you to access setXXX() methods, as well as other parts of Robocode.
Learn more at the AdvancedRobot documentation.