RuneHive-Game
Loading...
Searching...
No Matches
PrivateMessagePolicy.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity.mob.player.relations;
2
3
/** The enumeration of a players private messaging policy. */
4
public
enum
PrivateMessagePolicy
{
5
6
/** This setting allows for everyone to see this user's online status. */
7
ALLOW
,
8
9
/** This setting only allows friends to see this user's online status. */
10
FRIENDS_ONLY
,
11
12
/** This setting hides this user's online status to all players. */
13
BLOCK
14
}
com.runehive.game.world.entity.mob.player.relations.PrivateMessagePolicy
The enumeration of a players private messaging policy.
Definition
PrivateMessagePolicy.java:4
com.runehive.game.world.entity.mob.player.relations.PrivateMessagePolicy.FRIENDS_ONLY
FRIENDS_ONLY
This setting only allows friends to see this user's online status.
Definition
PrivateMessagePolicy.java:10
com.runehive.game.world.entity.mob.player.relations.PrivateMessagePolicy.ALLOW
ALLOW
This setting allows for everyone to see this user's online status.
Definition
PrivateMessagePolicy.java:7
com.runehive.game.world.entity.mob.player.relations.PrivateMessagePolicy.BLOCK
BLOCK
This setting hides this user's online status to all players.
Definition
PrivateMessagePolicy.java:13