Thread: Few Sig Scans

Results 1 to 5 of 5
  1. #1
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused

    Few Sig Scans

    Hey guys, thought I should release some sigs since this section is about to die.

    Code:
    - PlayerByIndex -
    
    dwPlayerByIndex = Tools->FindPattern(dwCShellEntryPoint, dwCShellCodeSize, (BYTE*)"\x8b\x41\x04\x85\xc0\x74\x00\x8b\x54\x24\x04\xeb\x00\x8d\x49\x00", "xxxxxx?xxxxx?xxx");
    Code:
    - Local Player -
    
    dwLocalPlayer = Tools->FindPattern(dwCShellEntryPoint, dwCShellCodeSize, (BYTE*)"\x8B\x41\x08\x6A\x00\x50\xE8\x00\x00\x00\x00", "xxxxxxx????");
    Code:
    - LTClient -
    
    dwLTClientDLL = Tools->FindPattern(dwCShellEntryPoint, dwCShellCodeSize, (BYTE*)"\x8B\x0D\x00\x00\x00\x00\xD9\x54\x24\x00\x53\xD9\x54\x24\x00\x8D\x5C\x24\x00\xD9\x5C\x24\x00\x53\xD9\xE8\x50","xx????xxx?xxxx?xxx?xxx?xxx");
    dwLTClientDLL = (DWORD)*(DWORD*)(dwLTClientDLL + 0x2 );
    Code:
    - Weapon Mgr -
    
    dwWeaponMgr = Tools->FindPattern( dwCShellEntryPoint, dwCShellCodeSize, (BYTE*)"\xA1\x00\x00\x00\x00\xD9\x80\x00\x00\x00\x00\x51\x8B\x0D\x00\x00\x00\x00\xD9\x1C\x24\x6A\x00", "x????xx????xxx????xxxx");
    dwWeaponMgr = (DWORD)*(DWORD*)(dwWeaponMgr + 0x1);
    Code:
    - Draw Prim -
    
    dwDrawPrim = Tools->FindPattern(dwEngineEntryPoint, dwEngineCodeSize, (BYTE*)"\x8B\x50\x00\x8B\x12\x56\x8B\x70\x00\x89\xC\x96\x8B\x48\x00\xFF\x1\x5E\x8B\x40\x00\xFF\x0\xC3\x8B\xC1\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00", "xx?xxxxx?xxxxx?xxxxx?xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx????xxxxxxxxxxxx????xxxxxxxxxxxx????xxxxxxxxxxxx????xxxxxxxxxxxx????xxxxxxxxxxxx????xxxxxxxxxxxx");
    dwDrawPrim = (DWORD)*(DWORD*)(dwDrawPrim + 0x99);
    I'll try to add more when I have time, if you need one in particular just pm me.
    Have Fun!

    Credits: USSR(me)
    Gellin
    Last edited by arun823; 09-09-2012 at 12:05 AM.

  2. The Following 2 Users Say Thank You to arun823 For This Useful Post:

    demtrios (09-09-2012),RedAppleCoder (09-09-2012)

  3. #2
    demtrios's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    MPGH.Net
    Posts
    870
    Reputation
    10
    Thanks
    1,056
    My Mood
    Amused
    Wow Nice


    Cock CS since 26•03•2013

  4. #3
    RedAppleCoder's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Hamm
    Posts
    36
    Reputation
    10
    Thanks
    54
    My Mood
    Fine
    Thanks for this
    Haters Gon' Hate

  5. #4
    Avery17's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    28
    Reputation
    21
    Thanks
    10
    At what point in the game should I run the scans, they don't seem to log correctly for me.

  6. #5
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by Avery17 View Post
    At what point in the game should I run the scans, they don't seem to log correctly for me.
    Add an IsGameReady check so it will log them as soon as the "game is ready" aka after these modules are loaded.

    Code:
    bool cTools::IsGameReady()
    {
    	if(GetModuleHandleW( L"ClientFX.fxd" ) != NULL
    		&& GetModuleHandleW( L"CShell.dll"   ) != NULL
    		&& GetModuleHandleW( L"d3d9.dll"     ) != NULL )
    		return true;
    	return false;
    }
    Last edited by arun823; 09-11-2012 at 06:56 PM.

Similar Threads

  1. Few sigs please rate.
    By wandererimmortal in forum Showroom
    Replies: 9
    Last Post: 11-08-2008, 06:13 PM
  2. My first few sigs
    By Ryguy in forum Showroom
    Replies: 9
    Last Post: 10-27-2008, 12:58 PM
  3. A few sigs i made since no one looks at the testing page.
    By wandererimmortal in forum Art & Graphic Design
    Replies: 6
    Last Post: 10-18-2008, 01:03 PM
  4. A few sigs i made please comment
    By wandererimmortal in forum Showroom
    Replies: 2
    Last Post: 10-18-2008, 11:42 AM
  5. Testing a few sigs today
    By Merforga in forum Art & Graphic Design
    Replies: 2
    Last Post: 02-07-2006, 07:12 PM