Hello, today I give you guys a tut about how to find MOD tool packet ID and alert packet id.
First of all, have a CRACKED version of AS3 Sorcerer. If you have it, open your SWF in it. Then save all the scripts to one file. It will take a little bit. Notepad will pop out.
1. MOD tool
You need to search on this:
When you see something like this:
PHP Code:
var message:String = _arg1;
var url:String = _arg2;
var p:RegExp = /\\r/g;
message = message.replace(p, "\r");
if (url.length > 0){
this._-18A._-DV("${mod.alert.title}", message, "${mod.alert.link}", url, 0, function (_arg1:_-4Ih, _arg2:WindowEvent):void
{
_arg1.dispose();
});
} else {
this._-18A.alert("${mod.alert.title}", message, 0, function (_arg1:_-4Ih, _arg2:WindowEvent):void
{
_arg1.dispose();
});
};
(NOT EXACTLY THE SAME BUT JUST LIKE THAT)
Now the function where it is in, copy that code next to function
PHP Code:
public function _-1rx(_arg1:String, _arg2:String=""):void
I need to copy _-1rx. Then search for that, untill you find something like this:
PHP Code:
this._-4Tk._-4Qa._-CX._-1rx(k.message, k.url);
Copy the function code (after public function) and search for it, untill you see something like this:
PHP Code:
this._-2PZ._-3m0(new _-0-N(this._-381));
Now _-0-N is the class name, search for:
In my swf, I will find:
PHP Code:
_-4bQ[801] = _-0-N;
_-4bQ = composer array, 801 is packet id.
2. MOD Tool
MOD tool works a little different.
The same file, search for:
PHP Code:
public class ModerationMessageHandler
When you're there, go to:
PHP Code:
public function ModerationMessageHandler(_arg1:_-39M)
All the IDs are located there. For the main ID (for the MOD tool to show up):
It's really advanced, but for me it was always second addMessageEvent
PHP Code:
this._-3oM.addMessageEvent(new _-4I4(this._-2Y));
Now search:
I will find:
PHP Code:
_-4bQ[590] = _-4I4;
Same thing, _-4bQ = composer array, 590 is ID.
That's all for now, perhaps I will give more tutorials, but for now: enjoy.