final case classExperienceAddedMessage(exp: Int, unk: Boolean = true) extends PlanetSideGamePacket with Product with Serializable
Displays a message about being awarded experience points in the events chat.
This packet does not actually award any experience points.
It merely generates the message: "You have been awarded x experience points."
... where x is the number of experience points that have been promised.
If the Boolean parameter is true, x will be equal to the number provided followed by the word "Command."
If the Boolean parameter is false, x will be represented as an obvious blank space character.
(Yes, it prints to the events chat like that.)
exp
the number of (Command) experience points earned
unk
defaults to true for effect;
if false, the number of experience points in the message will be blanked
Displays a message about being awarded experience points in the events chat.
This packet does not actually award any experience points. It merely generates the message:
"You have been awarded x experience points."
... where
x
is the number of experience points that have been promised. If theBoolean
parameter istrue
,x
will be equal to the number provided followed by the word "Command." If theBoolean
parameter isfalse
,x
will be represented as an obvious blank space character. (Yes, it prints to the events chat like that.)the number of (Command) experience points earned
defaults to
true
for effect; iffalse
, the number of experience points in the message will be blanked