PostCreating a No Menu Hack for Warrock ( With Screens )

Posts 115 of 18 · Page 1 of 2
Creating a No Menu Hack for Warrock ( With Screens )
Welcome to the Tutorial !

Now i will teach u how to create a No Menu Hack for Warrock with C++!

To create a Hack, you need :

-A Brain
-Microsoft Visual C++ 2010 or 2008 (I use 2008 )

//Start teaching//

//Start Install & Creating a Project//
1.Install Microsoft Visual C++
2.Launch Microsoft Visual C++
3.Create a Project

-Click on the left side on WIN32
-Click to WIN32-Project

-Call your Project Warrock Hack
-Click on OK

4.Now a Window will open
-Click on Next

-Click on the Circle behind DLL
-Click on the Checkbox behind Empty Project
-Click on Finish


5.Your Hack Base Will apear now!
-Right Click on the Folder Source Files
-Click on Add->New Item


Now another Windows will appear
-Click on C++ File (.cpp)
-Call it main
-Click on ADD


//End Install & Creating a Project.//
-
-
-
//Start Coding the Hack.//
Now a blank document will appear.
//This is where the real NoMenu hack building starts//
-Insert the following Code
Code:
#include <windows.h>
#include <stdio.h>

//Addys//

#define Addr_Playerpointer 0xD284E8
#define Addr_Serverpointer 0xC24B10
#define NoSpawn1 0xBDDFD8
#define NoSpawn2 0xBDDFE0
#define NoSpawn3 0xBDDFDC
#define Slot5 0x1021A4
#define Ofs_Z 0x102D8
#define Ofs_nfd 0x103A4


//Defines//
DWORD *ingame= (DWORD*)Addr_Playerpointer;
DWORD *outgame= (DWORD*)Addr_Serverpointer;

//Source Codes//

void jump () //super jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_Z) = 2000;
}
}
}

void nfd () //NFD
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_nfd) = -20000;
}
}

void Slots5 ()
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Serverpointer;
if(dwPlayerPtr != 0)
{	
*(long*)(dwPlayerPtr+ Slot5) = 1;
}
}

void Spawn ()
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)NoSpawn1, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)NoSpawn1, &t , sizeof(t));
VirtualProtect((void*)NoSpawn1, sizeof(t), Protection, 0);

VirtualProtect((void*)NoSpawn2, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)NoSpawn2, &t , sizeof(t));
VirtualProtect((void*)NoSpawn2, sizeof(t), Protection, 0);
}
//Hacktread//

void HackThread() 
{
for(;; ) 
{
if(*ingame) //All ingame Hacks like superjump,nfd,scoop etc.//
{
jump();
Spawn();
nfd();
Slots5();
}
if(*outgame)//All outgame hacks like Prmeium,supermaster etc.
{
Slots5();
}
}
Sleep(200); 
}

BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
MessageBoxA(NULL,"Hack by Taylan","Creditz",MB_OK);//
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0); 
break;
}
return TRUE;
}
{
Build the Hack ( press the green arrow or press F5)
Now open the directory where u saved your Project and inejct the dll file.

Credits : taylan ( ME )
press the thanks button if it helps u pls
Good job bro!
But you late
Many people did it before xD
I hope people will give you credits..
Good job, but many people made it before you
I KNOW i created this tut because one guy asked how to in this section ^^
jsut only for noobs they cant browse google or mpgh
Fixed
Fixed (Now contains No Errors) But gives "Warrock.exe Has encounted...... " (May be your Bool)

Code:
#include <windows.h>
#include <stdio.h>

//Addys//

#define Addr_Playerpointer 0xD284E8
#define Addr_Serverpointer 0xC24B10
#define NoSpawn1 0xBDDFD8
#define NoSpawn2 0xBDDFE0
#define NoSpawn3 0xBDDFDC
#define Slot5 0x1021A4
#define Ofs_Z 0x102D8
#define Ofs_nfd 0x103A4


//Defines//
DWORD *ingame= (DWORD*)Addr_Playerpointer;
DWORD *outgame= (DWORD*)Addr_Serverpointer;

//Source Codes//

void jump () //super jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_Z) = 2000;
}
}
}

void nfd () //NFD
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_nfd) = -20000;
}
}

void Slots5 ()
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Serverpointer;
if(dwPlayerPtr != 0)
{	
*(long*)(dwPlayerPtr+ Slot5) = 1;
}
}

void Spawn ()
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)NoSpawn1, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)NoSpawn1, &t , sizeof(t));
VirtualProtect((void*)NoSpawn1, sizeof(t), Protection, 0);

VirtualProtect((void*)NoSpawn2, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)NoSpawn2, &t , sizeof(t));
VirtualProtect((void*)NoSpawn2, sizeof(t), Protection, 0);
}
//Hacktread//

void HackThread() 
{
for(;; ) 
{
if(*ingame) //All ingame Hacks like superjump,nfd,scoop etc.//
{
jump();
Spawn();
nfd();
Slots5();
}
if(*outgame)//All outgame hacks like Prmeium,supermaster etc.
{
Slots5();
}
}
Sleep(200); 
}

BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
MessageBoxA(NULL,"Hack by Ryski123","Merry Christmas",MB_OK);//
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0); 
break;
}
return TRUE;
}
Nice tutorial mate.
thx Zithium
Hmmm... I have a Question.... Why other hacks works that doesn't need to install a C++ 2008 ?
What did they use? C++ 06 ?
Quote Originally Posted by icebox2010 View Post
Hmmm... I have a Question.... Why other hacks works that doesn't need to install a C++ 2008 ?
What did they use? C++ 06 ?
Just get Visual Studio 2008. Google a torrent for it
no better tuts than this one Nice job, gonna thanks!! xD
u can use Microsoft Visual 2008 or 2010 just take the one what u like ...

no diffrents
i tried coding this hack, but it laggs ingame; player movement is not smooth, how to fix this one?help is appreciated
Nice tutorial. Just learn c++ and made for you
Thnks for that I am a coder on PCF and UCF but now i try to code on Warrock lmao.
Quote Originally Posted by SkillzCoder View Post
Thnks for that I am a coder on PCF and UCF but now i try to code on Warrock lmao.
1 week bump = Ban! WHY BUMP THREADS?! UGh! just puts the old posts to the top, and the new posts we dont see .. Dont do it!
Posts 115 of 18 · Page 1 of 2
This thread is closed for replies.

Tags for this Thread

None

Need help?