Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    iamNIB's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    28

    [RELEASE] UPDATED New RezInject

    I have added an options menu which does few things right now (do not touch the ini file or you'll break it)
    This does few things more than the old one currently, but I will add more features later. I'm thinking of combining RezInject, RezXtract and DTXConvert into one and making it RezTools, but I might not do it because it's really kind of pointless.
    New features:
    -You can now make the browse button go to your CA Directory automatically (set the directory with settings)
    -Same with mods directory (the directory you want the add button to always go to)
    -Options Menu (Do not touch the splashscreen, leave that unchecked or it will break)
    -Removed Splashscreen (Actually, I broke it so I just removed it. If you enable it in settings it will not work)
    -Slight performance enhancements (Won't make a difference unless your computer is a peice of shit)

    New features add in update
    -Fixed splash screen crash (still does not show the splash screen but it doesn't crash if you enable it)
    -Autoreplace feature added (Replaces your rez file automatically instead of making a rezNew)
    -Code cleanup (hence the smaller size)
    The attachements have been updated

    I will post all future releases of my RezInject in this thread.
    Screenshot:

    Virus scans:
    Release.rar (Executable):
    Virustotal. MD5: 5bf010d29521b2c4a4782d1018fd7926 Suspicious.Insight
    Release.rar MD5:5bf010d29521b2c4a4782d1018fd7926 - VirSCAN.org Scanners did not find malware!
    Source.rar (Source files):
    Source.rar - Jotti's malware scan
    Virustotal. MD5: d30c2b0f9e0d25913c9f6f88f12a6959 Suspicious.Insight
    Last edited by KING; 03-02-2010 at 03:36 PM.

  2. The Following 13 Users Say Thank You to iamNIB For This Useful Post:

    Alby-kun (02-27-2010),Ali (02-27-2010),KingDot (03-09-2010),bdimaya (02-27-2010),eliteusername (02-27-2010),Elocrypt. (03-02-2010),hmsl (03-01-2010),InCognito (02-27-2010),Jarppi (02-27-2010),noob555 (02-27-2010),red564 (03-01-2010),remixdvd (02-27-2010),Solley (03-01-2010)

  3. #2
    remixdvd's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Nowhere
    Posts
    848
    Reputation
    18
    Thanks
    321
    My Mood
    Twisted
    omg very usefull i hate it where i have to browse stuff
    I am one of the founder of Fail Sause Prodution and Project Recon
    Call Of Duty - Modern Warfare inside of Combat Arms Click in the link below.(WIP)(DEAD)
    https://www.mpgh.net/forum/211-combat...mbat-arms.html
    [IMG]https://i793.photobucke*****m/albums/yy211/noob555/PRMT_Remixdvd.gif[/IMG]


    The Biggest Project that I am currently doing:
    MODERN WARFARE 2 Into COMBAT ARMS

  4. #3
    noob555's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    o.O
    Posts
    8,235
    Reputation
    511
    Thanks
    1,231
    Quote Originally Posted by remixdvd View Post
    omg very usefull i hate it where i have to browse stuff
    Tanks I love u
    no homo
    lol

  5. #4
    GridMaster's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Georgia, USA
    Posts
    1,629
    Reputation
    54
    Thanks
    204
    Eh, i think ima stick to my way of doin it lol but nice.

    Quote Originally Posted by Dave84311 View Post
    Boys and girls, this is what we call a retard.

  6. #5
    InCognito's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    16,581
    Reputation
    2777
    Thanks
    4,294,967,295
    Looks good, I hate browsing through like 5 folders too.

  7. #6
    Ali's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Qc, Canada
    Posts
    11,450
    Reputation
    342
    Thanks
    3,518
    My Mood
    Cool
    Omfg thanks so mush (btw thanked) xD , if only minions are more active in modding section....

  8. #7
    Divine's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    On the computer, Modding for you.
    Posts
    4,409
    Reputation
    242
    Thanks
    1,083
    My Mood
    Daring
    i love you!!
    ive been waiting for this...
    no homo

    Quote Originally Posted by aeronyx View Post
    You are hands down the cleanest modder I've ever seen.

    /goddaum.
    "We're all part of a bigger picture."
    "The absence of evidence is not the evidence of absence."

    Current mods: 171


  9. #8
    Aznpride1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    218
    Reputation
    10
    Thanks
    15
    My Mood
    Amazed
    o finally!! great job

  10. #9
    iamNIB's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    28
    Thank you guys!
    Also I'm having a little trouble with the splash screen if anyone with C# knowledge can help me...currently the splash screen is embedded as a resource and I didn't even touch it before, but somehow now the resource will not load.
    Code:
            public void Show(int time)
            {
                Assembly executingAssembly = Assembly.GetExecutingAssembly();
                Stream imageStream = executingAssembly.GetManifestResourceStream("RezInject.Splashscreen.bmp");
                if (imageStream == null)
                {
                    MessageBox.Show("Loading of the splashscreen has failed.", "Error"); //this always shows right now, what the hell?
                    return;
                }
                Bitmap bitmap = new Bitmap(imageStream);
                if (bitmap == null)
                {
                    MessageBox.Show("Invalid format (splashscreen)", "Error");
                    return;
                }
                this.splashScreen.SetBitmap(bitmap, 0xff);
                this.timer = new Timer();
                this.timer.Interval = time;
                this.timer.Tick += new EventHandler(this.timer_Tick);
                this.splashScreen.TopMost = true;
                this.splashScreen.Show();
                this.timer.Enabled = true;
            }
    Last edited by iamNIB; 02-27-2010 at 06:24 PM.

  11. #10
    Divine's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    On the computer, Modding for you.
    Posts
    4,409
    Reputation
    242
    Thanks
    1,083
    My Mood
    Daring
    Quote Originally Posted by iamNIB View Post
    Thank you guys!
    Also I'm having a little trouble with the splash screen if anyone with C# knowledge can help me...currently the splash screen is embedded as a resource and I didn't even touch it before, but somehow now the resource will not load.
    Code:
            public void Show(int time)
            {
                Assembly executingAssembly = Assembly.GetExecutingAssembly();
                Stream imageStream = executingAssembly.GetManifestResourceStream("RezInject.Splashscreen.png");
                if (imageStream == null)
                {
                    MessageBox.Show("Loading of the splashscreen has failed.", "Error"); //this always shows right now, what the hell?
                    return;
                }
                Bitmap bitmap = new Bitmap(imageStream);
                if (bitmap == null)
                {
                    MessageBox.Show("Invalid format (splashscreen)", "Error");
                    return;
                }
                this.splashScreen.SetBitmap(bitmap, 0xff);
                this.timer = new Timer();
                this.timer.Interval = time;
                this.timer.Tick += new EventHandler(this.timer_Tick);
                this.splashScreen.TopMost = true;
                this.splashScreen.Show();
                this.timer.Enabled = true;
            }
    i've never learnde...
    i REALLY want to,
    its just...i dont have the patience D:

    Quote Originally Posted by aeronyx View Post
    You are hands down the cleanest modder I've ever seen.

    /goddaum.
    "We're all part of a bigger picture."
    "The absence of evidence is not the evidence of absence."

    Current mods: 171


  12. #11
    LegendaryAbbo's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    5,243
    Reputation
    23
    Thanks
    546
    My Mood
    Relaxed
    Nice job. Approved.

  13. #12
    Ali's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Qc, Canada
    Posts
    11,450
    Reputation
    342
    Thanks
    3,518
    My Mood
    Cool
    Quote Originally Posted by legendaryhack View Post
    Nice job. Approved.
    Once again thanks legendary for approving, I was about to inject a mod xD

  14. #13
    bdimaya's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Vancouver
    Posts
    49
    Reputation
    10
    Thanks
    31
    My Mood
    Sleepy
    Sweet man this makes things a lot easier

  15. #14
    iamNIB's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    28
    Quote Originally Posted by legendaryhack View Post
    Nice job. Approved.
    Thank you!I'm currently just working on fixing the splash screen, I know it's not that important but it bugs me that it's not done. I will probably release autoreplace next time too.

  16. #15
    iamNIB's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    28
    Sorry to double post, but I updated the features. Please re-approve the attachments.

Page 1 of 2 12 LastLast

Similar Threads

  1. [RELEASE]New! Dll Auto Installer v1.1[UPDATED!][RELEASE]
    By breakell20 in forum WarRock - International Hacks
    Replies: 7
    Last Post: 05-11-2008, 09:07 PM
  2. [Release]New public and undetected hack
    By tote in forum WarRock - International Hacks
    Replies: 18
    Last Post: 12-13-2007, 06:35 AM
  3. [release] New Gps
    By urbz in forum WarRock - International Hacks
    Replies: 13
    Last Post: 08-31-2007, 02:30 AM
  4. (release)new hack and bypass
    By pspmaster4 in forum WarRock - International Hacks
    Replies: 7
    Last Post: 07-05-2007, 02:30 AM
  5. [release] new bypass !!
    By W-Hackz in forum WarRock - International Hacks
    Replies: 30
    Last Post: 05-09-2007, 12:59 PM