• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Zepheus Fiesta Cannot Login

Junior Spellweaver
Joined
Feb 7, 2012
Messages
119
Reaction score
25
De & EN Client

Code:
namespace DragonStudios.Auth.Network
{
    public static class GameOpCode
    {
        public struct Client
        {
            public enum H3 : byte
            {
                Version = 101,
                FileHash = 4,
                Login = 56,
                WorldReRequest = 27,
                WorldSelect = 11,
                BackToWorldSelect = 51,
                BackToWorldList = 55,
                GameLogout = 24,
            }
        }

        public struct Server
        {
            public enum H3 : byte
            {
                VersionIncorrect = 102,
                VersionAllowed = 103,
                FilecheckAllow = 5,
                Error = 9,
                WorldlistNew = 10,
                WorldServerIP = 12,
                WorldistResend = 28,
                BackToWorldSelect = 52,
            }
        }
    }
 
Experienced Elementalist
Joined
Jul 6, 2014
Messages
222
Reaction score
14
De & EN Client

Code:
namespace DragonStudios.Auth.Network
{
    public static class GameOpCode
    {
        public struct Client
        {
            public enum H3 : byte
            {
                Version = 101,
                FileHash = 4,
                Login = 56,
                WorldReRequest = 27,
                WorldSelect = 11,
                BackToWorldSelect = 51,
                BackToWorldList = 55,
                GameLogout = 24,
            }
        }

        public struct Server
        {
            public enum H3 : byte
            {
                VersionIncorrect = 102,
                VersionAllowed = 103,
                FilecheckAllow = 5,
                Error = 9,
                WorldlistNew = 10,
                WorldServerIP = 12,
                WorldistResend = 28,
                BackToWorldSelect = 52,
            }
        }
    }

WTB>Full source :^)
 
Back
Top