RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
BotClass.java
1package com.osroyale.content.bot.botclass;
2
3import com.osroyale.content.bot.PlayerBot;
4import com.osroyale.game.world.entity.mob.player.Player;
5import com.osroyale.game.world.items.Item;
6
7public interface BotClass {
8
9 Item[] inventory();
10
11 Item[] equipment();
12
13 int[] skills();
14
15 void initCombat(Player target, PlayerBot bot);
16
17 void handleCombat(Player target, PlayerBot bot);
18
19 void endFight(PlayerBot bot);
20
21 void pot(Player target, PlayerBot bot);
22
23 void eat(Player target, PlayerBot bot);
24
25}