Register for your free account! | Forgot your password?

You last visited: Today at 09:55

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Upgrading to 5180?

Discussion on Upgrading to 5180? within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
Upgrading to 5180?

Since Hybrid's 5135 could let you log in using a 5165 without changing anything, I figured that the source upgraded to 5165 would let you at least log in with a 5180 client (after adding the seed packet **** to the auth server).
But it seems to stuck at the initializing screen of the client, and according the the game server the last packet was 1134.
So I searched epvp for a bit and found the 1134 packet (something about quest information) and added it and it went past that 1134 packet but now stays stuck at the 1135 packet which I have no clue of of what it is. So what is this 1135 packet and what is necessary to be upgraded to be able to log in?
Kiyono is offline  
Old 01/23/2011, 21:51   #2
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,377
Why not take a peek at immunes source to see what's needed to login? It works perfectly fine on 5180.
pro4never is offline  
Old 01/23/2011, 22:11   #3

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
Actually I did and changed all packets that could be upgraded to what Immune's source had, I also disabled all packets that were not in Immune's source and still the same =/
Kiyono is offline  
Old 01/23/2011, 22:46   #4
 
elite*gold: 0
Join Date: Feb 2009
Posts: 259
Received Thanks: 159
you don't need 1134
You upgrad Generaldata?
teroareboss1 is offline  
Old 01/23/2011, 23:32   #5

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
Code:
public unsafe struct DataPacket
    {
        public ushort Size;
        public ushort Type;
        public uint UID;
        public uint dwParam1;
        public ushort dwParam_Lo 
        { 
            get { return (ushort)dwParam1; }
            set { dwParam1 = (uint)((dwParam_Hi << 16) | value); }
        }
        public ushort dwParam_Hi 
        { 
            get { return (ushort)(dwParam1 >> 16); }
            set { dwParam1 = (uint)((value << 16) | dwParam_Lo); }
        }
        public TIME TimeStamp;
        public DataID ID;
        public ushort wFacing;
        public ushort wParam1;
        public ushort wParam2;
        public uint dwParam2;
        public uint dwParam3;
        private fixed byte TQServer[8];

        public static DataPacket Create()
        {
            DataPacket packet = new DataPacket();
            packet.Size = 0x25;
            packet.Type = 0x271A;
            packet.TimeStamp = TIME.Now;
            PacketBuilder.AppendTQServer(packet.TQServer, 8);
            return packet;
        }
    }
Code:
public DataPacket(uint UID, ushort wParam1, ushort wParam2, uint dwParam1, ushort Type)
            : base(8 + 37)
        {
            WORD(37, 0);
            WORD(10010, 2);
            this.UID = UID;
            this.dwParam1 = dwParam1;
            DWORD32((uint)DateTime.Now.GetHashCode(), 16);
            this.ID = Type;
            this.wParam1 = wParam1;
            this.wParam2 = wParam2;
            
        }
Doesn't look wrong.
Kiyono is offline  
Old 01/24/2011, 05:33   #6
 
elite*gold: 0
Join Date: Feb 2009
Posts: 259
Received Thanks: 159
Quote:
Originally Posted by Kiyono View Post
Code:
public unsafe struct DataPacket
    {
        public ushort Size;
        public ushort Type;
        public uint UID;
        public uint dwParam1;
        public ushort dwParam_Lo 
        { 
            get { return (ushort)dwParam1; }
            set { dwParam1 = (uint)((dwParam_Hi << 16) | value); }
        }
        public ushort dwParam_Hi 
        { 
            get { return (ushort)(dwParam1 >> 16); }
            set { dwParam1 = (uint)((value << 16) | dwParam_Lo); }
        }
        public TIME TimeStamp;
        public DataID ID;
        public ushort wFacing;
        public ushort wParam1;
        public ushort wParam2;
        public uint dwParam2;
        public uint dwParam3;
        private fixed byte TQServer[8];

        public static DataPacket Create()
        {
            DataPacket packet = new DataPacket();
            packet.Size = 0x25;
            packet.Type = 0x271A;
            packet.TimeStamp = TIME.Now;
            PacketBuilder.AppendTQServer(packet.TQServer, 8);
            return packet;
        }
    }
