Thread: Source codes

Results 1 to 10 of 10
  1. #1
    mrjk9416's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Source codes

    Does anyone have updated source codes?
    and what is the "ltclient" and where do they go in the process

  2. #2
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    For New Updated Addresses look here:

    CAflames addresses + Dump CShell
    NOOB's Updated Addresses [4/21]

    - You can find the updated LTC in one of these threads.^^

    Credits for there hard work:
    - CAFlames
    - Noob

    You can go HERE for an Updated Base. You need to use the updated Addresses from the threads above to get them to work and some other things.


    This took me 5 seconds to find, please before you post do your research. You betta thank me kid!

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

    mrjk9416 (04-22-2011)

  4. #3
    mrjk9416's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Zane Slayman View Post
    For New Updated Addresses look here:

    CAflames addresses + Dump CShell
    NOOB's Updated Addresses [4/21]

    - You can find the updated LTC in one of these threads.^^

    Credits for there hard work:
    - CAFlames
    - Noob

    You can go HERE for an Updated Base. You need to use the updated Addresses from the threads above to get them to work and some other things.


    This took me 5 seconds to find, please before you post do your research. You betta thank me kid!

    well where do they go lol i'm so lost xD

  5. #4
    NOOBJr's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in NOOB
    Posts
    1,423
    Reputation
    112
    Thanks
    693
    Quote Originally Posted by mrjk9416 View Post
    well where do they go lol i'm so lost xD
    Have you ever made a hack before. If you cant do this simple thing. Learn C++ before making a hack!

  6. #5
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Quote Originally Posted by Zane Slayman View Post


    Have you ever made a hack before. If you cant do this simple thing. Learn C++ before making a hack!
    No, he didnt.
    He dont even got C++.

    Just create a Textfile, add the code and add .dll to the textfile name

    Thanks Cosmos


  7. The Following User Says Thank You to Sydney For This Useful Post:

    flameswor10 (04-22-2011)

  8. #6
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by Zane Slayman View Post
    For New Updated Addresses look here:

    CAflames addresses + Dump CShell
    NOOB's Updated Addresses [4/21]

    - You can find the updated LTC in one of these threads.^^

    Credits for there hard work:
    - CAFlames
    - Noob

    You can go HERE for an Updated Base. You need to use the updated Addresses from the threads above to get them to work and some other things.

    This took me 5 seconds to find, please before you post do your research. You betta thank me kid!
    I update the LTC (PTC right?) and it still dc's with v3...
    (I put PTC as this - 0x37765B50 - Still DC's)

  9. #7
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Search for flameswor10 hotkey base and understand what's going on and where things go.

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

    Cryptonic (04-22-2011)

  11. #8
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    Search for flameswor10 hotkey base and understand what's going on and where things go.
    Wait, flams tut?

    Code:
    //includes all nessecary files to this source
    #include <windows.h>
    //End of includes
    //This is what you call globals.
    int HackOn = 0;
    //Define HackOn as a number, and that numebr is zero.
    int HackMax = 10;
    //Define HackMax as a number, and that number is ten.
    bool test = false;
    //Define test as a true/false. "Boolean"
    #define ADDR_SBULLLETS			0x374BBF16 
    //The definition of ADDR_SBULLETS
    //End of Globals
    void Main (void)
    {
    	while(1)
    		//Makes an infinite loop. One that doesn't end.
    	{
    		if(GetAsyncKeyState(VK_NUMPAD1)&1)
    			//When Numpad1 Gets Pressed
    		{
    			test = (!test);
    			//if test = false, turn to true and vice versa
    		}
    		if(GetAsyncKeyState(VK_NUMPAD2)&1)
    			//When Numpad2 Gets Pressed.
    		{
    			HackOn ++;
    			//Adds +1 to the variable, "HackOn"
    			if(HackOn == HackMax) HackOn = 0;
    			//When Hackon Reaches the number HackMax, it resets HackOn to 0
    		}
    		if(test)
    			//if test is true
    		{
    			memcpy( (PBYTE)ADDR_SBULLLETS, (PBYTE)"\x33\xC0\x90", 3 );
    			//look in globals for the definition of ADDR_SBULLETS
    			//Basically, it edits the bytes of the memory to "\x33\xC0\x90".
    			//The number at the end, tells you how many bytes you are editing.
    			//The first part, ADDR_SBULLETS Shows the code which part of the memory we are editing.
    		}else{
    			//if test is not true
    			memcpy(  (PBYTE)ADDR_SBULLLETS, (PBYTE)"\x0F\x94\xC0", 3 );
    			//look in globals for the definition of ADDR_SBULLETS
    			//Basically, it edits the bytes of the memory to "\x0F\x94\xC0".
    			//The number at the end, tells you how many bytes you are editing.
    			//The first part, ADDR_SBULLETS Shows the code which part of the memory we are editing.
    		}
    	}
    }
    DWORD WINAPI Lesson (LPVOID)
    // This is just a dummy function that will be the code activate the main thread
    {	
    	Main();
    	//Call the thread called Main
    	return 1;
    	//Finish of the thread.
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    // DllMain is an optional function for you to declare.
    // It serves as the entry point for any DLL
    {
    	DisableThreadLibraryCalls(hDll);
    	// Make a call to DisableThreadLibraryCalls with the hModule variable
    	// as its argument; Doing this is an optimization trick to prevent
    	// needless thread attach/detach messages from triggering further calls
    	// to our DllMain function.
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		//When this dll is injected into the process. this is what the dll is supposed to do.
    		// Null, in C Plus Plus, nothing. It is defined as 0
    		CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
    		//It creates the thread called "Lesson" which is defined a few lines up. DWORD WINAPI Lesson (LPVOID)
    	}
    return TRUE;
    // Although the return value doesn't actually matter. You return the value TRUE or FALSE indicatinng success or failure.
    
    }
    Or, this?

    https://www.mpgh.net/forum/207-combat...source-v1.html

    Though, thats menu and hotkey

    Searching exactly as you type doesn't really come up with anything...
    Last edited by Cryptonic; 04-22-2011 at 04:23 PM.

  12. #9
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616

  13. The Following User Says Thank You to NOOB For This Useful Post:

    Cryptonic (04-22-2011)

  14. #10
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Hmm... Yes... Trying to learn off of a noob proof base.

    ...and i'm a noob

    (Some are easy to spot out, others arn't)