Package org.rspeer.game.social
Class Relationships
- java.lang.Object
-
- org.rspeer.game.social.Relationships
-
public class Relationships extends Object
Provides operations related to the games social system. This includes befriended players and ignored players
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Relationships.FriendsChat
static class
Relationships.Party
static class
Relationships.SocialTab
-
Constructor Summary
Constructors Constructor Description Relationships()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
add(Relationships.SocialTab context, String name)
static AssociateQuery<RSBefriendedPlayer,Associate<RSBefriendedPlayer>>
friends()
static Relationships.Party
getClan()
static Relationships.Party
getGuestClan()
static Relationships.Party
getIronmanGroup()
static RelationshipQuery<RSIgnoredPlayer,Chatter<RSIgnoredPlayer>>
ignores()
static boolean
remove(Relationships.SocialTab context, String name)
-
-
-
Method Detail
-
ignores
public static RelationshipQuery<RSIgnoredPlayer,Chatter<RSIgnoredPlayer>> ignores()
-
friends
public static AssociateQuery<RSBefriendedPlayer,Associate<RSBefriendedPlayer>> friends()
-
add
public static boolean add(Relationships.SocialTab context, String name)
-
remove
public static boolean remove(Relationships.SocialTab context, String name)
-
getClan
public static Relationships.Party getClan()
-
getIronmanGroup
public static Relationships.Party getIronmanGroup()
-
getGuestClan
public static Relationships.Party getGuestClan()
-
-