Mrs Unpacker/Packer - The Best Yet

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Rival Gamers Owner own_prox is offline
    MemberRank
    Jul 2007 Join Date
    HellLocation
    1,077Posts

    Mrs Unpacker/Packer - The Best Yet

    uses.
    1.unpack/comiple without even typeing
    2.unpack/pack more then 1 file at the same time
    3.make it search thought folders in the current folder for mrs's or folder's
    4.select all button
    5.to select more then 1 hokd ctrl down and press the ones you want to compile/decompile

    picture:


    download:
    http://www.mediafire.com/download.php?jznmdnuiinz
    http://www.megaupload.com/?d=B2X89V8Y

    source(c# 2008):
    http://www.mediafire.com/download.php?mzktytj2qmz
    Last edited by own_prox; 08-08-09 at 09:03 PM.


  2. #2
    Member VITOR[FR] is offline
    MemberRank
    Nov 2007 Join Date
    franceLocation
    52Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Steven S Best

  3. #3
    Status: Pooping eele is offline
    MemberRank
    Jul 2008 Join Date
    The NetherlandsLocation
    915Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Omg, there are enough unpackers it doesn't matter that your one got one extra function... If you made a whole new function on how to unpack and pack it. Hm than it should be nice. But if you still have a MRS.exe and zlib.dll for unpack and packing there is still no diference with all the other MRS packers, except for T6 his 1 :)

  4. #4
    2D > 3D Wucas is offline
    MemberRank
    Dec 2008 Join Date
    In your bed :3Location
    2,523Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    i like dagan's new MRS Decompiler <.<

  5. #5
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    XZeenon's v3.0 and the one with MRS.exe option is the same as this, with a better interface xD. it can pack/repack multiple files too. I don't see any difference, but nice effort.

  6. #6
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    You killed it.

  7. #7
    2D > 3D Wucas is offline
    MemberRank
    Dec 2008 Join Date
    In your bed :3Location
    2,523Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Quote Originally Posted by ThievingSix View Post
    You killed it.
    i agree
    /ten fcking char

  8. #8
    Rival Gamers Owner own_prox is offline
    MemberRank
    Jul 2007 Join Date
    HellLocation
    1,077Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    his dosnt search thought folders for more mrses or more folders
    with his you would have to put it in like the folder maps for it to read it
    with mine u can put it in ur client folder and it reads in maps,sound,model, ect

  9. #9
    Account Upgraded | Title Enabled! Kyuma is offline
    MemberRank
    Aug 2008 Join Date
    At HomeLocation
    350Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    steven the beast xD

  10. #10
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Can we replace the mrs.exe with our Encrypted one and Compile the MRS Files?
    Last edited by Phoenix; 08-08-09 at 05:59 PM.

  11. #11
    Account Upgraded | Title Enabled! Guy is offline
    MemberRank
    Apr 2009 Join Date
    919Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Quote Originally Posted by BetrayedAcheron View Post
    i like dagan's new MRS Decompiler <.<
    Well said.

    Code:
    Public Sub pack(ByVal test As String)
        File.Delete("unpack-repack.bat")
        Dim str2 As String = Me.listBox1.SelectedItem.ToString.Replace("./", "")
        If (Me.listBox1.Items.Count <= 0) Then
            MessageBox.Show("No Items To Select.")
        ElseIf (Me.listBox1.SelectedItems.Count = 1) Then
            If (test = "c") Then
                Using writer As StreamWriter = New StreamWriter("unpack-repack.bat", True)
                    writer.WriteLine(("mrs.exe " & test & " " & str2))
                End Using
                Process.Start("unpack-repack.bat")
            Else
                Using writer2 As StreamWriter = New StreamWriter("unpack-repack.bat", True)
                    writer2.WriteLine(("mrs.exe " & test & " " & str2))
                End Using
                Process.Start("unpack-repack.bat")
            End If
        Else
    This is nothing but a shitty front-end; I fail to see how this is "better" than the re-write of the MZIP class with a reasonable GUI, not reliant on the .NET framework, that Dagan had written. This isn't unique in the slightest, nor in the slightest bit useful.

  12. #12
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Why is everyone making programs to create bat files. Haven't they heard of CreateProcess? ShellExecute? WinExec?.........

  13. #13
    Rival Gamers Owner own_prox is offline
    MemberRank
    Jul 2007 Join Date
    HellLocation
    1,077Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    Why is everyone making programs to create bat files. Haven't they heard of CreateProcess? ShellExecute? WinExec?.........

    i did that in my last one i wasnt sure how to shell a command in c# i tryed serval way in vb i would of used shell("") in c# i tryed Process.start("cmd /c commandhere");
    also tryed useing a new process method but it was only allowing me to excute 1 command and the problem with that was it was excuteing it in c:/user/application or what evers default on urs so i couldn't do like cd to direct it so i had to make it make a batch


    Can we replace the mrs.exe with our Encrypted one and Compile the MRS Files?

    umm yes you can

    and
    gWX0
    Public Sub pack(ByVal test As String)
    File.Delete("unpack-repack.bat")
    Dim str2 As String = Me.listBox1.SelectedItem.ToString.Replace("./", "")
    If (Me.listBox1.Items.Count <= 0) Then
    MessageBox.Show("No Items To Select.")
    ElseIf (Me.listBox1.SelectedItems.Count = 1) Then
    If (test = "c") Then
    Using writer As StreamWriter = New StreamWriter("unpack-repack.bat", True)
    writer.WriteLine(("mrs.exe " & test & " " & str2))
    End Using
    Process.Start("unpack-repack.bat")
    Else
    Using writer2 As StreamWriter = New StreamWriter("unpack-repack.bat", True)
    writer2.WriteLine(("mrs.exe " & test & " " & str2))
    End Using
    Process.Start("unpack-repack.bat")
    End If
    Else
    why the hell have u got it in vb format when its
    public void pack(String test)
    {
    File.Delete("unpack-repack.bat");
    string s = listBox1.SelectedItem.ToString();
    string v = s.Replace("./", "");
    if (listBox1.Items.Count > 0)
    {
    if (listBox1.SelectedItems.Count == 1)
    {
    if (test == "c")
    {
    using (StreamWriter writer = new StreamWriter("unpack-repack.bat", true))
    {
    writer.WriteLine("mrs.exe " + test + " " + v);
    }
    Process.Start("unpack-repack.bat");
    }

    else
    {

    using (StreamWriter writer = new StreamWriter("unpack-repack.bat", true))
    {
    writer.WriteLine("mrs.exe " + test + " " + v);
    }
    Process.Start("unpack-repack.bat");
    }
    }
    else
    {
    foreach (object o in listBox1.SelectedItems)
    {
    string b = o.ToString();
    string f = b.Replace("./", "");
    if (test == "c")
    {
    using (StreamWriter writer = new StreamWriter("unpack-repack.bat", true))
    {
    writer.WriteLine("mrs.exe " + test + " " + f);
    }
    }
    else
    {
    using (StreamWriter writer = new StreamWriter("unpack-repack.bat", true))
    {
    writer.WriteLine("mrs.exe " + test + " " + f);
    }
    }
    }
    Process.Start("unpack-repack.bat");
    }
    }
    else
    {
    MessageBox.Show("No Items To Select.");
    }
    }
    Last edited by own_prox; 08-08-09 at 07:53 PM.

  14. #14
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Mrs Unpacker/Packer - The Best Yet

    It takes time for the launcher to analyze patch info with the .wtf format. I guess no one will have the patience for that.

  15. #15
    Reverse Engineer ThievingSix is offline
    MemberRank
    Mar 2007 Join Date
    CaliforniaLocation
    901Posts

    Re: Mrs Unpacker/Packer - The Best Yet




Page 1 of 2 12 LastLast

Advertisement