[FEATURE] Friends list getter

This commit is contained in:
Emmastone
2016-11-17 14:36:49 +00:00
parent aee5f71aae
commit 650ae39acb
2 changed files with 11 additions and 0 deletions
@@ -34,6 +34,8 @@ public interface Client {
int getPlane();
long[] getFriendsListAsLong();
int[] getMenuActionId();
int[] getMenuAction1();
@@ -77,6 +77,15 @@ public class Game {
return Loader.getClient().getPlane();
}
/**
* Gets the friends list long values
*
* @return long values of friends list
*/
public static long[] getFriendsListAsLong() {
return Loader.getClient().getFriendsListAsLong();
}
/**
* Determines whether this client has action 4 hooked
*