Results 1 to 4 of 4
  1. #1
    Samueldo's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Meh
    Posts
    1,023
    Reputation
    29
    Thanks
    348
    My Mood
    Inspired

    [Tut]How to add Quiet Inject into your injector

    This is a small but useful tutorial for a good feature.

    First, let's ask, what IS Quiet Inject?
    It's a feature that Topblast and I have on our injectors. After injection, it kicks in and keeps checking if the process has closed. If it has, then it will set the program up for injection again. Although it's easy to code it's extremely useful.

    You will need already in your injector:
    A textbox where the process name goes (in the code I called mine "ProcessBox")
    A timer which checks for injection (I called mine "Timer")
    A 2nd timer that handles the Quiet Inject (I called mine "QI")

    How to add it in
    Okay, now once your inject code has finished, put this code in:

    Code:
    QI.Start()
    For the timer code use this:

    Code:
        Private Sub QI_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles QI.Tick
            Dim TargetProcess As Process() = Process.GetProcessesByName(ProcessBox.Text)
            If TargetProcess.Length = 0 Then
                Timer.Start()
                QI.Stop()
            End If
        End Sub
    It's simple and effective.

    Credits:
    Topblast - original feature
    Samueldozwat - recreating code, writing tutorial
    Quote Originally Posted by Grim View Post
    glad to be an inspiration
    Minions rule. /endof

    InjectPlz Refresh - download v1.0 now!

  2. #2
    m_τ_h's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    185
    Reputation
    10
    Thanks
    6
    thanks for sharing i guess

  3. #3
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    This is extremely good

    thx for this source

  4. #4
    wtfiwantthatname's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    260
    Reputation
    10
    Thanks
    39
    My Mood
    Bored
    Thats more persistent injection. But good job anyway.
    "I don't believe in an afterlife, so I don't have to spend my whole life fearing hell, or fearing heaven even more. For whatever the tortures of hell, I think the boredom of heaven would be even worse." - Isaac Asimov

Similar Threads

  1. [Tutorial] [Tut]How To Add Your Name In PerX Injector For Make Your Private Injector
    By Gyurin in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 14
    Last Post: 03-15-2011, 02:19 PM
  2. Request: How to add a song to your Injector in VB
    By ryski123 in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 10-11-2010, 07:11 AM
  3. Replies: 5
    Last Post: 07-25-2009, 11:05 PM
  4. how to add the flash on your profile
    By dk173 in forum General
    Replies: 4
    Last Post: 07-07-2009, 11:51 PM
  5. [TUT] How to add Oriental/Korean Fonts
    By W$t$5TA34TYTHSETH5Y5 in forum WarRock Korea Hacks
    Replies: 2
    Last Post: 05-06-2007, 11:08 AM