Page 1 of 3 123 LastLast
Results 1 to 15 of 45
  1. #1
    -[I]fLuX's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    342
    Reputation
    112
    Thanks
    3,923
    My Mood
    Bored

    -[I]fLuX CrossFire Source Code [C#]

    Hello guys,
    today i will release my Injetor code for you.

    Its easy for you to use when you know a little bit about c#

    You have two options:

    1.You dowload my Form1.cs file from the Attach

    2.You get the code from here and paste it by yourself

    Code:
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Diagnostics;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Windows.Forms;
    using System.Threading;
    using System.Security.Cryptography;
    using System.Net;
    using System.Runtime.InteropServices;
    using System****;
    using System.Media;
    using System.Xml;
    
    //Created by -[I]fLuX
    
    namespace IfLuXInject
    {
        class Inject
        {
            private static class WINAPI
            {
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern IntPtr OpenProcess(UInt32 dwDesiredAccess,Int32 bInheritHandle,UInt32 dwProcessId);
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern Int32 CloseHandle(IntPtr hObject);
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern IntPtr GetProcAddress(IntPtr hModule,string lpProcName);
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern IntPtr GetModuleHandle(string lpModuleName);
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern IntPtr VirtualAllocEx(IntPtr hProcess,IntPtr lpAddress,IntPtr dwSize,uint flAllocationType,uint flProtect);
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern Int32 WriteProcessMemory(IntPtr hProcess,IntPtr lpBaseAddress,byte[] buffer,uint size,out IntPtr lpNumberOfBytesWritten);
                [DllImport("kernel32.dll", SetLastError = true)]
                public static extern IntPtr CreateRemoteThread(IntPtr hProcess,IntPtr lpThreadAttribute,IntPtr dwStackSize,IntPtr lpStartAddress,IntPtr lpParameter,uint dwCreationFlags,IntPtr lpThreadId);
                public static class VAE_Enums{
                    public enum AllocationType{
                        MEM_COMMIT = 0x1000,
                        MEM_RESERVE = 0x2000,
                        MEM_RESET = 0x80000,}
                    public enum ProtectionConstants{
                        PAGE_EXECUTE = 0X10,
                        PAGE_EXECUTE_READ = 0X20,
                        PAGE_EXECUTE_READWRITE = 0X04,
                        PAGE_EXECUTE_WRITECOPY = 0X08,
                        PAGE_NOACCESS = 0X01}}}
            public static bool DoInject(Process pToBeInjected,string sDllPath,out string sError){
                IntPtr hwnd = IntPtr.Zero;
                if (!CRT(pToBeInjected, sDllPath, out sError, out hwnd)){
                    if (hwnd != (IntPtr)0)
                        WINAPI.CloseHandle(hwnd);
                    return false;}
                int wee = Marshal.GetLastWin32Error();
                return true;}
            private static bool CRT(Process pToBeInjected,string sDllPath,out string sError,out IntPtr hwnd){
                sError = String.Empty;
                IntPtr hndProc = WINAPI.OpenProcess((0x2 | 0x8 | 0x10 | 0x20 | 0x400), 1,(uint)pToBeInjected.Id);
                hwnd = hndProc;
                if (hndProc == (IntPtr)0){
                    sError = "Unable to attatch to process.\n";
                    sError += "Error code: " + Marshal.GetLastWin32Error();
                    return false;}
                IntPtr lpLLAddress = WINAPI.GetProcAddress(WINAPI.GetModuleHandle("kernel32.dll"),"LoadLibraryA");
                if (lpLLAddress == (IntPtr)0){
                    sError = "Unable to find address of \"LoadLibraryA\".\n";
                    sError += "Error code: " + Marshal.GetLastWin32Error();
                    return false;}
                IntPtr lpAddress = WINAPI.VirtualAllocEx(hndProc,(IntPtr)null,(IntPtr)sDllPath.Length,(uint)WINAPI.VAE_Enums.AllocationType.MEM_COMMIT |(uint)WINAPI.VAE_Enums.AllocationType.MEM_RESERVE,(uint)WINAPI.VAE_Enums.ProtectionConstants.PAGE_EXECUTE_READWRITE);
                if (lpAddress == (IntPtr)0){
                    if (lpAddress == (IntPtr)0){
                        sError = "Unable to allocate memory to target process.\n";
                        sError += "Error code: " + Marshal.GetLastWin32Error();
                        return false;}}
                byte[] bytes = CalcBytes(sDllPath);
                IntPtr ipTmp = IntPtr.Zero;
                WINAPI.WriteProcessMemory(hndProc, lpAddress, bytes, (uint)bytes.Length, out ipTmp);
                if (Marshal.GetLastWin32Error() != 0){
                    sError = "Unable to write memory to process.";
                    sError += "Error code: " + Marshal.GetLastWin32Error();
                    return false;}
                IntPtr ipThread = WINAPI.CreateRemoteThread(hndProc,(IntPtr)null,(IntPtr)0,lpLLAddress,lpAddress,0,(IntPtr)null);
                if (ipThread == (IntPtr)0){
                    sError = "Unable to load dll into memory.";
                    sError += "Error code: " + Marshal.GetLastWin32Error();
                    return false;}
                return true;}
            private static byte[] CalcBytes(string sToConvert){
                byte[] bRet = System.Text.Encoding.ASCII.GetBytes(sToConvert);
                return bRet;}}
        class DxInject
        {
            [DllImport("user32.dll")]
            public static extern ushort GetKeyState(short nVirtKey);
            public const ushort keyDownBit = 0x80;
            public static bool IsKeyPressed(Keys key){
                return ((GetKeyState((short)key) & keyDownBit) == keyDownBit);}
            static void InjectDll(){
                int ID = 0;
                Process proc;
                String error;
                bool bfound = false;
                string sProcess = "crossfire";
                string ProcName = Process.GetCurrentProcess().ProcessName;
                string exePath = Environment.CurrentDirectory + "\\" + ProcName;
                string DllPath = exePath + ".dll";
                if (!File.Exists(DllPath)){
                    MessageBox.Show("Dll File Not Found!");
                    System.Environment.Exit(1);}
                while (!bfound){
                    if (IsKeyPressed(Keys.End)){
                        MessageBox.Show("Exiting Injection!");
                        System.Environment.Exit(1);}
                    foreach (Process pro in Process.GetProcesses()){
                        if (pro.ProcessName == sProcess){
                            ID = pro.Id;
                            bfound = true;
                            break;}}
                    Thread.Sleep(100);}
                proc = Process.GetProcessById(ID);
                bool result = Inject.DoInject(proc, DllPath, out error);
               if (error != ""){
                    MessageBox.Show("Injection Error: " + error);}
                else{
                    System.Environment.Exit(1);}}
            static void Main()
            {
                MessageBox.Show("-[I]fLuX Crossfire Injector\t\nPress 'OK' and start CrossFire");
                Thread t_inject;
                t_inject = new Thread(InjectDll);
                t_inject.Start();
            }
        }
    }
    Virus Scan of Attach:
    VirusTotal
    Jotti

    Screen Shots



    If you post an injector with this code give credits
    <b>Downloadable Files</b> Downloadable Files
    Last edited by -[I]fLuX; 07-03-2012 at 01:01 PM.
    •Contributor: June, 29th 2013


    My Sources:
    Injector
    Memory Base
    D3D9 Hook
    Hooked Memory Base




  2. The Following 376 Users Say Thank You to -[I]fLuX For This Useful Post:

    -GEORGE2- (03-28-2013),01110219998 (05-06-2016),3D (07-18-2012),5cent50 (06-25-2013),770421581 (03-22-2014),99KWSTAS (02-07-2013),=WilliaN= (08-19-2012),a1323142 (05-11-2013),accept1t3 (02-26-2016),afatarx (07-05-2012),agent14 (01-07-2013),ahmedsaied100 (08-19-2012),ahmedtaha1nd (06-02-2013),ahmedtion (01-18-2013),ahmeth (07-01-2013),ajdari1 (01-11-2013),akikonk12 (03-28-2013),akin67 (03-27-2013),aladin111 (01-31-2013),aleekx (04-02-2013),alla263 (11-11-2012),Allahala (03-28-2013),amrkana (07-28-2012),anamemo (08-12-2012),anan po (08-18-2012),Andiiofc (05-19-2013),andrewx10100 (08-19-2012),andrycamel (01-14-2013),andynet20 (04-24-2013),antonis94 (01-21-2013),armymen (02-04-2013),Art1 (07-19-2013),asasss (08-20-2012),aScafe (02-08-2013),asdasdasd112 (04-03-2014),asepajah990 (05-19-2016),Ass3 (12-20-2015),badr alshimy (04-07-2013),benben21 (03-24-2013),bigvalo (08-07-2012),biigone (12-13-2014),binjaizip (04-21-2013),BlackSoldier (05-19-2013),bloodypro (12-27-2013),BlueExorcist (07-28-2013),bobtntkiller (10-16-2012),brandenc (01-29-2013),BroxMen (10-06-2012),bryaneun (02-05-2013),buhuha (04-28-2013),Caezer99 (11-03-2013),camica (08-20-2012),camilo garcian (01-19-2013),carfil (06-27-2013),CFTrader (02-23-2013),CF_Hacker. (07-09-2012),chelsau (02-05-2013),chicachewbchoo (01-18-2013),Chinese programmers (10-30-2013),chupapi24 (07-19-2012),chuyaz (01-15-2013),cmpmendes (02-04-2013),costya1997 (08-24-2012),crankoa (08-20-2013),crazzzy (08-21-2012),crizankiller (04-29-2013),cwl1955 (01-19-2013),dadada1234 (02-09-2013),Daduccio95 (02-05-2015),Danielzuncho (01-01-2013),dardi2007 (02-06-2013),Darkknight41 (08-19-2012),darkmda123 (01-30-2016),darknight234 (05-20-2013),darkwolf94 (07-29-2013),DarylPL01 (05-20-2013),dauszz simpang tiga (02-07-2013),dcm188 (02-07-2013),defs (07-08-2012),dejavu33 (11-08-2012),deniro (05-20-2013),derrickxv207 (12-29-2012),DevChucky (07-11-2017),dhqkak10 (03-31-2014),diamond99 (06-11-2016),diodioc (09-13-2014),doctor_trol (06-30-2015),dodote (10-25-2012),dopesosa (01-28-2013),Drunkang3l (01-26-2013),duckden (04-02-2013),EatMyyKnife (09-20-2014),Edenlly (08-31-2016),eduardo12345 (08-24-2012),eldiablo12 (04-06-2013),elementh2o (12-26-2012),Elghrbawy10 (05-22-2013),elmlak_2012 (08-18-2012),eloading (02-17-2013),emoemo2 (05-10-2013),enasel (01-19-2013),enesozer (08-08-2014),ESLAM ZAKI (02-07-2013),eslamsika (07-20-2013),estebanxiro1 (04-13-2013),ExKreator (08-09-2012),eybuangka3 (01-30-2016),Facebook0 (07-29-2012),fairpoop147 (07-22-2014),faragala (04-05-2015),farha12 (02-09-2013),farouk (08-22-2012),fckcrossfire (05-19-2013),fcpcs (12-26-2014),felipelumix10 (02-09-2013),fireking12 (05-20-2013),firminote12 (08-19-2012),ForceCamP (07-05-2012),Foxelite (03-31-2013),fudido190 (07-06-2012),gabrielxlr (07-19-2012),geraldelijino (02-04-2013),ggamals7744 (08-28-2015),Ghost_Freek (02-25-2015),gianpuno (09-07-2012),godofwar369 (09-23-2012),gogo32211 (07-05-2012),goru09 (10-23-2013),gostodemerda (06-24-2013),greendaydogs (04-23-2013),gugufamoes (09-13-2014),Hacker Fail (02-18-2013),hanamychy (05-13-2013),Hisan (12-29-2012),hmoobboy (06-27-2017),hossamahmed (10-02-2012),hpserisi5 (05-26-2013),hrouda88 (01-19-2013),IceyKicks (05-21-2015),ich0ke246 (06-21-2015),idumpling123 (07-05-2012),iJhonni (06-27-2013),ijong689 (04-28-2013),ilayda (03-27-2013),iloveyoulouise (04-23-2013),ilyass2601 (07-17-2014),ITkhazeplov (08-18-2014),ItsJarez (08-22-2012),itsmebadman (02-20-2013),iwinuwin (07-11-2012),J3eyazz (05-06-2013),jabiva08 (05-25-2019),Jasondang123 (10-30-2015),jeff111 (02-20-2016),jhoelle2011 (07-29-2012),jibo_khan2000 (07-29-2012),JJmassdevice (05-17-2013),joakimen (04-13-2013),joelkun23 (06-30-2013),JokerFTW (09-01-2012),ka3bo0ol (07-19-2013),kakiba5 (08-16-2013),Kankyuro (06-15-2019),kanu15 (01-30-2013),kavika (08-23-2014),keeltsie (02-08-2013),keko78 (07-04-2013),KenshinCoder (02-12-2013),KevinPa (07-04-2012),kingfica (05-23-2013),Kingusuk (03-01-2014),KIOoTRAX (05-26-2013),kleinekevermans (01-26-2013),kleinerkai (05-22-2013),Knight897 (07-30-2013),kokosak621 (05-05-2013),komrid55 (02-24-2013),kremini1 (10-25-2012),KörnerKissen (07-02-2013),labay06 (07-27-2013),Lachesis09 (08-20-2012),lacosteone (11-17-2015),larsonv21 (02-01-2013),laserbase13333 (09-21-2012),laserbase1997 (01-17-2013),LavaRain (06-30-2013),law145 (04-11-2013),leoleo246 (08-18-2013),LEOSBREIS (10-04-2014),lhvip (02-13-2015),likeurass (12-27-2012),likr999 (01-16-2013),liujinze (07-21-2014),lizan60 (05-30-2013),lockhong (08-13-2012),lolboy3D (04-12-2013),lolosunit (04-01-2013),lukas_soares22 (11-09-2012),lzntupai (02-19-2014),m.magdy1997 (01-18-2013),m1dexx (05-27-2013),m45o (06-30-2013),MagnusBR (03-08-2016),mahmad888 (10-27-2012),mahmoud0001 (08-19-2012),mahmoud1112 (01-12-2016),mahmoud2012a (08-19-2012),mahmoudb2a (05-22-2013),mahmoudcool (01-29-2013),mahurin (07-08-2015),mamo007 (07-29-2012),mando1 (07-30-2012),marcel910111 (01-16-2013),marcio11 (05-23-2013),mario75 (08-01-2016),markogreif (02-09-2013),marksemaj (10-25-2013),MaskedAbsol (06-25-2013),masterfah (08-18-2012),MasterOfTheOne (08-11-2013),matheultra (07-09-2012),Matrix2012 (08-01-2012),maurosan (02-24-2013),maxxell (02-09-2013),medarov (03-15-2015),medarov2 (05-21-2013),meiyi (12-27-2012),MENAA (02-03-2013),mendbest (10-12-2015),meroboy36 (11-18-2012),micco777 (08-18-2012),mindasss (07-07-2013),minhnieboy98 (12-26-2012),misstyup (02-16-2016),mmwarrior913 (12-27-2012),mohamedadv (05-12-2013),mohamed_shad (08-27-2012),mohammedelmasry200 (06-27-2013),moksha2007 (08-18-2012),mouheb (08-13-2012),Mr White (07-29-2013),MrCaSpR (07-31-2015),MrGhillieToast (06-24-2014),MrX_ (10-08-2015),mschubby024 (01-17-2013),naderxx (06-25-2013),Nanko23 (04-06-2013),navjot1997 (08-20-2012),ncc1b (01-15-2013),neolamprs38 (02-14-2013),newbiecrazy (02-04-2013),nhoclesnar (01-19-2013),NIgga* (07-26-2014),nomanis (07-06-2012),Nomi1 (04-16-2016),nonsoc123 (07-31-2012),o0destroyer0o (05-11-2013),oincew (04-23-2013),ok787878 (06-27-2013),olejik369 (08-22-2012),omar24689 (07-22-2015),Onesto98 (12-27-2012),Oppainokatachi (06-26-2016),orcsbane (07-12-2012),orton25 (06-25-2013),otik2k33 (08-07-2012),ottot538 (03-30-2013),O_Magdi (02-04-2013),patrickster (12-28-2012),pedrokane (05-04-2013),Phoenix1337 (08-22-2013),pitzesrr (01-19-2013),poopoo3030 (05-17-2013),PopupsAndRegistrationSuck (04-30-2013),pousthsgay123 (04-20-2013),prinZ96 (07-31-2013),pro hak3k (08-19-2012),Problem ? (01-15-2013),prowiz (07-05-2012),puracautelahacker (06-29-2013),Purple. (04-21-2013),quehuongtoi1 (06-24-2013),RainEventus (06-21-2015),raquelm95 (12-25-2012),razorfire20 (06-25-2013),rebildegwapo (01-11-2013),Red Husky (01-14-2014),remzkee0903 (02-09-2013),restysebastian (11-25-2015),rick-90 (02-15-2016),rinaldohehe (07-06-2012),Robomagno (05-17-2013),romelko12345 (01-03-2014),ronaldinho 1 (08-18-2012),roniel90 (06-23-2013),Rooseveltjd (08-19-2012),rreennee (01-15-2013),Rullez (02-02-2013),RusMen (07-07-2012),S0uL 3mak Yad (08-18-2012),sameh45 (08-19-2012),samrat2704 (11-22-2015),samuari (07-03-2012),sebicutza2 (01-27-2013),sercan01 (06-25-2013),shadicena (07-22-2013),sheila898 (05-05-2014),sinan2013 (02-07-2013),SirMagicraph (02-09-2013),slonick (08-22-2013),smsm13 (02-06-2015),sniper2211 (07-22-2014),Sosenka (11-15-2012),sotoclik (02-12-2013),Stanman08 (09-01-2012),starakatrini (01-18-2013),stjepans96 (01-20-2013),sulthan (06-25-2013),sulthanhafiz (06-27-2013),sumbalido4 (03-11-2016),sundae102 (08-31-2012),Swoop (05-19-2013),szczurekPROS (07-19-2014),Thaisen (12-13-2014),The Conjurer (04-26-2013),The.Sad123 (04-24-2013),thebigpower (07-03-2012),thehero235 (10-26-2013),themon12 (05-21-2013),Thomas134 (02-10-2013),tianz (10-05-2012),tidusblitz13 (06-24-2013),tigerxpert (05-12-2013),tikky1997 (01-26-2013),titolord29 (05-11-2013),titrem (02-02-2013),tizaa100 (08-23-2013),tjelano (02-10-2013),tobiasvoit (02-10-2013),tristanjoshua (07-05-2012),troopeer (05-11-2014),twenge04 (07-30-2012),Unfinished Code (02-07-2013),velnarg (12-29-2012),VezticWho (04-25-2016),vilcualexei (05-11-2018),vnc600 (11-17-2015),volov (07-27-2013),waleed88 (01-16-2013),Walleee3 (11-16-2012),wassup013 (07-29-2013),weilehe (05-19-2013),wiga2013 (02-07-2013),winerwin (01-27-2014),wlzrussel (02-12-2013),wwssww (04-27-2013),xatom361 (01-20-2014),xBoNBoN. (07-23-2015),xena157 (06-26-2013),XkyShadow (01-31-2013),XxkickmexX (01-16-2013),xZEDx (06-25-2013),yagamiligth (09-30-2015),yaserwa7d (05-19-2013),yayakx (04-28-2014),yohctub28 (01-08-2013),z147896321 (05-13-2013),z8raxenga (08-19-2012),zamk1 (11-14-2012),zcd5312909 (04-24-2013),zezo774 (07-22-2012),zidanbuslig (08-18-2012),zocks (06-30-2013),Zykkertop (01-14-2013),[R]3X (08-31-2012),]I[Shine (05-06-2013)

  3. #2
    Austin's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Great White North
    Posts
    30,484
    Reputation
    6104
    Thanks
    8,326
    My Mood
    Lurking
    approved /




    VIP Support // May 2011
    CF Minion // January 2012
    Newsforce // August 2012
    Minion+ // March 2013
    Moderator // August 2014
    Former Staff // January 2015
    General Minion // July 2015
    Publicist // December 2015





  4. #3
    -[I]fLuX's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    342
    Reputation
    112
    Thanks
    3,923
    My Mood
    Bored
    Quote Originally Posted by Scata View Post
    approved /
    Thx for fast approve
    •Contributor: June, 29th 2013


    My Sources:
    Injector
    Memory Base
    D3D9 Hook
    Hooked Memory Base




  5. #4
    bandi12's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    562
    Reputation
    30
    Thanks
    318
    My Mood
    Yeehaw
    Nice i have my Loader i coded it in VB
     




    MY Latest Aimbot on : Orbital Space (Video Comming Soon)'





     

    - @UltraPGNoob
    - @dicky88smd
    - @giniyat101

  6. #5
    samuari's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    2
    My Mood
    Paranoid
    After u paste it on Visual C++ 2010 what u do?
    Thank if helped




  7. #6
    Jeovante's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Berkely,CA,USA
    Posts
    1,240
    Reputation
    164
    Thanks
    3,679
    My Mood
    Aggressive
    Quote Originally Posted by samuari View Post
    After u paste it on Visual C++ 2010 what u do?
    Debug duhhh (Happy leeching)

  8. The Following User Says Thank You to Jeovante For This Useful Post:

    Sirius Blac (07-03-2012)

  9. #7
    -[I]fLuX's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    342
    Reputation
    112
    Thanks
    3,923
    My Mood
    Bored
    Quote Originally Posted by samuari View Post
    After u paste it on Visual C++ 2010 what u do?
    lol its c# not c++
    •Contributor: June, 29th 2013


    My Sources:
    Injector
    Memory Base
    D3D9 Hook
    Hooked Memory Base




  10. #8
    samuari's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    2
    My Mood
    Paranoid
    Quote Originally Posted by -[I]fLuX View Post
    lol its c# not c++
    what u do in it do u make the form of the injector
    Thank if helped




  11. #9
    samuari's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    2
    My Mood
    Paranoid
    I got an error
    It said
    Error 2 ; expected C:\Users\Admin\AppData\Local\Temporary Projects\WindowsFormsApplication1\Program.cs 13 13 WindowsFormsApplication1
    and another one said

    Error 3 The name 'File' does not exist in the current context C:\Users\Admin\AppData\Local\Temporary Projects\WindowsFormsApplication1\Program.cs 109 18 WindowsFormsApplication1
    Attached Thumbnails Attached Thumbnails
    无命名.png  

    Last edited by samuari; 07-03-2012 at 02:58 PM.
    Thank if helped




  12. #10
    samuari's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    2
    My Mood
    Paranoid
    Plese help
    Thank if helped




  13. #11
    -[I]fLuX's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    342
    Reputation
    112
    Thanks
    3,923
    My Mood
    Bored
    Quote Originally Posted by samuari View Post
    Plese help
    the error 2 saied taht you made an ; on this place

    and tehn the error 3 will be fixed
    •Contributor: June, 29th 2013


    My Sources:
    Injector
    Memory Base
    D3D9 Hook
    Hooked Memory Base




  14. #12
    Jeovante's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Berkely,CA,USA
    Posts
    1,240
    Reputation
    164
    Thanks
    3,679
    My Mood
    Aggressive
    Quote Originally Posted by -[I]fLuX View Post
    the error 2 saied taht you made an ; on this place

    and tehn the error 3 will be fixed
    trust me he only knows C+P not much more

  15. #13
    [mi5's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    301
    Reputation
    10
    Thanks
    618
    man yuooo pro xDDDD Lol

  16. #14
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    @-[I]fLuX dude i didnt like some parts of the code and i fixed it a little bit it is not a problem right ? i am still giving credits to you... anyway thanks

  17. #15
    Code[VB]'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    CODER
    Posts
    608
    Reputation
    11
    Thanks
    702
    My Mood
    Bitchy
    uuuuhh strong, determined hard work

Page 1 of 3 123 LastLast

Similar Threads

  1. [Request] Need Crossfire Source Codes
    By [Lori]Yagami in forum Visual Basic Programming
    Replies: 6
    Last Post: 07-20-2012, 12:09 PM
  2. [Request] Crossfire NA Wall Hack Source Code
    By Dark Side in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 08-13-2011, 03:03 AM
  3. Source code NA Crossfire
    By Nubzgetkillz in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 10-01-2010, 06:07 AM
  4. CrossFire Hack Source Code Resource List!
    By *DeathHunter* in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 09-14-2010, 05:53 AM
  5. Search source code's [CrossFire]
    By mba in forum Visual Basic Programming
    Replies: 15
    Last Post: 11-22-2009, 04:24 PM