1package com.osroyale.content.bot.objective.impl;
3import com.osroyale.content.bot.PlayerBot;
4import com.osroyale.content.bot.objective.BotObjective;
5import com.osroyale.content.bot.objective.BotObjectiveListener;
6import com.osroyale.game.world.position.Position;
7import com.osroyale.util.RandomUtils;
35 private static final Position[] BANK_LOCATIONS = {
44 Position position = RandomUtils.random(BANK_LOCATIONS);
45 bot.walkTo(position, () -> finish(bot));
50 bot.schedule(RandomUtils.random(6, 12), () ->
BotObjective.RESTOCK.init(bot));