Page 2 of 2 FirstFirst 12
Results 16 to 30 of 30
  1. #16
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Are you asking for an injector or a DLL?

  2. #17
    JussoFreshJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Yo Daddys House
    Posts
    625
    Reputation
    -17
    Thanks
    769
    My Mood
    Sick
    WinAPI C/C++?

  3. #18
    [A]bbest's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    In My PC...
    Posts
    3,131
    Reputation
    18
    Thanks
    426
    My Mood
    Breezy
    Quote Originally Posted by CrossfireHackCoder View Post
    WinAPI C/C++?
    c##

  4. #19
    JussoFreshJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Yo Daddys House
    Posts
    625
    Reputation
    -17
    Thanks
    769
    My Mood
    Sick
    WinAPI C/C++?

  5. #20
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    just a quick question,

    what's the difference between { long} and { *(long*) } i don't get it.

  6. #21
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Quote Originally Posted by 258456 View Post
    just a quick question,

    what's the difference between { long} and { *(long*) } i don't get it.
    Casting as a long pointer then dereferencing it.

    You cant point to the first one using a dereference operator, it won't allow you without casting first. \:

  7. #22
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    ok, i am not understanding ur advanced vocab lol

  8. #23
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by 258456 View Post
    just a quick question,

    what's the difference between { long} and { *(long*) } i don't get it.
    You would if you actually had coded it instead of leeching it.
    Love You All~

  9. The Following User Says Thank You to Melodia For This Useful Post:

    Hell_Demon (10-28-2010)

  10. #24
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    i never used it in programming so i never leeched, take a deep breath and chill out. I was merely asking the difference, is it illegal to learn on these forums?

  11. #25
    Dankilla3131's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Virginia!
    Posts
    110
    Reputation
    10
    Thanks
    11
    My Mood
    Inspired
    thanks deathnote guy! lol

  12. #26
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by 258456 View Post
    i never used it in programming so i never leeched, take a deep breath and chill out. I was merely asking the difference, is it illegal to learn on these forums?
    My bad, Too tired to bother reading even if I should have.

    Void's Answer.
    Love You All~

  13. #27
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    it's all good, there have been many leechers lately but that's not the way i roll, lol

  14. #28
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Flame on brothers, and sisters.

  15. #29
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Mel is the goddess of this section, please have respect for her!
    Ah we-a blaze the fyah, make it bun dem!

  16. #30
    Skatebone1's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    safafa
    Posts
    41
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by Hell_Demon View Post
    if(GetAsyncKeyState(VK_NUMPAD8))
    {
    MessageBoxA(NULL, "You Pressed 8", "Succesfull", MB_OK);
    *(unsigned long*)0x01C561D4 += 1000;
    }
    Thanks dude but still its not working :/

    When I press 8 or 2 nothing happens besides the messagebox :S

    My code:
    [html]
    #include <Windows.h>
    #include <Stdio.h>

    void Main_Thread()
    {

    while(1){
    Sleep(100);

    // Add score
    if(GetAsyncKeyState(VK_NUMPAD8))
    {
    MessageBoxA(NULL, "You Pressed 8", "Succesfull", MB_OK);
    *(unsigned long*)0x035661D4 += 1000;
    }
    //Subract score
    if(GetAsyncKeyState(VK_NUMPAD2))
    {

    MessageBoxA(NULL, "You Pressed 2", "Succesfull", MB_OK);
    *(unsigned long*)0x035661D4 -= 1000;
    }

    }
    }



    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    MessageBoxA(NULL, "Injected!", "Succesfull", MB_SETFOREGROUND);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Main_Thread, NULL, NULL, NULL);

    }

    return TRUE;
    }[/html]

    Im using normal MHS which I never used before so im going to try with cheat engine maybe i got the wrong address though it shouldnt be the case.

    You thing there is a problem in my code?

    Ps: Its in C++ and I dont need any injector but tnx alot I made one

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Request]A dll injector?
    By o0OpurezO0o in forum Programming Tutorial Requests
    Replies: 7
    Last Post: 11-08-2010, 04:17 PM
  2. .dll injector
    By EleMentX in forum Gunz General
    Replies: 31
    Last Post: 07-08-2010, 10:44 AM
  3. [Request] Source Code DLL Injector (Text) - VB 2008 Codes
    By deocute in forum Visual Basic Programming
    Replies: 1
    Last Post: 10-21-2009, 12:16 AM
  4. [Request] DLL Injector
    By n3m1s1s in forum Programming Tutorial Requests
    Replies: 3
    Last Post: 09-04-2009, 10:07 AM
  5. [Request] Dll Injector
    By wschiam in forum Blackshot Hacks & Cheats
    Replies: 3
    Last Post: 07-20-2009, 07:04 AM