Make Hacks Undetected

09/22/2010 14:42 Ovenran#1
Read this whole post
because some members always ask a noob question but their question is here already.. so be careful of your questions
Hello :)

this is Icht Shot! or Ovenran ;)

im gonna teach you how to make your own hack (undetected)

First we need:
SDK summer 2004
C++ 2008 Express edition or Visual Studio 2008
upx305w
Source Codes

Steps:
Download then Extract to C:\ the upx305
Open C++ or Visual Studio
create project > name your hack then click ok
app settings > dll > finish
Go to dllmain.cpp
erase all things there
then paste your source or my source
Code:
#include "stdafx.h"
#include <d3d8.h>
#include <windows.h>
#pragma comment(lib, "d3d8.lib")
bool pDevice_PWires = true;
int nNumVertices; // to define wireframe or the player
int nPrimitiveCount; // to define also wireframe or the player

//=================Define mulan====================//
#define Mulan (nNumVertices == 118 && nPrimitiveCount == 126|| nNumVertices == 121 && nPrimitiveCount == 180|| nNumVertices == 124 && nPrimitiveCount == 126|| nNumVertices == 295 && nPrimitiveCount == 482|| nNumVertices == 299 && nPrimitiveCount == 452|| nNumVertices == 474 && nPrimitiveCount == 728)

//==========================Mulan Frame by [uS]Ovenran :D or [ePvP]Ovenran :D======================================================================================
typedef HRESULT ( WINAPI* oDrawIndexedPrimitive ) ( LPDIRECT3DDEVICE8 pDevice, D3DPRIMITIVETYPE pType, UINT nMinIndex, UINT nNumVertices, UINT nStartIndex, UINT nPrimitiveCount );
oDrawIndexedPrimitive pDrawIndexedPrimitive, OriginalDrawIndexedPrimitive;
HRESULT WINAPI myDrawIndexedPrimitive(LPDIRECT3DDEVICE8 pDevice, D3DPRIMITIVETYPE pType, UINT nMinIndex, UINT nNumVertices, UINT nStartIndex, UINT nPrimitiveCount)
{
 if(pDevice_PWires) // if wireframe on
 {
  
  if (Mulan) // worldwireframe
  {  
pDevice->SetRenderState(D3DRS_FILLMODE, D3DFILL_WIREFRAME);
  }else{         
pDevice->SetRenderState( D3DRS_FILLMODE, D3DFILL_SOLID );
}
}
}
(Still need return device? i think :D)
i'll still try this source tomorrow because im busy i always work everday :D
even im a kid :P

(video Part)
then change "Debug" to "release" then click Green arrow
then go to My documents > Visual studio 2008 > projects > you hack> youhack.dll
place your dll to C:\
then start cmd
type this:
Code:
C:\upx305w\upx C:\(name of your hack).dll
rename (name of your hack).dll to the name of you hack
then click enter
Note : don't put a space in the name of your hack Just put "_" instead , remove quotes

Then find your hack.dll
then use your dll now happy hackking :)

Source working only for mulan so we need defines of All players
if world just put
Code:
//=======================World Frame by [uS]Ovenran or [ePvP]Ovenran ;)======================================================================================
typedef HRESULT ( WINAPI* oDrawIndexedPrimitive ) ( LPDIRECT3DDEVICE8 pDevice, D3DPRIMITIVETYPE pType, UINT nMinIndex, UINT nNumVertices, UINT nStartIndex, UINT nPrimitiveCount );
oDrawIndexedPrimitive pDrawIndexedPrimitive, OriginalDrawIndexedPrimitive;
HRESULT WINAPI myDrawIndexedPrimitive(LPDIRECT3DDEVICE8 pDevice, D3DPRIMITIVETYPE pType, UINT nMinIndex, UINT nNumVertices, UINT nStartIndex, UINT nPrimitiveCount)
{
 if(pDevice_PWires) // if wireframe on
 {
  
  if (m_Stride == 40) // worldwireframe
  {  
pDevice->SetRenderState(D3DRS_FILLMODE, D3DFILL_WIREFRAME);
  }else{         
pDevice->SetRenderState( D3DRS_FILLMODE, D3DFILL_SOLID );
}
}
}
Video:

if still detected, download all this and include it on your dll project
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
09/22/2010 14:56 dezpair#2
is this really making detected DLLs undetected~?

im noob on codings

hehe

btw.. i'll try it later~
09/22/2010 15:42 Match*Star.#3
`Nice post.
`I hope this will work fine in me.
09/22/2010 15:53 Zhina_Shines#4
i have try this with my another it doesn't detect

because the codes was encrypted with upx305w ;)
09/23/2010 05:30 dezpair#5
Quote:
Originally Posted by Match*Star. View Post
`Nice post.
`I hope this will work fine in me.
can you post a undetected smartzwhz.lite.v3 ?

heheh
09/23/2010 08:32 justing007#6
panu ba i unpack ung code sa ginawang dll?
09/23/2010 09:05 frozeneye#7
@ Overan
@Match*Star.
You Guys Are The Best Coders..
Can U Tell Me How To Compile A Hack In SF?
09/23/2010 09:25 noein8413#8
love to try it but too bad... im a c++ noob... ive only mastered c# and gc
09/23/2010 09:51 frozeneye#9
Quote:
Originally Posted by noein8413 View Post
love to try it but too bad... im a c++ noob... ive only mastered c# and gc
I Know You
You The One Who Compile Hacks In Grand Chase Section :D
09/23/2010 10:26 beam120#10
nosebleed AAHH

i hope when you managed too make a hack undetected you'll post it here :D
09/23/2010 12:16 Ovenran#11
can't be a epvp coder ;)

not too much how to make one d3dmenu like in unrealskill :D
09/23/2010 12:45 noein8413#12
ahehehe....maybe next sem i can make my own dll files... since i can now advance in programming... hope it will not be that hard
09/23/2010 12:49 frozeneye#13
Quote:
Originally Posted by Ovenran View Post
can't be a epvp coder ;)

not too much how to make one d3dmenu like in unrealskill :D
that's way too hard to Create A Hack Liek UnrealSkill Premium :D
09/23/2010 12:52 Ovenran#14
yeah i don't have also GFX designer to make one :D
09/23/2010 14:23 stolen*brave#15
There's something error when I compiling the source code after clicking the green arrow.. Sir ovenran can you help me.