Packages

final case class LoginRespMessage(token: String, error: Type, stationError: Type, subscriptionStatus: Type, unkUIRelated: Long, username: String, privilege: Long) extends PlanetSideGamePacket with Product with Serializable

This message is sent from the server to the client upon reception of a LoginMessage.

The result of the login is contained in this message. When a login is successful, a session token is returned to the client which then forwards this to the World server it chooses to connect to.

In terms of failed logins, the PS client favors errors in this order

1. LoginError 2. StationError 3. StationSubscriptionStatus

Don't try and set more than one error at the same time. Just provide a single error message to be displayed.

token

A 'token' which acts exactly like a session cookie in a browser. Allows logins to not use a password

error

A general login error message

stationError

A PlanetSide Sony Online Entertainment (SOE) station result

subscriptionStatus

A response detailing the current subscription type

unkUIRelated

An unknown possible bitfield that controls some game variables (possibly expansions?)

username

The login username

privilege

If set above 10000, then the user has access to GM commands. Not sure of other values.

Source
LoginRespMessage.scala
Linear Supertypes
Product, Equals, PlanetSideGamePacket, PlanetSidePacket, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LoginRespMessage
  2. Product
  3. Equals
  4. PlanetSideGamePacket
  5. PlanetSidePacket
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new LoginRespMessage(token: String, error: Type, stationError: Type, subscriptionStatus: Type, unkUIRelated: Long, username: String, privilege: Long)

    token

    A 'token' which acts exactly like a session cookie in a browser. Allows logins to not use a password

    error

    A general login error message

    stationError

    A PlanetSide Sony Online Entertainment (SOE) station result

    subscriptionStatus

    A response detailing the current subscription type

    unkUIRelated

    An unknown possible bitfield that controls some game variables (possibly expansions?)

    username

    The login username

    privilege

    If set above 10000, then the user has access to GM commands. Not sure of other values.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def encode: Attempt[BitVector]
    Definition Classes
    LoginRespMessagePlanetSidePacket
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. val error: Type
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. def opcode: GamePacketOpcode.Value
  16. val privilege: Long
  17. def productElementNames: Iterator[String]
    Definition Classes
    Product
  18. val stationError: Type
  19. val subscriptionStatus: Type
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. val token: String
  22. val unkUIRelated: Long
  23. val username: String
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Product

Inherited from Equals

Inherited from PlanetSideGamePacket

Inherited from PlanetSidePacket

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped