1package com.runehive.content.bot.objective.impl;
3import com.runehive.content.bot.PlayerBot;
4import com.runehive.content.bot.objective.BotObjectiveListener;
5import com.runehive.game.world.position.Position;
6import com.runehive.util.RandomUtils;
13 if (
bot.movement.needsPlacement()) {
19 if (x < 3061) x = 3061;
20 if (y < 3525) y = 3525;
21 if (x > 3101) x = 3101;
22 if (y > 3547) y = 3547;
void finish(PlayerBot bot)
Represents a single tile on the game world.
static Position create(int x, int y, int z)
Creates a location.
A static-util class that provides additional functionality for generating pseudo-random numbers.
static int inclusive(int min, int max)
Returns a pseudo-random int value between inclusive min and inclusive max.