Stripped ProjectAlchemy Source Code

02/02/2011 20:00 warning3#856
ZOMG I got it working. Now to read the whole thread to find out the hunt code loot code and speed hack. Fun fun fun. I might need help :O srryz.
02/02/2011 21:45 warning3#857
Are there any working hunting codes in this thread?
02/02/2011 22:06 hippie#858
ok im goin 2 try explain my problem hopefully someone canhelp me i haf 3 pc 1 win 7 64 2 win7 32 3 win xp. now i had done everything in the set up on pc nuber 2 i can login but proxy crashes still working on that now im tryin to find out if its a hardware issue or not so i try to load the proxy on pc 1 i repeat al the step need to install the proxy but when i try to log in it doesnt even try to connect to the proxy it just sit at account server i change all the ip to the computer hosting the proxy but it only want to work when the proxy is on pc 2
02/02/2011 23:31 denominator#859
Hippie are you trying to use the proxy seperately on 3 pcs or do you have the proxy running on one pc only? I have my proxy on my pc but connect my laptop to it using local IP such as 192.168.0.*** as loader settings, it works because I am using a router and have set my local IP on my pc to static so it never changes from 192.168.0.***
02/03/2011 00:11 hippie#860
no i use one as the proxy n have the other connect to it but if i turn that pc off n try to run the proxy on another one of my other pc for testing i cant connect to it
02/03/2011 00:58 denominator#861
Ahhh yeah I understand what you mean, perhaps there is something missing from the other pcs? Like for example netframework basically something that is not needed to use it from another computer but is needed if you want to host it on the pc(s) you are having trouble with? I`m just making guesses here but it could be something as simple as that lol.

Can anybody help me with this checkbox thing, I have a rough idea of what it is I need to do BUT Owner is just closing GUI and not disconnecting the client itself. Again I am TRYING to learn C# as best I can and with some tuts I am slowly learning but I have hit a hurdle which I can`t get over :(

So far the tutorials I have seen just tell you how to get a pop up box to open with strings and ints but doesn`t explain to me how to get it to activate something already coded in if you understand what I mean?

Code:
 public bool dcplayers;
        public GUI()
        {
            //Owner = C;
            InitializeComponent();
        }

        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            dcplayers = Owner.DcAllPlayers; 
            if (checkBox1.Checked == true)
            {
                dcplayers = Owner.DcAllPlayers && checkBox1.Checked;
            }
        }
Code:
namespace AlchemyProxy
{
    public partial class GUI : Form
    {
       
        public Client Owner;
        public bool dcplayers;
        public GUI()
        {
            //Owner = C;
            InitializeComponent();
        }
        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            CheckBox staticCheckBox = new CheckBox();
            staticCheckBox.Checked = true;
            if (staticCheckBox.Checked)
            {
                  Owner.DcAllPlayers = true;   <<<----Just closes GUI when checkbox clicked what am I missing?
            }

            else
            {
                  Owner.DcAllPlayers = false;  
            }
        }
02/03/2011 02:43 hippie#862
well i haf .net framework on all 3 pcs its really weird lol
02/03/2011 02:53 denominator#863
Netframework was just an example :P
02/03/2011 05:55 hippie#864
what else could it be :(
02/03/2011 06:21 donady#865
Quote:
Originally Posted by hippie View Post
what else could it be :(
maybe ur ip configuration had a problem...
02/03/2011 17:55 hippie#866
doubt that i used my local ip addy as well as hamachi both do the same thing one pc i can connect to the proxy but proxy crashes other pc it doesnt even try to connect to the proxy
02/04/2011 01:25 warning3#867
Ehh can anyone help? I have a code which I didnt create I just need some help

I dont need you guys to do the work for me, just help with 1 code.
02/04/2011 10:39 demon17#868
P4N what is mean when i get dissconect and in console is wrote
being Disconnected. Last packet sent : 0
02/04/2011 18:22 Warlax#869
Quote:
Originally Posted by demon17 View Post
P4N what is mean when i get dissconect and in console is wrote
being Disconnected. Last packet sent : 0
breakpoint on that message being written then work ur way back up the callstack and ull see
02/04/2011 21:31 pro4never#870
When you get disconnected from the game server I print out the last packet type sent. Sounds to me like you're getting dc'd before any packets can be sent.