Thread: [HELP] Injector

Results 1 to 10 of 10
  1. #1
    Golden.'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    156
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed

    [HELP] Injector

    ok so i was looking in the snippets vault ( i think ) and it showed how to make a very simple injector..

    [CODE]
    InjectDLL("ProccessID","DllPath+name+Extension")

    E.g
    InjectDLL("Engine.exe","C:\Combatarmshack.dll")
    Which is all fine
    but how do i make it so its like the regular ones, put the injector & dll as the same name?

  2. #2
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    What? I don't understand..

    I thought most injectors allowed you to browse for DLLs.

  3. #3
    Golden.'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    156
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    well in the example above, it has an exact destination. if the .dll is not in that destination, the injector doesnt work..
    How would i make it so that i could browse for it?

  4. #4
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Include an OpenFileDialog.

    First, make a string at the top of your code called fileloc.
    Code:
     Dim fileloc as string = string.empty
    Then make a button called "Browse", click that and put in this code under it's click event:

    Code:
    OpenFileDialog1.showdialog
    fileloc = Openfiledialog1.filelocation
    Then for the inject thing put this:
    Code:
    InjectDLL("ProccessID", fileloc)

  5. The Following User Says Thank You to Lolland For This Useful Post:

    Golden. (06-29-2010)

  6. #5
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by Golden. View Post
    ok so i was looking in the snippets vault ( i think ) and it showed how to make a very simple injector..

    [CODE]
    InjectDLL("ProccessID","DllPath+name+Extension")

    E.g
    InjectDLL("Engine.exe","C:\Combatarmshack.dll")
    Which is all fine
    but how do i make it so its like the regular ones, put the injector & dll as the same name?
    Process Id isnt process name.
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  7. #6
    Golden.'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    156
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    what is the process id for combat arms?

  8. #7
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by Golden. View Post
    what is the process id for combat arms?
    The process id is always different...

    The api has a function to get the id by the process name, check threw it.



  9. #8
    Golden.'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    156
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    ok.. thats not working
    3 errors:
    Error 1 Reference to a non-shared member requires an object reference.

    Error 2 'filelocation' is not a member of 'System.Windows.Forms.OpenFileDialog'.

    Error 3 'InjectDLL' is not declared. It may be inaccessible due to its protection level.

  10. #9
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    openfiledialog1.filename



  11. #10
    rogerjack's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    If you want to help in injector then lots of websites are available for doing the injector. You can also found from the tutorials it will suggest you the good idea for the injector. IN these tutorials lot of facilities are also available for the injector.

Similar Threads

  1. [Help Request] =HELP= Injector/machidamia hack not working
    By omfgs in forum CrossFire Help
    Replies: 24
    Last Post: 06-26-2011, 08:35 AM
  2. [Source Help]Injector and ListBox - VB2008
    By Samueldo in forum Visual Basic Programming
    Replies: 8
    Last Post: 02-21-2010, 06:55 AM
  3. help Injector Dll
    By duduhasin in forum Combat Arms Help
    Replies: 1
    Last Post: 02-12-2010, 08:50 AM
  4. [Help] help! injectors
    By jamiegg in forum CrossFire Hacks & Cheats
    Replies: 31
    Last Post: 11-14-2009, 08:18 AM
  5. [Help] Injector + Dll Wrapper
    By Tierrize in forum Visual Basic Programming
    Replies: 3
    Last Post: 10-27-2009, 08:56 PM