Enum ServerConnectionType
Represents the type of server connection the client is currently using. Used to track connection state transitions in the client.
public enum ServerConnectionType : byte
Fields
ConnectingToWorld = 2Connecting to the world server (transition state).
Login = 1Connected to the login server.
None = 0No active server connection.
Scene = 4Connected to a specific scene server.
World = 3Connected to the world server.