Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Bots & Macros
You last visited: Today at 07:15

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

Advertisement



Stripped ProjectAlchemy Source Code

Discussion on Stripped ProjectAlchemy Source Code within the CO2 Bots & Macros forum part of the Conquer Online 2 category.

Reply
 
Old 04/19/2011, 22:43   #1141
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
Quote:
Originally Posted by pyralis View Post
I've been browsing the programming forum but I still couldn't find info on it
could someone tell me the steps in hosting the proxy with hamachi?

btw there are many hard coded strings in the code, do I need to modify those too for the first run?
I mean these: public static string ProxyIp = "5.1.98.6";

thanks a lot

*edit, Ill keep checking the older post in this thread, lots of information in it
although not many got stuck where i did
thank you for pm ill try that now
Most of those strings are modified from the settings.txt file when you run the proxy.
pro4never is offline  
Thanks
1 User
Old 04/20/2011, 20:26   #1142
 
elite*gold: 0
Join Date: Aug 2010
Posts: 951
Received Thanks: 76
Ok so on further inspection my char jumps into the mob then the mob moves and my char stays where he is and keeps attacking without jumping into the mob all the time so that`s a good thing Unsure as to how to speed him up though and still having issues with cyclone activating so the char then stops what he is doing and also picking up more than one item from mob drops.
denominator is offline  
Old 04/21/2011, 16:47   #1143
 
OELABOELA's Avatar
 
elite*gold: 223
Join Date: Dec 2007
Posts: 1,076
Received Thanks: 257
So basicly, your hunting works? But the looting is a problem? Because i will be glad to help, but i won't chew the code, and give it, ill give instructions how, and you must code it yourself.
OELABOELA is offline  
Old 04/21/2011, 18:25   #1144
 
BadBoY_AC's Avatar
 
elite*gold: 0
Join Date: Dec 2004
Posts: 903
Received Thanks: 43
cant post it right now cuz im on my laptop... but as soon as i come home ill post a loot-code (easter holidays so not home lol) but i figured out a good way.. thx to denominator, helped me a lot..
BadBoY_AC is offline  
Old 04/21/2011, 18:50   #1145
 
elite*gold: 0
Join Date: Aug 2010
Posts: 951
Received Thanks: 76
My hunting and pathfinding system is working fine yes. The looting system is the problem but as I said there is the newer problem of when cyclone activates the char stops hunting and I have to either jump or manually hit the mob for the bot to start working again. I have never used cyclone before though so it may have always been this way. I think when I used it before the char was still only 1st RB and ninja?
denominator is offline  
Old 04/22/2011, 03:29   #1146
 
elite*gold: 0
Join Date: Apr 2009
Posts: 11
Received Thanks: 1
any cand code this for conquest? i can pay for it.

PM if is ok
mateco000 is offline  
Old 04/22/2011, 13:16   #1147
 
demon17's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
Oh yeah .. im back again ..

But i have some problems what i dont understand ,.. how exactly i need to change and what in this
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;

namespace AlchemyProxy
{
    public partial class Handler
    {
        public static void AuthSvrPacket(byte[] Data, LoginClient Client)
        {
            try
            {
                Client.ServerAuth.DecryptBackwards(Data);
                PacketReader PR = new PacketReader(Data, 2);
                ushort Type = PR.ReadUInt16();
                bool send = true;
                switch (Type)
                {
                    case 1059:
                        Client.PassSeed = (int)PR.ReadUInt32();
                        break;
                    case 1055:
                        if (Data.Length > 50)
                        {
                            byte[] Pack = Packets.AuthResponse(Data, Client);
                            Client.ServerAuth.Encrypt(Pack);
                            Client.ClientSock.Send(Pack);
                            send = false;
                        }
                        else
                        {
                            COut("Server refused connection!");
                            Client.ServerAuth.Encrypt(Data);
                            Client.ClientSock.Send(Data);
                            Client.AuthServer.Disconnect();
                            Client.ClientSock.Disconnect(false);
                            return;
                        }
                        break;
                    default:
                        Console.WriteLine("Auth server packet of type: " + Type);
                        break;
                }
                if (send)
                {
                    Client.ServerAuth.Encrypt(Data);
                    Client.ClientSock.Send(Data);
                    return;
                }
            }
            catch { }
        }
        public static void AuthCliPacket(byte[] Data, LoginClient Client)
        {
            try
            {
                Client.ClientAuth.Decrypt(Data);
                PacketReader PR = new PacketReader(Data, 0);
                PR.ReadUInt16();
                ushort type = PR.ReadUInt16();
                switch (type)
                {
                    case 1086:
                        byte[] Usr = PR.ReadBytes(16);
                        string Username = Encoding.ASCII.GetString(Usr);
                        Username = Username.Replace("\0", "");
                        PR.ReadBytes(112);
                        byte[] Pass = PR.ReadBytes(16); //Removed decryption
                        PR.ReadBytes(112);
                        string Passw = Encoding.ASCII.GetString(Pass);
                        Passw = Passw.Replace("\0", "");
                        byte[] Svr = PR.ReadBytes(16);
                        string Server = Encoding.ASCII.GetString(Svr);
                        Server = Server.Replace("\0", "");
                        Client.Username = Username;
                        Client.Server = Server;
                        Client.Password = Passw;

                        break;
                    case 1100:
                        break;
                    default:
                        Console.WriteLine("Augh! Unknown client auth packet of type: " + type);
                        break;
                }
                Client.ClientAuth.EncryptBackwards(Data);
                Client.AuthServer.Send(Data);
            }
            catch { }
        }
    }
}
?
demon17 is offline  
Old 04/22/2011, 17:18   #1148
 
BadBoY_AC's Avatar
 
elite*gold: 0
Join Date: Dec 2004
Posts: 903
Received Thanks: 43
change the case 1086 to 1060.. that fixed my login problem... but you didnt even ask what your problem is lol..
BadBoY_AC is offline  
Old 04/22/2011, 18:07   #1149
 
OELABOELA's Avatar
 
elite*gold: 223
Join Date: Dec 2007
Posts: 1,076
Received Thanks: 257
Quote:
Originally Posted by BadBoY_AC View Post
change the case 1086 to 1060.. that fixed my login problem... but you didnt even ask what your problem is lol..
I've also posted many times that they have to change it to 1060, but you know, leechers don't listen, they only take.
OELABOELA is offline  
Thanks
2 Users
Old 04/22/2011, 19:00   #1150
 
demon17's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
Quote:
Originally Posted by OELABOELA View Post
I've also posted many times that they have to change it to 1060, but you know, leechers don't listen, they only take.


yeha but i wasnt understand that part )=))

anyway this is what i understand from the previsious posts
Code:
public static void AuthCliPacket(byte[] Data, LoginClient Client)
        {
            try
            {
                Client.ClientAuth.Decrypt(Data);
                PacketReader PR = new PacketReader(Data, 0);
                PR.ReadUInt16();
                ushort type = PR.ReadUInt16();
                switch (type)
                {
                    case 1086: [COLOR="Red"] ( there I need to change the 1086 to 1060 ?)[/COLOR]
                        byte[] Usr = PR.ReadBytes(16);
                        string Username = Encoding.ASCII.GetString(Usr);
                        Username = Username.Replace("\0", "");
                        PR.ReadBytes(112);
                        byte[] Pass = PR.ReadBytes(16); //Removed decryption
                        PR.ReadBytes(112);
                        string Passw = Encoding.ASCII.GetString(Pass);
                        Passw = Passw.Replace("\0", "");
                        byte[] Svr = PR.ReadBytes(16);
                        string Server = Encoding.ASCII.GetString(Svr);
                        Server = Server.Replace("\0", "");
                        Client.Username = Username;
                        Client.Server = Server;
                        Client.Password = Passw;

                        break;
                    case 1100:
                        break;
                    default:
                        Console.WriteLine("Augh! Unknown client auth packet of type: " + type);
                        break;
                }

So tell me when i understand something wrong
demon17 is offline  
Old 04/22/2011, 19:10   #1151
 
BadBoY_AC's Avatar
 
elite*gold: 0
Join Date: Dec 2004
Posts: 903
Received Thanks: 43
just one answer: yes

^^^^
BadBoY_AC is offline  
Old 04/22/2011, 19:23   #1152
 
demon17's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
Quote:
Originally Posted by BadBoY_AC View Post
just one answer: yes

^^^^
xD ... Im not new but im out of work ...


so I just need to rename the 1086 to 1060 ?
demon17 is offline  
Old 04/22/2011, 20:15   #1153
 
BadBoY_AC's Avatar
 
elite*gold: 0
Join Date: Dec 2004
Posts: 903
Received Thanks: 43
^lol.. ... yeeeeeeeeeeeeeeeeeeeeeeees
BadBoY_AC is offline  
Old 04/22/2011, 22:26   #1154
 
demon17's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
Quote:
Originally Posted by BadBoY_AC View Post
^lol.. ... yeeeeeeeeeeeeeeeeeeeeeeees
oh $|-|!t i needed to reinstal my windows ...
I need to restart all my projects xD =(
demon17 is offline  
Old 04/23/2011, 18:42   #1155
 
OELABOELA's Avatar
 
elite*gold: 223
Join Date: Dec 2007
Posts: 1,076
Received Thanks: 257
Quote:
Originally Posted by demon17 View Post
oh $|-|!t i needed to reinstal my windows ...
I need to restart all my projects xD =(
Ok, that's good. Now start good, and dont use any sleeps. Use timestamps correct and such. Basicly what p4n gave you, is a complete proxy, only you have to say what it has to do. And if you do that right, i'ts basicly a good/done proxy.
OELABOELA is offline  
Reply


Similar Threads Similar Threads
[RELEASE(SOURCE CODE)]-- KabBOT2 v1 Full Source(vb6)
10/07/2011 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 106 Replies
I've been meaning to post this for awhile but I pretty much forgot about it. I've been getting quite a few requests for it so I decided to finally get around to posting it. #1. So here you go, Just have or Download Visual Basic 6, you need to update it to VbRuntime 6 Service Pack 6. #2. Run the file name KabBOT.vbp. #3. Enjoy. 100% Virus Free VirusTotal.com report. VirusTotal - Free Online Virus, Malware and URL Scanner
[RELEASE] [OPEN SOURCE] CE 5.5 Pointer to AutoIt Source-Code
02/13/2011 - AutoIt - 6 Replies
Habe heute erst gemerkt, dass es hier eine AutoIt Sektion gibt xD also poste ich mal mein Programm mit rein. Funktionsweise: 1. in CE Rechtsklick auf den Pointer und auf "Copy" klicken 2. in meinem Programm auf "Code generieren" klicken 3. In euer Scite gehen und einfügen Hier ist der Source Code vom Programm:



All times are GMT +1. The time now is 07:15.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.