RuneHive-Game
Loading...
Searching...
No Matches
BotClass.java
Go to the documentation of this file.
1package com.runehive.content.bot.botclass;
2
3import com.runehive.content.bot.PlayerBot;
4import com.runehive.game.world.entity.mob.player.Player;
5import com.runehive.game.world.items.Item;
6
7public interface BotClass {
8
10
12
13 int[] skills();
14
16
18
20
21 void pot(Player target, PlayerBot bot);
22
23 void eat(Player target, PlayerBot bot);
24
25}
This class represents a character controlled by a player.
Definition Player.java:125
The container class that represents an item that can be interacted with.
Definition Item.java:21
void handleCombat(Player target, PlayerBot bot)
void pot(Player target, PlayerBot bot)
void eat(Player target, PlayerBot bot)
void initCombat(Player target, PlayerBot bot)