final case classFriendsRequest(action: Int, friend: String) extends PlanetSideGamePacket with Product with Serializable
Manage the lists of other players whose names are retained by the given player.
Players can be remembered by their names and added to a list of remembered names - the "friends list."
They can also be dropped from the list.
A list of "ignored" player names can also be retained.
Ignored players will have their comments stifled in the given player's chat window.
No name will be appended or removed from any list until the response to this packet is received.
Actions that involve the "remove" functionality will locate the entered name in the local list before dispatching this packet.
A complaint will be logged to the event window if the name is not found.
Actions:
0 - display friends list
1 - add player to friends list
2 - remove player from friends list
4 - display ignored player list
5 - add player to ignored player list
6 - remove player from ignored player list
Exploration:
Are action = 3 and action = 7 supposed to do anything?
action
the purpose of this packet
friend
the player name that was entered;
blank in certain situations
Manage the lists of other players whose names are retained by the given player.
Players can be remembered by their names and added to a list of remembered names - the "friends list." They can also be dropped from the list. A list of "ignored" player names can also be retained. Ignored players will have their comments stifled in the given player's chat window. No name will be appended or removed from any list until the response to this packet is received.
Actions that involve the "remove" functionality will locate the entered name in the local list before dispatching this packet. A complaint will be logged to the event window if the name is not found.
Actions:
0 - display friends list
1 - add player to friends list
2 - remove player from friends list
4 - display ignored player list
5 - add player to ignored player list
6 - remove player from ignored player list
Exploration:
Are action = 3 and action = 7 supposed to do anything?
the purpose of this packet
the player name that was entered; blank in certain situations