Results 1 to 3 of 3
  1. #1
    IHAZHACKEDYOU's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0

    scope hack help plz

    hi the scope hack i have it works but when i click the right key it stays like that

    here it is


    void Scope ()
    {
    if(GetAsyncKeyState(VK_RBUTTON))
    {
    *(int*)(ADR_SCOPE) = (int)1;
    }
    else
    {
    *(int*)(ADR_SCOPE) = (int)7;
    }
    }

  2. #2
    SeptFicelle's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Location
    In your backyard.
    Posts
    75
    Reputation
    10
    Thanks
    16
    My Mood
    Amused
    I had that same problem, but I never figured it out. You could try a combo like:

    Code:
    void Scope ()
    {
    if ( GetAsyncKeyState ( VK_RBUTTON ) )
    {
    *(int*)(ADR_SCOPE) = (int)1;
    }
    else if ( GetAsyncKeyState ( VK_F9 ) )
    {
    *(int*)(ADR_SCOPE) = (int)7;
    }
    }
    That should make it activate with Right Click, and deactivate with F9. That's the only way I can think of at the moment. Sorry if it doesn't work. I don't know too much about the function it self. When I was trying this hack out it decided to automatically turn on and then not turn off.

    On another note, I've never seen an integer preformed in this manner.

    Code:
    *(int*)(ADR_SCOPE) = (int)7;
    I've always seen it done like this:

    Code:
     *(int*) (ADR_SCOPE) = 7;
    But hey, what ever gets the job done right?
    Last edited by SeptFicelle; 11-02-2010 at 03:10 PM.
    You see, maddness, as we know, is like gravity, all it takes is a little push.



    -------------------------------------
    Current Focus: C#
    Languages Known: C++, C#, F#, .NET
    Specialty: Inspection Of Algorithms
    Schooling Focus: Astrobiology
    -------------------------------------

    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/overallsig.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/userbar97571.gif[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/skypeuser5gu.png[/IMG]
    [IMG]https://i276.photobucke*****m/albums/kk13/Teddynezz/3dsmax9userot0.gif[/IMG]

  3. The Following User Says Thank You to SeptFicelle For This Useful Post:

    IHAZHACKEDYOU (11-02-2010)

  4. #3
    MezzoX's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    My Mood
    Psychedelic
    Code:
    void Scope ()
    {
    if ( GetAsyncKeyState ( VK_RBUTTON ) )
    {
    *(int*)(ADR_SCOPE) = (int)1;
    }
    else if ( GetAsyncKeyState ( VK_F9 ) )
    {
    *(int*)(ADR_SCOPE) = (int)5;
    }
    }

Similar Threads

  1. [Help] First hack help plz :/
    By Dread929 in forum CrossFire Help
    Replies: 5
    Last Post: 07-29-2010, 08:49 AM
  2. hack help plz
    By rayihim in forum Alliance of Valiant Arms (AVA) Help
    Replies: 1
    Last Post: 07-29-2010, 04:31 AM
  3. 70 hack HELP PLZ
    By karnige in forum Call of Duty Modern Warfare 2 Help
    Replies: 0
    Last Post: 12-21-2009, 05:11 PM
  4. How 2 download combat arms hacks help plz ?
    By crazyvictor in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 07-29-2009, 09:04 AM
  5. v1.07 C/A Hack Help! plz help
    By Jho518 in forum Hardware & Software Support
    Replies: 5
    Last Post: 12-28-2008, 02:03 PM