33 if (bot.movement.needsPlacement()) {
37 int x = bot.getX() + RandomUtils.inclusive(-5, 5);
38 int y = bot.getY() + RandomUtils.inclusive(-5, 5);
39 if (x < 3061) x = 3061;
40 if (y < 3525) y = 3525;
41 if (x > 3101) x = 3101;
42 if (y > 3547) y = 3547;
45 bot.pause(RandomUtils.inclusive(4, 15));