Thread: Game Status

Page 3 of 3 FirstFirst 123
Results 31 to 36 of 36
  1. #31
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    Quote Originally Posted by CAFlames View Post

    k
    @swatfx
    when u use urs, do you do
    Code:
    if(gamestatus=1){
    ON
    }else{
    OFF}
    
    or
    
    if(gamestatus=1){
    ON
    }else if(gamestatus=5){
    OFF
    }
    which one do u use?
    I just check if Gamestatus = 1
    because 1= ingame
    anything else = not in game

    why make things more complicated when they don't need to be?
    my code:
    Code:
    bool bIngame(bool)
    {
    	if( *(int*) 0x37843B2C == 1)
    		return true;
    	else
    		return false;
    }
    
    if (bIngame(true))
          //do hack
    else
         //don't

  2. #32
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by swatfx View Post
    I just check if Gamestatus = 1
    because 1= ingame
    anything else = not in game

    why make things more complicated when they don't need to be?
    my code:
    Code:
    bool bIngame(bool)
    {
    	if( *(int*) 0x37843B2C == 1)
    		return true;
    	else
    		return false;
    }
    
    if (bIngame(true))
          //do hack
    else
         //don't
    @swatfx

    so i can just do

    if(hack1 && *(int*) 0x37843B2C == 1){
    hack on
    }else{
    hack off
    }

    which is same as urs... just not a function.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  3. #33
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    yes...............................

  4. #34
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by swatfx View Post
    yes...............................
    @swatfx

    I think I officially have no life....



    :::::::::::





    Posts: 1,907
    Thanked 1,013 Times in 237 Posts
    Mentioned: 50 Times in 50 Posts
    Time Online: 2 d 4 h 58 m

    Credits: 21,791, Level: 27

    Activity: 14%

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  5. #35
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by CAFlames View Post


    The ingame function was kotentopf =.=




    @mmbob I completely understand it was your doing. And if Im not mistakin, if you change to x90, will the bullets not go anywhere?
    lol , i tell you Gordon Release this Function and kotentopf use it -.-"

    Look here : https://www.mpgh.net/forum/207-combat...ml#post2670782

    H A X O
    Email : Noobmem@hotmail.com


  6. #36
    PashaAmd's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1,008
    Reputation
    58
    Thanks
    224
    mine work and i use caflame's method
    isingame works fine for me...

Page 3 of 3 FirstFirst 123