[Release] A Brain !!!!! (unpack mrs faster)

Page 1 of 2 12 LastLast
Results 1 to 15 of 22
  1. #1
    Enthusiast spanklord is offline
    MemberRank
    Jan 2007 Join Date
    HollandLocation
    29Posts

    [Release] A Brain !!!!! (unpack mrs faster)

    Update Thanks to :
    RepublicOfAstra

    -k make 2 text files .. in the first one put " mrs c %1 " and save it as Mrspacker.bat
    in the second on put " mrs d %1 " and name this one Mrsunpacker.bat and put them somewhere safe like C:\WINDOWS\

    -now get a mrs file right click it and select properties > change Open with > then click browse on witch app you want to use and select the mrsunpacker.bat

    -now dubble click it and it should extract fine

    - now click Tools in your file browser thingy and then Folder options > file types >

    - left click the folder ( not "file folder" .. just folder ) then click advanced then click New

    - call the action Mrs-Pack or something and as application to do it with you browse to your mrspacker.bat and select that now apply all the changes ..

    now when you right click a file you can select mrs-pack and it packs it .. voila





    ______________________

    old !
    not really a release but since alot of ppl dont know howto ill tell you how

    you know how people tell you that you should put mrs.exe d blablabla
    now this is how i do it and i think its way faster

    Put the mrs.exe and the zlib.dll in your system32 folder (prob C:\WINDOWS\system32) now whenever you want to unpack a mrs file put it in c drive ( its faster ) and goto start > run > type in cmd and in the cmd type mrs.exe d C:\filename.mrs

    sure you could make little bat programs to extract all .mrs files ( witch would prob be even faster ) but im to lazy to do that but to create a txt file everytimes sux more i think

    _____________________

    ( did this help you !?)
    Last edited by spanklord; 04-02-07 at 07:09 PM. Reason: Way more prow


  2. #2
    Member pahapoisu is offline
    MemberRank
    Jan 2007 Join Date
    56Posts
    i just use for map edit: cd desktop\maps

  3. #3
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts
    Bat files are SO much easier.

  4. #4
    Apprentice Apotheosys is offline
    MemberRank
    Jan 2007 Join Date
    21Posts
    i think is more useful to made a little command to unpack fast and dont have to enter in the cmd. Its simple, suppose the Mrs.exe and zlib.dll is in (C:/Program Files/Maiet/Mrs) in the same directory open the Notepad and put these codes to finish the problem.

    the cd.. is becouse ever starts in the User Folder xP.

    @echo off
    cd..
    cd..
    cd program files
    cd maiet
    cd mrs
    mrs.exe d *.mrs

    making this save the file and rename the extension (.txt) to (.bat)
    That will unpack all files in the maiet folder (Not Gunz Folder!!!)

    to Pack the files again put this code.

    @echo off
    cd..
    cd..
    cd program files
    cd maiet
    cd mrs
    mrs.exe c ./Mrs

    do the same process sayed to save.
    OBS: to pack files again rename the directory you want to re-pack it to Mrs.

    Noob tutorial but resolve your problem.

    and One more thing to you!!!! Wrong Section xP

  5. #5
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts
    Easier bat file.

    Make pack.bat. Edit it with this:

    Code:
    mrs c %1
    Make unpack.bat. Edit it with this:

    Code:
    mrs d %1
    Put those in the same folder as the mrs.exe and zlib.dll. Any MRS file you want to unpack, drag it on top of the unpack.bat and it will automatically open mrs.exe and unpack it to that same folder. Any folder you wanna pack, drag the folder on top of pack.bat and it will automatically make the MRS file.

  6. #6
    Account Upgraded | Title Enabled! Bryan1 is offline
    MemberRank
    Dec 2006 Join Date
    521Posts
    That's how I do it also so much easier.

  7. #7
    Account Upgraded | Title Enabled! mts is offline
    MemberRank
    Dec 2006 Join Date
    354Posts
    woah i was planning to do a .bat

  8. #8
    Account Upgraded | Title Enabled! Reone is offline
    MemberRank
    Dec 2006 Join Date
    TokyoLocation
    208Posts
    QFT!

    BAT files are so much easier >_>
    Still I wanna try RoA's way

  9. #9
    Gunz League owner Hakurah is offline
    MemberRank
    Dec 2006 Join Date
    Rio de JaneiroLocation
    602Posts
    I don't care about unpacking it normally xD

  10. #10
    GunZ messiah peaceofpi is offline
    MemberRank
    Nov 2006 Join Date
    333Posts
    thx4credit, RepublicOfAsshole

    Even easier is to make the thing he said, converting to exe, putting in system32, and make MRS files open with it. Do the same thing with the other batch file and add it to the right click entries for folders!

  11. #11
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts
    Quote Originally Posted by peaceofpi View Post
    thx4credit, RepublicOfAsshole

    Even easier is to make the thing he said, converting to exe, putting in system32, and make MRS files open with it. Do the same thing with the other batch file and add it to the right click entries for folders!
    o ya

    peaceofpi told me how to do the bat files copyright by him etc etc etc

  12. #12
    Valued Member WhiteMoga is offline
    MemberRank
    Dec 2006 Join Date
    At my computer deskLocation
    129Posts
    Or you can be like me and write your own MRS Unpacker/Repacker to school and then do whatever you want.

  13. #13
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts
    Quote Originally Posted by WhiteMoga View Post
    Or you can be like me and write your own MRS Unpacker/Repacker to school and then do whatever you want.
    Well not all of us know ASM >_>

    (I think that's what the MRS unpacker is written in)

  14. #14
    Banned MAXTRAXv3 is offline
    BannedRank
    Jan 2007 Join Date
    Perth, WesternLocation
    2,252Posts
    Quote Originally Posted by Apotheosys View Post
    i think is more useful to made a little command to unpack fast and dont have to enter in the cmd. Its simple, suppose the Mrs.exe and zlib.dll is in (C:/Program Files/Maiet/Mrs) in the same directory open the Notepad and put these codes to finish the problem.

    the cd.. is becouse ever starts in the User Folder xP.

    @echo off
    cd..
    cd..
    cd program files
    cd maiet
    cd mrs
    mrs.exe d *.mrs

    making this save the file and rename the extension (.txt) to (.bat)
    That will unpack all files in the maiet folder (Not Gunz Folder!!!)

    to Pack the files again put this code.

    @echo off
    cd..
    cd..
    cd program files
    cd maiet
    cd mrs
    mrs.exe c ./Mrs

    do the same process sayed to save.
    OBS: to pack files again rename the directory you want to re-pack it to Mrs.

    Noob tutorial but resolve your problem.

    and One more thing to you!!!! Wrong Section xP
    well if your going to do that why not do this

    plz note you have to have mrs.exe in gunz file,

    Code:
    @echo off
    @echo off
    title unpacker
    color 02
    cd C:\Documents" "and" "Settings\All" "Users\Desktop
    call mrs.exe d %1
    @echo DONE!
    pause
    you have to drag the mrs file you want over this one(plz note this will show up on every ones desktop(the files that is))

    i can make a better one but this was the fastst one i could think of...

  15. #15
    Enthusiast spanklord is offline
    MemberRank
    Jan 2007 Join Date
    HollandLocation
    29Posts
    yay this discusion is way pro .. we should make a new forum for this

    Code:
    cd C:\Documents" "and" "Settings\All" "Users\Desktop
    why so gay
    Code:
    cd "C:\Documents and Settings\All Users\Desktop"
    anyways for pserver users i made a little script that i dont have on this pc but it first copyed all the files in C:\update2\system\*.* to the server folder . then it packed the update2 and moved that to the gunz file then it launched the server . and if that whent right you pressed a key and it launches gunz.exe ... ( way fast for testing quests )



Page 1 of 2 12 LastLast

Advertisement