Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely

    [Help] Asus Wallhack + d3d CHams

    Code:
    unsigned int uiStride;
    bool bTex = false, bCham = false;
    
    LPDIRECT3DTEXTURE9 pTexture[2];
    
    const BYTE bRed[60] = { 0x42, 0x4D, 0x3C, 0x00,
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 
    0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 
    0x01,0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0B, 
    0x00, 0x00, 0x12, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 
    0x00, 0x01 };
    
    const BYTE bYellow[60] = { 0x42, 0x4D, 0x3C, 0x00, 
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 
    0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 
    0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x0B, 
    0x00, 0x00, 0x12, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 
    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 
    0x00, 0x01 };
    
    
    HRESULT APIENTRY pIDirect3DDevice9::BeginScene() 
    {
    
      if(bTex == false)
      {
    
        D3DXCreateTextureFromFileInMemory(pDevice, (LPCVOID)&bRed, sizeof(bRed), 
        &pTexture[0]);
        D3DXCreateTextureFromFileInMemory(pDevice, (LPCVOID)&bYellow, sizeof(bYellow), 
        &pTexture[1]);
    
        bTex = true;
    
      }
    
      return pDevice->BeginScene();
    
    }
    
    
    HRESULT APIENTRY pIDirect3DDevice9::DrawIndexedPrimitive(D3DPRIMITIVETYPE PrimitiveType,
    INT BaseVertexIndex, UINT MinVertexIndex, UINT NumVertices, UINT startIndex, 
    UINT primCount)
    {
    
      if(GetAsyncKeyState(VK_F1)&1)
      bCham = !bCham;
    
      if(bCham == true && uiStride == 52)
      {
    
            pDevice->SetRenderState(D3DRS_ZENABLE, false);      
        
        pDevice->SetTexture(0, pTexture[0]);
    
        pDevice->DrawIndexedPrimitive(PrimitiveType, BaseVertexIndex,
            MinVertexIndex, NumVertices, startIndex, primCount); 
    
        pDevice->SetRenderState(D3DRS_ZENABLE, true);
    
            pDevice->SetTexture(0, pTexture[1]);
    
            return pDevice->DrawIndexedPrimitive(PrimitiveType, BaseVertexIndex,
            MinVertexIndex, NumVertices, startIndex, primCount);
    
      }
    
      return pDevice->DrawIndexedPrimitive(PrimitiveType, BaseVertexIndex,
      MinVertexIndex, NumVertices, startIndex, primCount);
    
    }
    
    
    HRESULT APIENTRY pIDirect3DDevice9::SetStreamSource(UINT StreamNumber,
    IDirect3DVertexBuffer9* pStreamData, UINT OffsetInBytes, UINT Stride) 
    {
    
      if(StreamNumber == 0)
      uiStride = Stride;
        
      return pDevice->SetStreamSource(StreamNumber, pStreamData, OffsetInBytes, 
      Stride);
    
    }
    what am i doing wrong in this?

  2. #2
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    This is a stride logger to make chams. (I think)
    To make chams you need:

    Code:
    if (m_Stride == 44 || m_Stride == 36 || m_Stride == 32)
    {
        device->SetRenderState(D3DRS_ZENABLE,false);
        device->SetTexture(&Red); //forgot the parameters
                        
        CallRealDIP(Params);
                        
        device->SetRenderState(D3DRS_ZENABLE,true);
        device->SetTexture(&Blue);
    
    }

    I have made a C&Per breeding ground.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  3. #3
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely
    Quote Originally Posted by whatup777 View Post
    I have made a C&Per breeding ground.
    lol ummm YES...

  4. #4
    bostonboy7's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Lurking
    where do you enter these codes? im new here

  5. #5
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    No thanks ^...,^ ?


    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  6. #6
    ^...,^'s Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    New Zealand,Auckland
    Posts
    698
    Reputation
    4
    Thanks
    90
    My Mood
    Lonely
    Quote Originally Posted by ^...,^ View Post
    lol ummm YES...
    Quote Originally Posted by bostonboy7 View Post
    where do you enter these codes? im new here
    told you!!!!! whatsup777

    Quote Originally Posted by whatup777 View Post
    No thanks ^...,^ ?


    lol proof above

  7. #7
    mmbob's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ja
    Posts
    653
    Reputation
    70
    Thanks
    1,157
    My Mood
    Bitchy
    Maybe you should actually learn how to make chams instead of having others fix the problems in your C+Ped and leeched code.

  8. The Following 4 Users Say Thank You to mmbob For This Useful Post:

    ac1d_buRn (07-09-2010),BooMRawR™ (09-10-2010),Crash (07-10-2010),rocker340 (07-09-2010)

  9. #8
    Pr0tegee's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Yea, I know im a noob at hacking.. I get all the download parts, but idk how to code...quick tutorial? plz? ty

  10. #9
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by Pr0tegee View Post
    Yea, I know im a noob at hacking.. I get all the download parts, but idk how to code...quick tutorial? plz? ty
    There is no "quick tutorial" go learn C++ and then come back.
    Last edited by Crash; 07-09-2010 at 12:24 PM.

  11. #10
    Pr0tegee's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Sealionone View Post
    There is no "quick tutorial" go learn C++ and then come back.
    K, bout u calm down and be nice for once

  12. #11
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    you need addies for asus wallhack
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  13. #12
    Yepikiyay's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    320
    Reputation
    10
    Thanks
    37
    My Mood
    Drunk
    Quote Originally Posted by whatup777 View Post
    This is a stride logger to make chams. (I think)
    To make chams you need:

    Code:
    if (m_Stride == 44 || m_Stride == 36 || m_Stride == 32)
    {
        device->SetRenderState(D3DRS_ZENABLE,false);
        device->SetTexture(&Red); //forgot the parameters
     
        CallRealDIP(Params);
     
        device->SetRenderState(D3DRS_ZENABLE,true);
        device->SetTexture(&Blue);
     
    }

    I have made a C&Per breeding ground.
    way to go,
    btw the chams code is a total leech, just sayin

    EDIT:
    Quote Originally Posted by zmansquared View Post
    you need addies for asus wallhack

    not nessasarly, when i used to code in CF i never had to get addys for asus wall hack
    Last edited by Yepikiyay; 07-10-2010 at 01:14 AM.

    I Hate You
    Current Status: Online Playing MineCraft

  14. #13
    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
    well u do here :P One of my friends gave me the addies ( credits in my hack )

    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.

  15. #14
    Yepikiyay's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    320
    Reputation
    10
    Thanks
    37
    My Mood
    Drunk
    Quote Originally Posted by msflames3 View Post
    well u do here :P One of my friends gave me the addies ( credits in my hack )
    mmmk i stand corrected

    I Hate You
    Current Status: Online Playing MineCraft

  16. #15
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    ye a friend gave me the addies also. it works great.
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

Page 1 of 3 123 LastLast

Similar Threads

  1. [Detected] JA v1.2 - D3D Chams | Rapid Fire | Wallhack
    By Crash in forum Combat Arms Hacks & Cheats
    Replies: 78
    Last Post: 05-13-2011, 02:05 PM
  2. D3D Chams Help
    By ®Jack in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 4
    Last Post: 09-02-2010, 03:59 AM
  3. Help with the new chams hack.
    By -ZaZzY- in forum Combat Arms Europe Hacks
    Replies: 7
    Last Post: 02-18-2009, 07:14 AM
  4. HELP WITH WALLHACK!!!!!!!
    By UBKSpence in forum Combat Arms Hacks & Cheats
    Replies: 9
    Last Post: 08-12-2008, 06:21 PM