Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    HLBOT's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    HCM City
    Posts
    533
    Reputation
    36
    Thanks
    1,356
    My Mood
    Amazed

    CrossFire Simple WallHack Source

    Hello...This is my Source Code for CrossFire WallHack.
    I'm so bored and publicshed. If you want to learn?...take it...
    Now it's Full Code. Wall.CPP and copy all files detours to your project

    Created by SharkVN Group
    Notes: CrossFire WallHack Source - Detected
    Virus Scan by TotalViru's: detours.rar - Clean
    Code:
    #include "stdafx.h"
    #include <Windows.h>
    #include "d3d9.h"
    #include "detours.h"
    #include "stdio.h"
    #pragma comment (lib, "d3d9.lib")
    #pragma comment (lib, "detours.lib") 
    bool hlWall=1;
    bool hlSTART=1;
    
    typedef HRESULT(WINAPI* DrawIndexedPrimitive_)(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE Type, INT BaseVertexIndex, UINT MinIndex, UINT NumVertices, UINT StartIndex, UINT PrimitiveCount);
    DrawIndexedPrimitive_ pDrawIndexedPrimitive;
    
    HRESULT WINAPI nDrawIndexedPrimitive(LPDIRECT3DDEVICE9 pDevice, D3DPRIMITIVETYPE Type, INT BaseVertexIndex, UINT MinIndex,UINT NumVertices, UINT StartIndex, UINT PrimitiveCount)
    {  
    
      IDirect3DVertexBuffer9* pStreamData = NULL; 
      UINT iOffsetInBytes,iStride;  
      pDevice->GetStreamSource(0,&pStreamData,&iOffsetInBytes,&iStride); 
    
      if (  iStride == 40 &&hlSTART==1)
      {
    		pDevice->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE);
    		pDevice->SetRenderState(D3DRS_ZFUNC,D3DCMP_NEVER);
      }
        		
       return pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinIndex, NumVertices, StartIndex, PrimitiveCount);
    }
    
    int hlMAIN ();
    
    BOOL APIENTRY DllMain( HANDLE hModule,DWORD  ul_reason_for_call, LPVOID lpReserved )
    {
        if (hlWall)
    	{
    		hlWall=0;
    		 CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)hlMAIN, NULL, NULL, NULL);                
    	}
    	return TRUE;
    }
    int hlMAIN()
    {
    	char s[1000];
    	DWORD ******OffS=0x4FE571A0;
    	for(;; Sleep(100)) 
            {
                   ******OffS=(DWORD)GetModuleHandle ("d3d9.dll");
    			   if (******OffS)			   
    				   break;			   
            }
    
    	DWORD a[2];
    	a[0]=******OffS+0x88830; // Offset: 88830 for Sp2 if not Sp2 use 88840
    	OutputDebugString (s);
    	pDrawIndexedPrimitive = (DrawIndexedPrimitive_)DetourFunction((PBYTE)a[0],(PBYTE)nDrawIndexedPrimitive);
    
    	for (;;Sleep (500))
    	{
    		if (GetAsyncKeyState (VK_F9)!=0) 
    		{
    			Beep (2000,200);
    			hlSTART=1; // Turn ON
    		}
    		if (GetAsyncKeyState (VK_F10)!=0) 
    		{
    			Beep (3000,200);
    			hlSTART=0; // Turn OFF
    		}
    	}
    	return 1;
    }
    Last edited by HLBOT; 07-22-2011 at 05:10 AM.
    It's finally Over!

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

    3adla (08-18-2011),a749041304 (08-25-2012),akent (07-22-2011),asdbro2 (08-10-2011),asilum (08-08-2011),baraozin (07-25-2011),Caio5000 (08-07-2014),CFhackerfree (07-22-2011),cga123 (08-08-2014),cmc5414 (03-13-2014),derh.acker (08-21-2011),dholpin (08-13-2011),enesozr (08-08-2014),falla147 (08-11-2011),febrys (08-11-2011),First Meng (07-29-2014),flight707 (08-10-2011),Foxelite (12-18-2012),FrenchH4ck3r (07-22-2011),GMSkyMonster (08-08-2014),hanamychy (08-25-2011),hoaicn33 (05-05-2012),joaomestre99 (09-08-2012),LavaRain (07-02-2013),lhvip (02-13-2015),LoL0070 (07-26-2011),MrJupi (09-29-2011),nharoile (05-02-2014),noory (07-26-2011),pickup32 (08-11-2011),Shartob1 (06-19-2012),slawek1771 (07-31-2011),Soul Demon (04-13-2013),thanhhan31 (06-12-2016),TheMarines (08-01-2011),vnc600 (11-17-2015),wewewa33 (05-27-2016),xdnavidadxd2 (03-31-2014),Xenon's (04-12-2013)

  3. #2
    Ore0's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    what address & offset are those?

  4. #3
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Thank You For Sharing.
    Last edited by Ryuesi; 07-22-2011 at 03:40 AM.





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




  5. #4
    Ore0's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    seriously there is nothing new about it except those addy & offset which i dont know what are those for.

  6. #5
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Quote Originally Posted by Ore0 View Post
    seriously there is nothing new about it except those addy & offset which i dont know what are those for.
    That's D3D Dude





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




  7. #6
    Venommmm1's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    If you find me i'll give you a cookie =)
    Posts
    1,373
    Reputation
    4
    Thanks
    301
    My Mood
    Amused
    i want undetected source
    (If I /me helped PRESS THANKS )

  8. #7
    {Banned}**HACKER**'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    843
    Reputation
    8
    Thanks
    719
    My Mood
    Cheerful
    Quote Originally Posted by SKIENT View Post
    i want undetected source
    Well Why Dont You Try And Make It Undetected Then ?

    OT: Very Nice ***** Your Very Generous To This Forum

  9. #8
    CFhackerfree's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Germany
    Posts
    801
    Reputation
    22
    Thanks
    4,432
    My Mood
    Happy
    Nice
    /approve it ^^

    EDIT:
    Pleas make a vid
    Last edited by CFhackerfree; 07-22-2011 at 05:59 AM.

  10. #9
    Venommmm1's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    If you find me i'll give you a cookie =)
    Posts
    1,373
    Reputation
    4
    Thanks
    301
    My Mood
    Amused
    i you tell me how to make it undetected

    ill make it
    (If I /me helped PRESS THANKS )

  11. #10
    Jabuuty671's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    21,229
    Reputation
    1468
    Thanks
    4,098
    Approved .


  12. #11
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Quote Originally Posted by Jabuuty671 View Post
    Approved .
    Thank You Jabuuty.





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




  13. #12
    CheatCreatorzz's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    922
    Reputation
    18
    Thanks
    730
    My Mood
    Amused
    Wow, Thx *****!





    (_¸.•*´'`°¤¸'¸¤°´'`*•.¸_)

    Video Creator
    GFX Creator
    C++ Coder
    D3D Coder

    (¯`*•.¸,¤°´'`°¤,¸.•*´¯)




  14. #13
    khzein's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    i have a problem with ur code
    |
    |
    v
    1>------ Build started: Project: Khaled3, Configuration: Debug Win32 ------
    1>Compiling...
    1>main.cpp
    1>c:\users\khaled\documents\visual studio 2008\projects\khaled3\khaled3\main.cpp(1) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
    1>Build log was saved at "file://c:\Users\Khaled\Documents\Visual Studio 2008\Projects\Khaled3\Khaled3\Debug\BuildLog.htm"
    1>Khaled3 - 1 error(s), 0 warning(s)
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

  15. #14
    JusCaus's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    725
    Reputation
    23
    Thanks
    112
    My Mood
    Aggressive
    Quote Originally Posted by khzein View Post
    i have a problem with ur code
    |
    |
    v
    1>------ Build started: Project: Khaled3, Configuration: Debug Win32 ------
    1>Compiling...
    1>main.cpp
    1>c:\users\khaled\documents\visual studio 2008\projects\khaled3\khaled3\main.cpp(1) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
    1>Build log was saved at "file://c:\Users\Khaled\Documents\Visual Studio 2008\Projects\Khaled3\Khaled3\Debug\BuildLog.htm"
    1>Khaled3 - 1 error(s), 0 warning(s)
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    Did you include your Stdafx.h in your header folder?
    [IMG]https://i1132.photobucke*****m/albums/m571/JusCausGraphix.jpg[/IMG]

  16. #15
    acquybietyeu's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    2
    This source is detected.Use d3d device or mid function hook is undetected.
    I cant find d3d device because i cant set breakpoint in crossfire.Crossfire detected hardware breakpoint.But i can use midfunction hook and it is undetected.

Page 1 of 3 123 LastLast

Similar Threads

  1. crossfire wallhack source for hook
    By GangsterCode in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 10-04-2010, 06:47 AM
  2. Simple Wallhack for Counter Strike 1.6
    By ClapBangKiss in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 4
    Last Post: 03-29-2009, 08:54 AM
  3. CrossFire D3D wallhack is coming...
    By asakasuck in forum General Game Hacking
    Replies: 3
    Last Post: 03-21-2009, 01:31 PM
  4. Replies: 3
    Last Post: 08-11-2008, 02:06 PM
  5. Simple Wallhack
    By hak3r4370 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 3
    Last Post: 02-25-2008, 02:36 AM