Private Server Info and Support Thread

06/07/2014 15:14 Destiny#721
hi i find old main.swf public static const version:String="v2.1.20";
need help run how to config game.xml to this ver ??
skype edox772
06/07/2014 16:19 manulaiko3.0#722
Quote:
Originally Posted by edox77 View Post
hi i find old main.swf public static const version:String="v2.1.20";
need help run how to config game.xml to this ver ??
skype edox772
Decompile it, search for the function that loads game.xml and reverse it.

For example:
Code:
public function loadXml(XMLObject xmlObject)
{
    for(XMLNode node : xmlObject.nodes)
    {
        switch(node.name)
        {
            case "node1":
                  //do something
                  break;

            case "node2":
                  for(XMLParam param : node.params)
                  {
                      switch(param.name)
                      {
                          case "param1":
                               String value = param.value;
                               break;
             
                          case "param2":
                               int value1 = param.value;
                               break;
                      }
                   }
                   break;
        }
    }
}
The XML of this function is something like this:
Code:
<xml>
    <node1></node1>
    <node2 param1="asdf" param2="2"></node2>
</xml>
06/08/2014 00:04 Destiny#723
i dont know code in main cant reverse all
06/10/2014 12:20 TskulT#724
This is not completely the right place, but I think you guys must know this, can bp track hovers? I mean when you hover for example the user [Only registered and activated users can see links. Click Here To Register...] button, is information sent to bp about that? More specificaly, do they know how you move your mouse?

I personaly don't think this happens, but I ask just to be shure, if this is tracked I would have to make some security changes to my bot.
06/10/2014 15:13 Requi#725
Quote:
Originally Posted by TskulT View Post
This is not completely the right place, but I think you guys must know this, can bp track hovers? I mean when you hover for example the user [Only registered and activated users can see links. Click Here To Register...] button, is information sent to bp about that? More specificaly, do they know how you move your mouse?

I personaly don't think this happens, but I ask just to be shure, if this is tracked I would have to make some security changes to my bot.
Hover no. Click yes. That's what I know.

Maybe there is a second emulator running for that stiff.
06/10/2014 16:00 manulaiko3.0#726
Quote:
Originally Posted by Requi View Post
Hover no. Click yes. That's what I know.

Maybe there is a second emulator running for that stiff.
There's no code in main.swf that sends hover stats to the server, but it detects when you hover a button.
06/10/2014 16:03 Requi#727
Quote:
Originally Posted by manulaiko3.0 View Post
There's no code in main.swf that sends hover stats to the server, but it detects when you hover a button.
It's about the new client and not the old one.
06/10/2014 16:06 manulaiko3.0#728
Quote:
Originally Posted by Requi View Post
It's about the new client and not the old one.
I'm talking about the new client
06/10/2014 19:42 TskulT#729
Quote:
Originally Posted by manulaiko3.0 View Post
I'm talking about the new client
Fuck you man I gave up on your sig.


@Requi @maulakio3.0 Ty for help :)
06/10/2014 19:53 Destiny#730
i have client 6.3.1
work drone formation or other new
in emu recv troll packet xd
[Only registered and activated users can see links. Click Here To Register...]
06/10/2014 21:40 Requi#731
Quote:
Originally Posted by edox77 View Post
i have client 6.3.1
work drone formation or other new
in emu recv troll packet xd
[Only registered and activated users can see links. Click Here To Register...]
The packets are netty encoded and encrypted.
06/10/2014 22:21 Destiny#732
Can edit emu only login function?
06/10/2014 22:36 cryz35#733
Quote:
Originally Posted by edox77 View Post
Can edit emu only login function?
I've tried and it's too hard for me to handle. Where's jD nowadays :p
06/10/2014 22:53 Requi#734
Quote:
Originally Posted by edox77 View Post
Can edit emu only login function?
The client doesn't understand the packets of your emulator and your emulator doesn't understand the packet of the client.

It's like a chinese is talking with a german person.
06/11/2014 19:13 manulaiko3.0#735
Quote:
Originally Posted by edox77 View Post
i have client 6.3.1
work drone formation or other new
in emu recv troll packet xd
[Only registered and activated users can see links. Click Here To Register...]
It's encrypted with netty, easy to crack (We've already did it).

The first packet that main.swf sends is the version request, the second the obfuscation request and I think that third is the login packet.

To work with that main.swf you must work with the HEX of the packet and not the plain text ;)