+ Reply to Thread
Results 1 to 8 of 8

Thread: [C++ Development Tool] Type III "Bot Loader"

  1. #1
    c:\tmp\~8b045cf75687.tmp Golden Dragon temp2's Avatar
    Join Date
    10th Jul 2004
    Posts
    1,067

    Exclamation [C++ Development Tool] Type III "Bot Loader"

    My personal type III "Bot Loader" Version 1.0 © Temp2 Fecit Anno 2005.

    I regard DrUnKeN ChEeTaH's original as a type IV Bot Loader. This one will show you diagnostics concerning the injection process. I developed it to get over a problem I had in another game.
    Attached Images
    Attached Files

  2. #2
    $åñ†åñ4 ƒụ¢қҳŻǾº®Ż Assassin snadder's Avatar
    Join Date
    10th Oct 2004
    Location
    The Netherlands
    Posts
    178
    Nice temp2!
    I might need it when i'm gonna learn C++ and/or Uscript

  3. #3
    Moderator Apprentice God HyPeR-X's Avatar
    Join Date
    10th Apr 2004
    Location
    The Dutchland
    Posts
    2,345
    lol, thx temp nice stuff, it just terminated some processes wich my windblows couldnt terminate

    Grtz HyPeR-X
    Legal CDKeys: GameKeyShop

  4. #4
    Devil of Hell S@t@nic@'s Avatar
    Join Date
    11th Mar 2004
    Location
    in your ass
    Posts
    325
    Quote Originally Posted by HyPeR-X
    lol, thx temp nice stuff, it just terminated some processes wich my windblows couldnt terminate

    Grtz HyPeR-X
    debug privileges are set before to kill process...
    you can use something like that:

    Code:
    BOOL SetDebugPrivileges() 
    {
    	BOOL bRetour=TRUE;
        DWORD dwPID;
        HANDLE hProcess;
        HANDLE hToken;
        LUID Luid;
        TOKEN_PRIVILEGES tpDebug;
        dwPID = GetCurrentProcessId();
        if ((hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwPID)) == NULL)
    		bRetour=FALSE;
        if (OpenProcessToken(hProcess, TOKEN_ALL_ACCESS, &hToken) == 0)
    		bRetour=FALSE;
        if ((LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &Luid)) == 0)
    		bRetour=FALSE;
        tpDebug.PrivilegeCount = 1;
        tpDebug.Privileges[0].Luid = Luid;
        tpDebug.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
        if ((AdjustTokenPrivileges(hToken, FALSE, &tpDebug, sizeof(tpDebug), NULL, NULL)) == 0)
    		bRetour=FALSE;
        if (GetLastError() != ERROR_SUCCESS)
    		bRetour=FALSE;
        CloseHandle(hToken);
        CloseHandle(hProcess);
        return bRetour;
    }
    
    //to kill process by pid
    BOOL KillPid(int Pid)
    {
    
        HANDLE hProcess;
        if ((hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, Pid)) != NULL)
    	{
            if (TerminateProcess(hProcess, 0) == 0) 
    			MessageBox("****in process");
            CloseHandle(hProcess);
    		return TRUE;
        }
    	MessageBox("process sucks");
    	return FALSE;
    }

    Any plan to make your injector open source temp?

  5. #5
    Moderator Apprentice God HyPeR-X's Avatar
    Join Date
    10th Apr 2004
    Location
    The Dutchland
    Posts
    2,345
    thx for the code S@t@nic@ might prove use full later on

    Grtz HyPeR-X
    Legal CDKeys: GameKeyShop

  6. #6
    Devil of Hell S@t@nic@'s Avatar
    Join Date
    11th Mar 2004
    Location
    in your ass
    Posts
    325
    when i'm injecting my dll in AA, all running fine but:
    The Thread is nonsignaled after 3000ms.
    what would you mean by that Temp ?

    edited:

    ok... that was just my computer... not enought free resource when i had inject the dll, so that had take more than 3s... eheheh
    Last edited by S@t@nic@; 12th May 2005 at 17:04.

  7. #7
    » Ex Super ********* « Evil One noob-cheater's Avatar
    Join Date
    29th Jun 2004
    Location
    cheatville
    Posts
    4,788
    file also availble on mpcdownloads now!

    http://www.mpcdownloads.com/_mpc_d0w.../botloader.rar

    Thx Temp2, keep it up
    Former MPC Super Moderater

  8. #8
    noob .. dude you avatar is so ****ing tight nice work

+ Reply to Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts