Results 1 to 15 of 15
  1. #1
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85

    How to use GameStatus Pointer!

    OKAY SO EVERYONE KEEPS ASKING ME HOW TO USE GAMESTATUS POINTER!
    IT'S STARTING TO GET ANNOYED!
    SO HERE'S HOW...

    Method 1:
    [php]if(*(int*)0x3781886C == 1) { // 1 = Ingame
    Memoria((LPVOID)0x374AF296, "\x90\x90\x90", 3); // Super Bullets On
    } else if(*(int*)0x3781886C == 5) { // 5 = Lobby
    Memoria((LPVOID)0x374AF296, "\x0F\x94\xC0", 3); // Super Bullets Off
    } [/php]

    Method 2:
    [php]switch(*(int*)0x3781886C){
    case 1: // 1 = Ingame
    Memoria((LPVOID)0x374AF296, "\x90\x90\x90", 3); // Super Bullets On
    break;
    case 5: // 5 = Lobby
    Memoria((LPVOID)0x374AF296, "\x0F\x94\xC0", 3); // Super Bullets Off
    break;
    } [/php]

    NO QUESTIONS!

    Last edited by seeplusplus; 11-21-2010 at 08:07 AM.
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  2. #2
    Debee's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Posts
    15
    Reputation
    13
    Thanks
    2
    For lobby & loading.

    Code:
    else if(*(int*)0x3781886C != 1)

  3. #3
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    Let them figure it out. Its common sense.
    My Unbelievable-Kill BM:
    seeplusplus - updating address
    [YOUTUBE]nWgztMVIUYY[/YOUTUBE]

  4. #4
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by Debee View Post
    For lobby & loading.

    Code:
    else if(*(int*)0x3781886C != 1)
    Nope...
    3 is loading a match.
    0 is loading game.
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

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

    Reimy (11-21-2010)

  6. #5
    Debee's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Posts
    15
    Reputation
    13
    Thanks
    2
    Quote Originally Posted by seeplusplus View Post
    Nope...
    3 is loading a match.
    0 is loading game.
    that is not loading, huh?

  7. #6
    Reimy's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    178
    Reputation
    28
    Thanks
    704
    My Mood
    Sleepy
    if(*(int*)0x3781886C == 1) { // 1 = Ingame
    Memoria((LPVOID)0x374AF296, "\x90\x90\x90", 3); // Super Bullets On
    } else if(*(int*)0x3781886C == 5) { // 5 = Lobby
    Memoria((LPVOID)0x374AF296, "\x0F\x94\xC0", 3); // Super Bullets Off
    }


    My only Cuestions is: I need to remplace (int*) for the hack int name?

  8. #7
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by Reimy View Post
    if(*(int*)0x3781886C == 1) { // 1 = Ingame
    Memoria((LPVOID)0x374AF296, "\x90\x90\x90", 3); // Super Bullets On
    } else if(*(int*)0x3781886C == 5) { // 5 = Lobby
    Memoria((LPVOID)0x374AF296, "\x0F\x94\xC0", 3); // Super Bullets Off
    }


    My only Cuestions is: I need to remplace (int*) for the hack int name?
    I don't understand what your asking...
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  9. #8
    Debee's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Posts
    15
    Reputation
    13
    Thanks
    2
    Quote Originally Posted by Reimy View Post
    if(*(int*)0x3781886C == 1) { // 1 = Ingame
    Memoria((LPVOID)0x374AF296, "\x90\x90\x90", 3); // Super Bullets On
    } else if(*(int*)0x3781886C == 5) { // 5 = Lobby
    Memoria((LPVOID)0x374AF296, "\x0F\x94\xC0", 3); // Super Bullets Off
    }


    My only Cuestions is: I need to remplace (int*) for the hack int name?
    Code:
    if( Menu.Hack[1].opt > 0 ){
    	if(*(int*)0x3781886C == 1) {
    		memoria((LPVOID)(Superbullet), "\x90\x90\x90", 3);
    	}
    }
    Understand now?

  10. The Following User Says Thank You to Debee For This Useful Post:

    Reimy (11-21-2010)

  11. #9
    Reimy's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    178
    Reputation
    28
    Thanks
    704
    My Mood
    Sleepy
    Quote Originally Posted by Debee View Post
    Code:
    if( Menu.Hack[1].opt > 0 ){
    	if(*(int*)0x3781886C == 1) {
    		memoria((LPVOID)(Superbullet), "\x90\x90\x90", 3);
    	}
    }
    Understand now?
    Yest!!! i was confuse, TY

  12. #10
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Very nice release..
    Last edited by whit; 11-21-2010 at 12:52 PM.

  13. #11
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    THANKS WHIT!
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  14. #12
    RagedYet's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    California
    Posts
    220
    Reputation
    -3
    Thanks
    34
    My Mood
    Devilish
    Quote Originally Posted by ppl2pass View Post
    Let them figure it out. Its common sense.
    haha dont act pro here bro ive answered many of your dumb Questions at UC So if you got feeded let the rest trolls get feeded to.



  15. #13
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by RagedYet View Post


    haha dont act pro here bro ive answered many of your dumb Questions at UC So if you got feeded let the rest trolls get feeded to.
    Dude flame less or go back to UC

  16. #14
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    why are u NOPing superbullets?

  17. #15
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Quote Originally Posted by swatfx View Post
    why are u NOPing superbullets?
    That's an example.

    Replace the superbullets address + bytes with whatever memory hack you want to add.