Code:
public DataPacket(uint UID, ushort wParam1, ushort wParam2, uint dwParam1, ushort Type)
            : base(8 + 37)
        {
            WORD(37, 0);
            WORD(10010, 2);
            this.UID = UID;
            this.dwParam1 = dwParam1;
            DWORD32((uint)DateTime.Now.GetHashCode(), 16);
            this.ID = Type;
            this.wParam1 = wParam1;
            this.wParam2 = wParam2;
            
        }
Doesn't look wrong.
Code:
    public unsafe struct DataPacket
    {
        public ushort Size;
        public ushort Type;//2
        public uint UID;//4
        public uint dwParam1;//8
        public ushort dwParam_Lo
        {
            get { return (ushort)dwParam1; }
            set { dwParam1 = (uint)((dwParam_Hi << 16) | value); }
        }
        public ushort dwParam_Hi
        {
            get { return (ushort)(dwParam1 >> 16); }
            set { dwParam1 = (uint)((value << 16) | dwParam_Lo); }
        }
        public TIME TimeStamp;//12
        public uint Unknown;//16
        public DataID ID;//20
        public ushort wFacing;//22
        public ushort wParam1;//24
        public ushort wParam2;//26
        public uint dwParam2;//28
        public uint dwParam3;//32
        public ushort Unknown2;//36
        private fixed byte TQServer[8];

        public static DataPacket Create()
        {
            DataPacket packet = new DataPacket();
            packet.Size = 0x25;
            packet.Type = 0x271A;
            packet.TimeStamp = TIME.Now;
            PacketBuilder.AppendTQServer(packet.TQServer, 8);
            return packet;
        }
    }
teroareboss1 is offline  
Thanks
1 User
Old 01/24/2011, 15:51   #7

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
Well that worked but why doesn't Immune's source have these unknowns?
Kiyono is offline  
Thanks
1 User
Old 01/27/2011, 04:39   #8
 
marlyandedsel's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 343
Received Thanks: 21
can i ask Is it source 5165 upgrade to 5180 can you tell me what needed to upgrade it from 5165 to 5180 i have source im using 5165 do we have to change all ?
marlyandedsel is offline  
Old 01/29/2011, 05:24   #9
 
hunterman01's Avatar
 
elite*gold: 20
Join Date: Dec 2006
Posts: 945
Received Thanks: 175
maybe ill post my 5325 source who knows...
hunterman01 is offline  
Thanks
1 User
Old 01/29/2011, 09:43   #10
 
marlyandedsel's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 343
Received Thanks: 21
Thanks....

Quote:
Originally Posted by hunterman01 View Post
maybe ill post my 5325 source who knows...
Yes that good... might help us .. thanks very if you do
marlyandedsel is offline  
Old 01/29/2011, 14:55   #11
 
chickmagnet's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 372
Received Thanks: 53
Quote:
Originally Posted by hunterman01 View Post
maybe ill post my 5325 source who knows...
i type wonna see it but idk if thats a good idea
chickmagnet is offline  
Old 01/29/2011, 15:17   #12
 
marlyandedsel's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 343
Received Thanks: 21
or just release it to someone who really need to learn about it.. not here in private I think...
marlyandedsel is offline  
Reply


Similar Threads Similar Threads
[Arena] 5180 Help!
01/23/2011 - CO2 Private Server - 7 Replies
Hello e*PvPers. I'm trying to learn how the packets are going, But I've got a trouble. Once i try to send the arena packet , the client crashes :/ I've made the packet from 12tails' Packet Structure. Please check if it's right. and forward me on the right way. There's the packet. public static COPacket ArenaInfo(Game.Character C) { byte Packet = new byte; COPacket P = new COPacket(Packet);//0 P.WriteInt16(2209);//2 ...
[5180] Packets
12/30/2010 - CO2 Private Server - 6 Replies
Hello Everybody,, I need little help Can Somebody tell me which packets I gotta update at 5180 My Current Source version was 5165 , Now It's 5180.. Which Packets Are Different Between 5165 - 5180? I appreciate your help Thanks. Best Regards, TheKnight
Hey patch 5180
11/05/2009 - Conquer Online 2 - 6 Replies
Takes out all of the files for multi client and replaces it. So you can only have 2 clients. Anyone working on making another multi client again?



All times are GMT +2. The time now is 09:55.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.