int x = in.nextInt(); // x position of your pod
int y = in.nextInt(); // y position of your pod
int nextCheckpointX = in.nextInt(); // x position of the next check point
int nextCheckpointY = in.nextInt(); // y position of the next check point
int nextCheckpointDist = in.nextInt(); // distance to the next check point
int nextCheckpointAngle = in.nextInt(); // angle to the next check point
but the nextCheckpointX and nextCheckpointY are always jumping around. help is appreciated
Anyway, can’t replicate that. Did you System.err.println(nextCheckpointX + " " + nextCheckpointY); to see when they change and to what they change?
You can link directly to a replay, like this: https://www.codingame.com/replay/371287105 (unfortunately without stderr msgs)
But with the map parameters others can test the same setup.