Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy

    Post xCal Injector v2.2

    xCal Injector v2.2 (Bug Fixes Update)
    ================================================== =============
    By ImWhacky
    ================================================== =============
    Features:
    Process Selector
    Write-in Process
    Multiple-dll Injection
    Manual Injection
    Auto Injection
    Auto Close on Injection
    Injection Delay
    Millions of color options
    ================================================== =============
    Images:



    ================================================== =============
    Virus Scan:
    (it shows results, but the results are because of the way it injects dll's)
    (I will put the source code down below as well if you don't believe me)

    virustotal - Click Here!
    jotti - Click Here!
    ================================================== =============
    Change-log:
    v1.0
    - First Release
    v1.1
    - Added 64-bit Support
    - Added Auto Injection
    - Added Close On Injection
    v1.2
    - Stylized Main GUI
    v1.3
    - Updated to support windows 10
    v1.4
    - Added Process Selector
    - Added Injection Status
    v1.5
    - Re-did Entire Injector Design
    v1.6
    - Removed Select Process Button
    - Added Font Options
    - Custom Color Options
    - Optinal Background color options
    - Multi Tab Injector
    - Home Tab (Main Injection Page)
    - Options (Injector Customization options,) (will be expanded upon in future, just colors for this release)
    v2.0 (Big Update, skipped 1.7, 1.8, and 1.9)
    - Expanded custom color spectrum
    - Removed "Clear Process Name" button
    - Removed force process loading
    - Removed Processes loading bar
    - Removed Process loading status
    - Removed Color Demo window in appearance options
    - Re-Sized "Custom Color" and "Font Options" buttons
    - Re-Sized font demo box
    - Added Opacity Slider (adjust transparency of injector)
    - Added optional injection delay
    - Added Spanish and French Languages
    - Added CPU Monitor (Make sure your game isn't running too hot)
    - Added "Save List" option (Saves your currently loaded dll's to be used for later)
    - Added "Open List" option (Loads your pre-saved list for fast injection abilities, only 2 buttons now.
    - Added Game Selector
    - Added Automatic Process Loading
    - Added "Refresh Processes" button
    v2.1
    - Made Information Window Look Nicer
    - Removed Process Selection Square
    - Removed Refresh Processes button
    - Added Select Process Window
    - Added Select Window Process Window
    - Changed Default Color To Match Logo
    - Condensed Injector so it now takes up less space on your screen.
    - Re-Arranged Injector Layout, Flows better now
    v2.2 (Bug Fix Update)
    - Fixed Process Not Found bug when using window selector
    Cause: Window Selector added space to end of process name
    - Fixed Window Selector and Process Selector color change after first
    time opening windows
    Cause: messed up variables
    - Fixed Unhandled Exception Error when you are adding a dll and press
    cancle.
    Cause: I did not declare what would happen if you pressed cancle.
    - If you inject without a process name or a dll, a dialog will pop up telling you that you need them.
    ================================================== =============
    Next Version features (possibilities)
    - New Injection Library

    This will be the last update for a while
    If you find any bugs, report them in this forum so I can fix them
    Thanks!
    - ImWhacky
    ================================================== =============

    Source (v2.1):
    I will be releasing the source code of the last release on every new release.
    Code:
    [Form1]
    Imports System.ComponentModel
    Imports System.Diagnostics
    Imports System.Drawing.Drawing2D
    Imports System.Globalization
    Imports System.Threading
    Public Class Form1
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
        Private TargetProcessHandle As Integer
        Private pfnStartAddr As Integer
        Private pszLibFileRemote As String
        Private TargetBufferSize As Integer
        Dim proc As Process
    
    
    
        Public Const PROCESS_VM_READ = &H10
        Public Const TH32CS_SNAPPROCESS = &H2
        Public Const MEM_COMMIT = 4096
        Public Const PAGE_READWRITE = 4
        Public Const PROCESS_CREATE_THREAD = (&H2)
        Public Const PROCESS_VM_OPERATION = (&H8)
        Public Const PROCESS_VM_WRITE = (&H20)
        Dim DLLFileName As String
        Public Declare Function ReadProcessMemory Lib "kernel32" (
        ByVal hProcess As Integer,
        ByVal lpBaseAddress As Integer,
        ByVal lpBuffer As String,
        ByVal nSize As Integer,
        ByRef lpNumberOfBytesWritten As Integer) As Integer
    
        Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (
        ByVal lpLibFileName As String) As Integer
    
        Public Declare Function VirtualAllocEx Lib "kernel32" (
        ByVal hProcess As Integer,
        ByVal lpAddress As Integer,
        ByVal dwSize As Integer,
        ByVal flAllocationType As Integer,
        ByVal flProtect As Integer) As Integer
    
        Public Declare Function WriteProcessMemory Lib "kernel32" (
        ByVal hProcess As Integer,
        ByVal lpBaseAddress As Integer,
        ByVal lpBuffer As String,
        ByVal nSize As Integer,
        ByRef lpNumberOfBytesWritten As Integer) As Integer
    
        Public Declare Function GetProcAddress Lib "kernel32" (
        ByVal hModule As Integer, ByVal lpProcName As String) As Integer
    
        Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" (
        ByVal lpModuleName As String) As Integer
    
        Public Declare Function CreateRemoteThread Lib "kernel32" (
        ByVal hProcess As Integer,
        ByVal lpThreadAttributes As Integer,
        ByVal dwStackSize As Integer,
        ByVal lpStartAddress As Integer,
        ByVal lpParameter As Integer,
        ByVal dwCreationFlags As Integer,
        ByRef lpThreadId As Integer) As Integer
    
        Public Declare Function OpenProcess Lib "kernel32" (
        ByVal dwDesiredAccess As Integer,
        ByVal bInheritHandle As Integer,
        ByVal dwProcessId As Integer) As Integer
    
        Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (
        ByVal lpClassName As String,
        ByVal lpWindowName As String) As Integer
    
        Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" (
        ByVal hObject As Integer) As Integer
        Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
        Private Sub Inject()
            On Error GoTo 1 ' If error occurs, app will close without any error messages 
            Timer1.Stop()
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
            pszLibFileRemote = OpenFileDialog1.FileName
            pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
            TargetBufferSize = 1 + Len(pszLibFileRemote)
            Dim Rtn As Integer
            Dim LoadLibParamAdr As Integer
            LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
            Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
            CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
            CloseHandle(TargetProcessHandle)
    1:      Me.Show()
        End Sub
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
            TextBox1.Clear()
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            If CheckBox4.Checked Then
                System.Threading.Thread.Sleep(ComboBox2.Text + "000")
            End If
            If IO.File.Exists(OpenFileDialog1.FileName) Then
    
            End If
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            If TargetProcess.Length = 0 Then
    
                Label3.Text = ("Waiting for " + TextBox1.Text + ".exe...")
            Else
                Timer1.Stop()
                Label3.ForeColor = Color.Green
                Label3.Text = "Injection Successful!"
                Call Inject()
                If CheckBox1.Checked = True Then
                    Me.Close()
                Else
                End If
            End If
        End Sub
    
    
        Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
            Close()
        End Sub
        Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
            OpenFileDialog1.Filter = "DLL|*.dll"
            OpenFileDialog1.ShowDialog()
            Dim FileName As String
            FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.LastIndexOf("\"))
            Dim DllFileName As String = FileName.Replace("\", "")
            Me.ListBox2.Items.Add(DllFileName)
        End Sub
    
        Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
            For i As Integer = (ListBox2.SelectedItems.Count - 1) To 0 Step -1
                ListBox2.Items.Remove(ListBox2.SelectedItems(i))
            Next
        End Sub
    
        Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
            ListBox2.Items.Clear()
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            If IO.File.Exists(OpenFileDialog1.FileName) Then
                Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
                If TargetProcess.Length = 0 Then
                    Label3.Text = ("Waiting for " + TextBox1.Text + ".exe" + "....")
                Else
                    Timer1.Stop()
                    Label3.Text = "Injection Successful!"
                    Call Inject()
                    If CheckBox1.Checked = True Then
                        Me.Close()
                    End If
    
                End If
            End If
        End Sub
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
            Timer1.Interval = 2
            Timer1.Start()
        End Sub
        Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
            Timer1.Start()
        End Sub
        Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged
            Timer1.Stop()
        End Sub
    
        Private Sub Form1_Load_(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Timer2.Start()
            ShowIcon = True
            Me.TrackBar1.Value = CInt(Me.Opacity * 100)
            Button1.BackColor = Color.FromArgb(0, 210, 255)
            Button2.BackColor = Color.FromArgb(0, 210, 255)
            Button3.BackColor = Color.FromArgb(0, 210, 255)
            Button4.BackColor = Color.FromArgb(0, 210, 255)
            Button5.BackColor = Color.FromArgb(0, 210, 255)
            Button6.BackColor = Color.FromArgb(0, 210, 255)
            Button7.BackColor = Color.FromArgb(0, 210, 255)
            Button8.BackColor = Color.FromArgb(0, 210, 255)
            Button10.BackColor = Color.FromArgb(0, 210, 255)
            Button11.BackColor = Color.FromArgb(0, 210, 255)
            Form2.ListBox1.BackColor = Color.FromArgb(0, 210, 255)
            ListBox2.BackColor = Color.FromArgb(0, 210, 255)
            TrackBar1.BackColor = Color.FromArgb(0, 210, 255)
            Form2.Button1.BackColor = Color.FromArgb(0, 210, 255)
            Form2.Button7.BackColor = Color.FromArgb(0, 210, 255)
            ProgressBar1.BackColor = Color.FromArgb(0, 210, 255)
            Form4.Button4.BackColor = Color.FromArgb(0, 210, 255)
            Form4.Button1.BackColor = Color.FromArgb(0, 210, 255)
            Form4.ListBox1.BackColor = Color.FromArgb(0, 210, 255)
        End Sub
    
        Private Sub Label2_Click(sender As Object, e As EventArgs) Handles Label2.Click
            Form3.Show()
        End Sub
    
        Private Sub Button11_Click(sender As Object, e As EventArgs) Handles Button11.Click
            FontDialog1.ShowDialog()
            FontDialog1.MaxSize = 8
            FontDialog1.MinSize = 8
            RichTextBox1.Font = FontDialog1.Font
            Button1.Font = FontDialog1.Font
            Button2.Font = FontDialog1.Font
            Button3.Font = FontDialog1.Font
            Button4.Font = FontDialog1.Font
            Button5.Font = FontDialog1.Font
            Button6.Font = FontDialog1.Font
            Button7.Font = FontDialog1.Font
            Button8.Font = FontDialog1.Font
            Button10.Font = FontDialog1.Font
            Button11.Font = FontDialog1.Font
            Form2.ListBox1.Font = FontDialog1.Font
            Label2.Font = FontDialog1.Font
            Label3.Font = FontDialog1.Font
            Label4.Font = FontDialog1.Font
            GroupBox2.Font = FontDialog1.Font
            RadioButton1.Font = FontDialog1.Font
            RadioButton2.Font = FontDialog1.Font
            ListBox2.Font = FontDialog1.Font
            TabControl1.Font = FontDialog1.Font
            GroupBox1.Font = FontDialog1.Font
            CheckBox4.Font = FontDialog1.Font
            ComboBox2.Font = FontDialog1.Font
            Label10.Font = FontDialog1.Font
            Label5.Font = FontDialog1.Font
            CheckBox1.Font = FontDialog1.Font
            Form2.Button7.Font = FontDialog1.Font
            Form2.Button1.Font = FontDialog1.Font
            Form4.Button4.Font = FontDialog1.Font
            Form4.Button1.Font = FontDialog1.Font
            Form4.ListBox1.Font = FontDialog1.Font
    
    
            Me.Font = FontDialog1.Font
            FontDialog1.MaxSize = 11
            Label1.Font = FontDialog1.Font
            FontDialog1.MinSize = 11
        End Sub
    
        Private Sub Button10_Click(sender As Object, e As EventArgs) Handles Button10.Click
            ColorDialog1.ShowDialog()
            ColorDialog1.SolidColorOnly = True
            Button1.BackColor = ColorDialog1.Color
            Button2.BackColor = ColorDialog1.Color
            Button3.BackColor = ColorDialog1.Color
            Button4.BackColor = ColorDialog1.Color
            Button5.BackColor = ColorDialog1.Color
            Button6.BackColor = ColorDialog1.Color
            Button7.BackColor = ColorDialog1.Color
            Button8.BackColor = ColorDialog1.Color
            Button10.BackColor = ColorDialog1.Color
            Button11.BackColor = ColorDialog1.Color
            Form2.ListBox1.BackColor = ColorDialog1.Color
            ListBox2.BackColor = ColorDialog1.Color
            TrackBar1.BackColor = ColorDialog1.Color
            Form2.Button1.BackColor = ColorDialog1.Color
            Form2.Button7.BackColor = ColorDialog1.Color
            Form4.Button4.BackColor = ColorDialog1.Color
            Form4.Button1.BackColor = ColorDialog1.Color
            Form4.ListBox1.BackColor = ColorDialog1.Color
    
            If CheckBox2.Checked Then
                TabPage1.BackColor = ColorDialog1.Color
            Else
                TabPage1.BackColor = Color.White
            End If
    
            If CheckBox3.Checked Then
                TabPage2.BackColor = ColorDialog1.Color
            Else
                TabPage2.BackColor = Color.White
            End If
        End Sub
    
        Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
            If ComboBox1.Text = "Counter-Strike: Global Offensive" Then
                TextBox1.Text = "csgo"
            End If
            If ComboBox1.Text = "Counter-Strike: 1.6" Then
                TextBox1.Text = "hl"
            End If
            If ComboBox1.Text = "Grand Chase" Then
                TextBox1.Text = "main"
            End If
            If ComboBox1.Text = "Crossfire" Then
                TextBox1.Text = "crossfire"
            End If
            If ComboBox1.Text = "Blackshot" Then
                TextBox1.Text = "BlackShot"
            End If
            If ComboBox1.Text = "Combat Arms" Then
                TextBox1.Text = "Engine"
            End If
        End Sub
    
        Private Sub ComboBox2_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox2.SelectedIndexChanged
            If CheckBox4.Checked Then
    
            End If
        End Sub
        Private Sub TrackBar1_Scroll(sender As Object, e As EventArgs) Handles TrackBar1.Scroll
            Me.Opacity = Me.TrackBar1.Value / 100
        End Sub
    
        Private Sub ComboBox3_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox3.SelectedIndexChanged
            If ComboBox3.Text = "Spanish" Then
                Label11.Text = "Seleccione idioma"
                Button10.Text = "Color personalizado"
                Button11.Text = "opciones de fuente"
                RichTextBox1.Text = "Opciones de fuente personalizados"
                Label10.Text = "opacidad"
                CheckBox2.Text = "Inicio Tab Color de fondo"
                CheckBox3.Text = "Ficha Opciones de Color de fondo"
                CheckBox4.Text = "Retraso inyección (segundos)"
                Label1.Text = "Proceso:"
                Button1.Text = "Guardar lista"
                Button3.Text = "lista abierta"
                Button4.Text = "Navega"
                Button5.Text = "Borrar seleccionado"
                Button6.Text = "Borrar de dlls"
                RadioButton1.Text = "automática"
                RadioButton2.Text = "manual"
                CheckBox1.Text = "cerca después de la inyección"
                Button2.Text = "inyectar"
                Label4.Text = "estado de la inyección"
                Button8.Text = "Seleccione Proceso"
                Label2.Text = "información"
                GroupBox1.Text = "apariencia"
                GroupBox2.Text = "Opciones de inyección"
                TabPage1.Text = "casa"
                TabPage2.Text = "Opciones"
            End If
            If ComboBox3.Text = "English" Then
                Label11.Text = "Slect Language"
                Button10.Text = "Custom Color"
                Button11.Text = "Font Options"
                RichTextBox1.Text = "Custom Font Options"
                Label10.Text = "Opacity"
                CheckBox2.Text = "Home tab Background Color"
                CheckBox3.Text = "Options tab Background Color"
                CheckBox4.Text = "Delay Injection (seconds)"
                Label1.Text = "Process:"
                Button1.Text = "Save List"
                Button3.Text = "Open List"
                Button4.Text = "Browse"
                Button5.Text = "Clear Selected"
                Button6.Text = "Clear DLL's"
                RadioButton1.Text = "Automatic"
                RadioButton2.Text = "Manual"
                CheckBox1.Text = "Close After Injection"
                Button2.Text = "INJECT"
                Label4.Text = "Injection Status"
                Button8.Text = "Select Process"
                Label2.Text = "Information"
                GroupBox1.Text = "Appearance"
                GroupBox2.Text = "Injection Options"
                TabPage1.Text = "Home"
                TabPage2.Text = "Options"
            End If
            If ComboBox3.Text = "French" Then
                Label11.Text = "Choisir la langue"
                Button10.Text = "Couleur personnalisée"
                Button11.Text = "options de police"
                RichTextBox1.Text = "Personnalisés Options de police"
                Label10.Text = "opacité"
                CheckBox2.Text = "Accueil onglet Couleur de fond"
                CheckBox3.Text = "Onglet Options couleur de fond"
                CheckBox4.Text = "Délai injection (secondes)"
                Label1.Text = "processus:"
                Button1.Text = "Enregistrer la liste"
                Button3.Text = "Ouvrir la liste"
                Button4.Text = "Parcourir"
                Button5.Text = "Effacer la sélection"
                Button6.Text = "Effacer DLL"
                RadioButton1.Text = "automatique"
                RadioButton2.Text = "Manuel"
                CheckBox1.Text = "Fermer Après injection"
                Button2.Text = "INJECT"
                Label4.Text = "injection Etat"
                Button8.Text = "Sélectionnez Traiter"
                Label2.Text = "Information"
                GroupBox1.Text = "apparence"
                GroupBox2.Text = "Options d'injection"
                TabPage1.Text = "Accueil"
                TabPage2.Text = "Options"
            End If
        End Sub
    
        Private Sub Timer2_Tick(sender As Object, e As EventArgs) Handles Timer2.Tick
            ProgressBar1.Value = PerformanceCounter1.NextValue
            Label7.Text = ProgressBar1.Value.ToString + "%"
        End Sub
    
        Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles Button1.Click
            Dim s As New IO.StreamWriter("SavedDlls.dat")
            For i As Integer = 0 To ListBox2.Items.Count - 1
                s.Write(ListBox2.Items(i) & vbNewLine)
            Next
            s.Close()
        End Sub
    
        Private Sub Button3_Click_1(sender As Object, e As EventArgs) Handles Button3.Click
            If IO.File.Exists("SavedDlls.dat") Then
                Dim r As New IO.StreamReader("SavedDlls.dat")
                Dim txt As New TextBox
                txt.Text = r.ReadToEnd
                ListBox2.Items.Clear()
                For i As Integer = 0 To txt.Lines.Count - 2
                    ListBox2.Items.Add(txt.Lines(i))
                Next
                r.Close()
            End If
        End Sub
    
        Private Sub Button8_Click_1(sender As Object, e As EventArgs) Handles Button8.Click
            Form2.Show()
        End Sub
    
        Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
            Form4.Show()
        End Sub
    End Class
    [Form2]
    Public Class Form2
        Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            For Each proc As Process In Process.GetProcesses
                ListBox1.Items.Add(proc.ProcessName)
            Next
        End Sub
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    
            Form1.TextBox1.Text = ListBox1.SelectedItem
            Me.Hide()
        End Sub
    
        Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
            ListBox1.Items.Clear()
            For Each proc As Process In Process.GetProcesses
                ListBox1.Items.Add(proc.ProcessName)
            Next
        End Sub
    End Class
    [Form3]
    Public Class Form3
        Private Sub Form3_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    
        End Sub
    End Class
    [Form4]
    Public Class Form4
        Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            For Each p As Process In Process.GetProcesses
                If p.MainWindowTitle = String.Empty = False Then
                    ListBox1.Items.Add(p.ProcessName & " [" & p.MainWindowTitle & "]")
                End If
            Next
        End Sub
    
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            Dim astring = ListBox1.SelectedItem
            astring = astring.Substring(0, astring.IndexOf("["))
    
            Form1.TextBox1.Text = astring
            Me.Hide()
        End Sub
    
        Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
            ListBox1.Items.Clear()
            For Each p As Process In Process.GetProcesses
                If p.MainWindowTitle = String.Empty = False Then
                    ListBox1.Items.Add(p.ProcessName & " [" & p.MainWindowTitle & "]")
                End If
            Next
        End Sub
    End Class
    Credits:
    Crazywink's (auto close, auto inject)

    <b>Downloadable Files</b> Downloadable Files
    Last edited by ImWhacky; 10-01-2015 at 04:46 PM. Reason: Updating Links

  2. The Following 288 Users Say Thank You to ImWhacky For This Useful Post:

    1205281301 (05-28-2016),3b9ac9ff (09-30-2017),64hotshooter (07-05-2017),703tcs (04-27-2016),aannuzran (12-23-2015),aayyylmao (09-14-2016),aayzz (06-08-2016),abcdefg. (05-27-2016),ActualCheats (09-02-2016),AGENT.47 (04-03-2016),aimanfarhat12 (03-27-2016),Al36awiBHR (05-07-2016),Ali247 (09-26-2016),alvea007 (07-12-2017),anak_ayam00 (12-11-2018),andrewmcgaming (04-03-2016),Antisha (10-07-2016),AntixSora (03-18-2016),antonblik13 (02-14-2017),ariq123456789 (07-22-2016),asdcup (07-27-2016),Atsuko (12-12-2016),autoclicks (05-22-2016),axmer (03-28-2016),ayori (10-04-2015),azimkamu (04-09-2016),badli7408 (10-07-2016),banana2312 (11-22-2015),Banjotv1 (10-18-2017),Banza4 (06-17-2016),Behesht (12-06-2016),BendoverII (05-28-2016),bestgod231 (05-25-2019),bhopqq (07-06-2016),BigDogBob11 (06-12-2016),Bijanteezy (06-11-2016),Blaconix (11-30-2016),bob56312 (11-15-2015),bonikol9 (10-07-2015),butmun (03-05-2016),buttersword (11-25-2015),CarterTV (08-04-2016),chaleluja (10-15-2015),charles000 (09-28-2016),cheatsgeek (07-10-2016),chippe246 (01-24-2016),christianh8s (10-09-2015),CHUBBYPENlS (08-01-2016),ConfirmUsername (02-25-2017),Crazy_Sniper (11-08-2015),cypol (05-22-2016),Cythnar (12-18-2015),Danarangv (05-29-2016),dareasa (03-01-2016),DarkRider001 (10-25-2015),datngo1999 (01-10-2016),dawid197 (06-23-2016),daxter666 (10-09-2015),dead9mm (10-11-2015),deatrix (10-09-2016),DiZZieXD (03-18-2016),doggyblack (02-24-2018),doggyshizz (10-13-2015),dontstopmx (09-26-2016),DoomWarrior01 (10-06-2016),draggydx (11-28-2015),Dragunan (04-07-2016),dukituki (08-06-2016),Dylan1114 (12-05-2015),Dyllan2012 (11-22-2015),egrdgrgrgg (02-12-2018),emnelix (12-25-2015),erwinlim (07-02-2016),etbhrhtrhtrhthethererh (03-02-2016),eternaldj (05-22-2016),exepzai (10-02-2017),exitus85 (11-11-2015),ezyqif (08-01-2016),faizal6417 (04-18-2016),FazeFakie234 (05-25-2016),FeVv (04-22-2017),fewgulnw (03-03-2016),firdaus74 (10-15-2017),Firestic (06-14-2016),For4For1 (09-03-2016),fourdeltaone1996 (05-12-2016),FreshYTYYTTT (04-19-2016),frostbitti (11-05-2015),Frostone4826 (08-07-2016),frozzij (05-13-2016),FrS (03-18-2016),FuckIDontKnow (09-29-2016),FWEgHGrhhgyRG2$@$ (07-15-2016),gamer0590 (06-22-2016),gamerlemon581 (06-03-2016),ganlulaoeh (08-08-2016),GeKoN (11-19-2017),Gemok21 (03-26-2016),GMmixx (10-13-2015),guilhermebjibr (07-09-2016),guizinho52 (07-27-2016),HabeneroGames (01-31-2016),Hakc3r (10-17-2015),halabalo757 (07-25-2016),hammerbro132 (08-03-2016),hannoud998 (02-29-2016),HasseGren (09-05-2017),hayatexx (10-02-2015),hazeur (10-01-2015),Henryeres (02-29-2016),hiken27 (10-18-2015),HjalteHansen (03-20-2016),hoppykill (12-23-2015),Houndsoul (10-14-2015),hunterqween (01-28-2016),Hydroxyzine (11-28-2015),IAmAShinyPotato (10-01-2016),igotit (02-05-2016),ilovemeth (04-09-2016),imdanny814 (01-31-2016),influxion (05-27-2016),isaac24_7 (03-25-2016),ishin060814 (08-30-2016),itslynx (01-13-2016),iusehaxsoiwin (01-06-2016),Jackie1234 (03-20-2016),Jackmiaw (01-23-2016),JallaBalla (12-03-2015),Jambo767 (11-08-2015),james679 (11-24-2015),JayMontana (03-31-2018),JayRdash (05-04-2017),jayrey (04-23-2016),jejachmi (10-01-2015),jockonicko (02-07-2016),joetrann (10-01-2015),JohannMysterDe (11-19-2015),josefersom (03-29-2016),joshwheta (08-29-2016),kadir5353 (09-02-2016),kakapa (03-21-2016),kakelarsii (10-22-2015),kakihacker77 (02-03-2016),Kanayathetroll19 (09-10-2016),Kartan (05-22-2016),kek oi (10-28-2015),kenny36 (02-01-2016),kexak1337 (10-18-2015),Kingpin (10-01-2015),KING_STEVIE (03-30-2018),KittyKat414 (12-07-2016),Koolerben2000 (12-21-2015),Kotowsky23 (05-08-2016),Krante (11-25-2015),kristelaber (03-28-2016),Krooshev (06-02-2016),ksilver008 (10-01-2015),kukiops (05-30-2016),kurva147 (10-02-2016),lauquan098 (03-30-2016),Legilous (11-06-2015),levin1108 (11-18-2017),Lifezide (10-18-2016),Lilboye321 (06-12-2016),linksmack34 (12-25-2015),lolmonster14 (06-04-2017),lucasrys1337 (06-18-2019),M00t1ve (04-28-2016),Markkdd (08-02-2017),Maxstephen (03-30-2016),mellowkai (10-08-2016),metiC94 (11-11-2017),Microsoftexcel (07-22-2017),millyfrom727 (03-10-2016),milu2612 (11-12-2017),Mindblower (01-02-2016),minershock (07-07-2016),Mirzays (03-27-2016),MLGPLAYER101 (10-02-2015),MrGrunga (03-30-2016),mrop420 (02-04-2016),nathan5740 (04-29-2016),Nazach (08-17-2016),NEL.VIN (10-19-2015),Nemesis1997 (10-14-2015),NewAgeGod (12-03-2015),No_Commant (02-08-2016),Nutcase10000 (11-07-2015),ObsessedHacker (10-01-2015),OlBoyJohn (10-16-2015),oliwwere (09-29-2016),onlyonce13 (12-10-2017),oreezy (05-28-2016),owen12345 (04-18-2016),Papajus (09-17-2016),piotreknwl123 (02-25-2016),PokemonTrainer123 (05-22-2016),polopo (01-14-2017),potkissle (01-23-2017),promat312 (06-11-2016),Psam (04-23-2016),PsychoChester (07-03-2016),pur3muscle (11-26-2015),PvPcow23 (02-17-2016),QaysaR (05-12-2020),quwhbkdwhbji (06-01-2016),RAPEYDOLPHIN (03-05-2016),Rasesz (05-28-2016),Red is trash (08-10-2016),Retina124 (05-25-2016),RetroFZ (02-13-2016),RichardBrooks (01-04-2016),Rokasz1227 (03-30-2018),Rozek72 (06-29-2016),rungodz (06-23-2016),ryan01803 (04-24-2017),Ryuux (12-22-2017),s0lvent (11-01-2017),Saetobi (11-16-2015),sakrus (10-25-2015),seclyps (06-05-2016),shattering (05-22-2016),Shpee166 (05-03-2016),ShrapNyll (04-23-2016),SilentHuskey007 (10-13-2015),Silverbullet911 (09-09-2018),simon031 (06-15-2016),simonbroden2002 (12-16-2015),SirTissue (08-05-2016),SkimpyWhale (11-03-2015),SLHX (05-22-2016),Smoke_City (10-01-2015),snakesctaer (11-25-2015),sohs02 (07-26-2016),Sosnagettrekt (07-22-2016),sosnavole (09-25-2016),souldiver10 (01-17-2016),SpicyNipples1 (10-27-2015),stealthisaur9 (01-08-2016),suhail8010 (07-10-2016),superkuke101 (11-05-2016),syahmi09 (10-15-2017),Syakumi (12-07-2015),tehcutiescoutergirl (05-29-2016),teinsiang5706 (07-30-2016),termninja (12-18-2016),Thaeglor (10-31-2016),TheCarbonEffect (02-10-2019),TheRealHackerPL (08-12-2017),theta123456258 (02-14-2016),TheWayneStain (01-02-2016),TigOlBitties24 (11-12-2015),Tioui (10-20-2015),TipsiTurtle (10-23-2016),titingbadz (12-05-2016),tolouis (03-31-2018),TopKekMeme (01-05-2016),TroyTHEAnon (10-29-2017),tyrjsdke324 (04-30-2017),urabngod (08-04-2016),VeNoMxKinG (08-30-2016),verzaxd (06-14-2017),vinarose143 (08-22-2016),vipbb0y (04-28-2018),weakfall (10-11-2015),weedsmooker13 (08-05-2018),welbert5074 (11-23-2015),werwwer12345 (06-04-2016),wherearethenachos (03-01-2016),WhoDaresWins101 (01-04-2016),Whzzzy (11-24-2015),Wifllo (04-05-2016),XenoMage (01-05-2018),xEvilBoy96 (10-15-2015),xjemat22 (01-01-2016),xwikify (10-19-2015),xX-1337-Xx (10-05-2015),xXalexaleXx07 (12-04-2015),xxD_Bz (10-11-2015),xXLeShadowXx (11-16-2015),yakaktyc (06-20-2016),yazidmessi97 (06-29-2016),yousef01 (06-23-2016),Zekas199 (11-17-2017),zendlalongka444 (03-24-2016),Zeno03 (11-21-2017),zvailo (07-11-2016),{ } (08-10-2016)

  3. #2
    Idde00's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Madagascar
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    Looks nice

  4. #3
    ayylmao12's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    2
    Please change that blue color

  5. #4
    UnbenLyhytKulli's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by ayylmao12 View Post
    Please change that blue color
    Colorblind?

  6. #5
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by ayylmao12 View Post
    Please change that blue color
    You can change the color of everything in the options tab

  7. #6
    ObsessedHacker's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Israel
    Posts
    418
    Reputation
    37
    Thanks
    240
    My Mood
    Chatty
    Thanks for sharing!

    Do NOT ask for approval, it WON'T speed up the approval, it will WASTE TIME because the MODERATORS will need to DELETE your post!
    Every comment that says: "Approve, Please" Will get DELETED, and will SLOW DOWN the APPROVAL!

    Show some RESPECT!
    Don't forget to click on that button and add Reputation If I helped you!

  8. #7
    Kingpin's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    cloud 9
    Posts
    2,978
    Reputation
    1028
    Thanks
    876
    My Mood
    Amused
    Seems good. Thanks!
    [IMG]https://thumbs.gfyca*****m/LikableImmediateAcornweevil-size_restricted.gif[/IMG]

  9. #8
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by Thijmen84 View Post
    Seems good. Thanks!
    No problem!

  10. #9
    Pyramid Head's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Location
    Demonic Entity
    Posts
    174
    Reputation
    11
    Thanks
    17
    Looks great thanks for releasing

  11. #10
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by Pyramid Head View Post
    Looks great thanks for releasing
    No problem!

  12. #11
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,279
    My Mood
    Devilish
    Moved, also note I am unable to approve because I am not on home (No PC), please be patient untill either Color comes from school or some other mod checks the file.

  13. #12
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by Idde00 View Post
    Looks nice
    Thanks, I hope you like it

  14. #13
    Color's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    19,896
    Reputation
    2588
    Thanks
    7,864
    My Mood
    Lurking
    . @ImWhacky

    Scanned wrong file also you're well above the post requirement to post links now..

    Member Since 8/05/2012
    Editor 4/04/13 - 4/21/13
    Middleman 7/14/13 - 11/4/13

    Battlefield Minion 6/13/14-3/20/15
    Steam Minion 7/16/14-3/20/15

    Minion+ 10/1/14-3/20/15
    M.A.T. Minion 10/19/14-3/20/15
    ROTMG Minion 1/14/15-3/20/15

    Donator Since 2/26/15 (Thanks @Cursed!)
    Steam Minion 5/9/15 - 11/5/15
    OSFPS Minion 9/15/15 - 11/5/15


  15. #14
    ImWhacky's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    509
    Reputation
    56
    Thanks
    4,059
    My Mood
    Breezy
    Quote Originally Posted by Color View Post
    . @ImWhacky

    Scanned wrong file also you're well above the post requirement to post links now..
    crap, I know, the original thread had everything up to date but the picture had my Skype name in it by accident, so i went to edit the post and when i tried to edit it, It would not show what I had in the text box, so i used the one from another release where i couldn't post links. I just fixed it

  16. #15
    Color's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    19,896
    Reputation
    2588
    Thanks
    7,864
    My Mood
    Lurking
    Looks good.
    //Approved

    Member Since 8/05/2012
    Editor 4/04/13 - 4/21/13
    Middleman 7/14/13 - 11/4/13

    Battlefield Minion 6/13/14-3/20/15
    Steam Minion 7/16/14-3/20/15

    Minion+ 10/1/14-3/20/15
    M.A.T. Minion 10/19/14-3/20/15
    ROTMG Minion 1/14/15-3/20/15

    Donator Since 2/26/15 (Thanks @Cursed!)
    Steam Minion 5/9/15 - 11/5/15
    OSFPS Minion 9/15/15 - 11/5/15


Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] xCal Injector v2.1
    By ImWhacky in forum Counter-Strike 2 Coding & Resources
    Replies: 10
    Last Post: 10-01-2015, 02:55 PM
  2. [Release] xCal Injector v2.0 (BIG UPDATE)
    By ImWhacky in forum Counter-Strike 2 Coding & Resources
    Replies: 6
    Last Post: 10-01-2015, 02:55 PM
  3. [Outdated] xCal Injector v1.6
    By ImWhacky in forum Counter-Strike 2 Coding & Resources
    Replies: 8
    Last Post: 09-27-2015, 07:54 AM
  4. [Outdated] xCal Injector v1.5
    By ImWhacky in forum Counter-Strike 2 Coding & Resources
    Replies: 3
    Last Post: 09-26-2015, 08:51 AM
  5. .dll injector
    By EleMentX in forum Gunz General
    Replies: 31
    Last Post: 07-08-2010, 10:44 AM

Tags for this Thread