Page 4 of 5 FirstFirst ... 2345 LastLast
Results 46 to 60 of 71
  1. #46
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Quote Originally Posted by Elio View Post


    Pretty much, or find a way to unlock the in-game console...
    You'd pretty much have to get a admin to give you the GUID of the server.

  2. #47
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by Fogest View Post



    You'd pretty much have to get a admin to give you the GUID of the server.
    They actually add all their servers to a list and assign them a GUID. Then we bookmark them via the GUID. But the connection to the server is done via the following command:
    Code:
    joinServer [server ip]
    I've also seen by playing around with OllyDBG that the game has an in-game console. So yea...

  3. #48
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Quote Originally Posted by Elio View Post


    They actually add all their servers to a list and assign them a GUID. Then we bookmark them via the GUID. But the connection to the server is done via the following command:
    Code:
    joinServer [server ip]
    I've also seen by playing around with OllyDBG that the game has an in-game console. So yea...
    Yeah the game does have a in game console and it is possible to bring that console up with some hacks. Also there is a command (forget what it is) that you type in chat to take a screenshot with punkbuster for example to test a hacks screenshot blocker. SO Im' assuming there are other commands for the chatbox as well?

  4. #49
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by Fogest View Post



    Yeah the game does have a in game console and it is possible to bring that console up with some hacks. Also there is a command (forget what it is) that you type in chat to take a screenshot with punkbuster for example to test a hacks screenshot blocker. SO Im' assuming there are other commands for the chatbox as well?
    I'm kinda sick right now so I cannot code very well if you know what I mean..
    But here's what I've done in 5 minutes..
    Code:
    #include <Windows.h>
    
    
    void CUnlockConsole( );
    void CLockConsole( );
    
    void CDrawConsole( bool bDraw );
    
    
    void CUnlockConsole()
    {
    	/*DWORD getAddr = 0x009A6276;
    	DWORD param = NULL;
    	__asm call getAddr
    	__asm mov param, eax*/
    	//DWORD unlockNum = 0x1D;
    	__asm mov dword ptr ss:[ebp-4], 0x1D 
    }
    
    void CLockConsole()
    {
    	//DWORD lockNum = 0x1C;
    	__asm mov dword ptr ss:[ebp-4], 0x1C 
    }
    
    typedef void c_GIToggleConsole_t(DWORD, DWORD);
    c_GIToggleConsole_t *GIToggleConsole = (c_GIToggleConsole_t*)0x9A508D;
    
    void CDrawConsole(bool bDraw)
    {
    	if(bDraw)
    	{
    		DWORD getAddr = 0x009A6276;
    		DWORD unknownParam = NULL;
    		__asm{
    			call getAddr
    			mov unknownParam, eax
    		};
    		CUnlockConsole();
    		GIToggleConsole(1, unknownParam);
    		__asm{
    			pop ecx
    			pop ecx
    			lea ecx, dword ptr ss:[ebp+54]
    			mov dword ptr ss:[ebp-4], esi
    		};
    	} else {
    		CLockConsole();
    	}
    }

  5. The Following User Says Thank You to ♪~ ᕕ(ᐛ)ᕗ For This Useful Post:

    Fogest (09-03-2011)

  6. #50
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Nice. You should make a hack for this game

    We could use some activity in this section.

  7. #51
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by Fogest View Post
    Nice. You should make a hack for this game

    We could use some activity in this section.
    I'm lazy to code a whole hack lol. No srsly at the first try if the game crashes I just drop the project. That's why I don't finish any of my hacks.

  8. #52
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Quote Originally Posted by Elio View Post


    I'm lazy to code a whole hack lol. No srsly at the first try if the game crashes I just drop the project. That's why I don't finish any of my hacks.
    https://www.mpgh.net/forum/360-battle...ll-source.html

    There you go. All you have to do is make it undetected and maybe update offsets idk?

  9. #53
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by Fogest View Post



    https://www.mpgh.net/forum/360-battle...ll-source.html

    There you go. All you have to do is make it undetected and maybe update offsets idk?
    I'll give it a shoot when I'll be better. But now I'm principally focused on the in game console...

  10. #54
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Quote Originally Posted by Elio View Post


    I'll give it a shoot when I'll be better. But now I'm principally focused on the in game console...
    Okay no rush Good luck though.

  11. The Following User Says Thank You to Fogest For This Useful Post:

    ♪~ ᕕ(ᐛ)ᕗ (09-04-2011)

  12. #55
    Assem's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    i do every thing and i have the console?
    but how can i connect to a server?
    is there any way to connect to server?

  13. #56
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    Quote Originally Posted by Assem View Post
    i do every thing and i have the console?
    but how can i connect to a server?
    is there any way to connect to server?
    We are still working to find that way.

  14. #57
    Assem's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    thanks bro>
    another question can i start my own new srver with this console?

  15. #58
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Quote Originally Posted by Assem View Post
    thanks bro>
    another question can i start my own new srver with this console?
    You have to buy a server you can't make a server from the console lol.

  16. #59
    Assem's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    My Mood
    Cool
    so what the benefit from hacking those sever files?
    but really appreciate the work done here

  17. #60
    Fogest's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Canada, Ontario
    Posts
    3,096
    Reputation
    164
    Thanks
    10,455
    My Mood
    Amazed
    Quote Originally Posted by Assem View Post
    so what the benefit from hacking those sever files?
    but really appreciate the work done here
    for hacking purposes I believe.

Page 4 of 5 FirstFirst ... 2345 LastLast