Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 01:58

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Warrock hack Codees

Discussion on Warrock hack Codees within the WarRock forum part of the Shooter category.

View Poll Results: Findet ihr das Coden Leicht??
JA"! 2 28.57%
NEIN"! 5 71.43%
Voters: 7. You may not vote on this poll

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2010
Posts: 184
Received Thanks: 49
Exclamation Warrock hack Codees

ALso ich Habe Jetzt eine dll geschreiben( hack)

adyys edct hier:



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


#define ADR_PLAYERPOINTER 0x00AA6DF8 //Found at: 0x00417E0E ( WarRock.exe[0x00400000] + 0x00017E0E )
#define ADR_SERVERPOINTER 0x009A1E18 //Found at: 0x004143D8 ( WarRock.exe[0x00400000] + 0x000143D8 )
#define ADR_SPEED 0x007B55CC //Found at: 0x004DFBDE ( WarRock.exe[0x00400000] + 0x000DFBDE )

#define ADR_FASTAMMO 0x008F0D5C //Found at: 0x0042B372 ( WarRock.exe[0x00400000] + 0x0002B372 )
#define ADR_FASTFLAG 0x008F0D68 //Found at: 0x0045271F ( WarRock.exe[0x00400000] + 0x0005271F )
#define ADR_FASTHEALTH 0x008F0D60 //Found at: 0x0042B3C9 ( WarRock.exe[0x00400000] + 0x0002B3C9 )
#define ADR_FASTREPAIR 0x008F0D54 //Found at: 0x0042B42D ( WarRock.exe[0x00400000] + 0x0002B42D )
#define ADR_INSTANTSPAWN1 0x0095B630 //Found at: 0x0046A2C4 ( WarRock.exe[0x00400000] + 0x0006A2C4 )
#define ADR_CQCSPAWN 0x0080DCC4 //Found at: 0x0042E7EA ( WarRock.exe[0x00400000] + 0x0002E7EA )



DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
DWORD dwServerPtr = *(DWORD*)ADR_SERVERPOINTER;








void Fastall()
{
*(float*) ADR_FASTHEALTH = 5000000;
*(float*) ADR_FASTAMMO = 5000000;
*(float*) ADR_FASTFLAG = 50000;
*(float*) ADR_FASTREPAIR = 5000000;
}
void Spawn ()
{
long t=0;
unsigned long Protection;
VirtualProtect((void*)ADR_INSTANTSPAWN1, sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)ADR_INSTANTSPAWN1, &t , sizeof(t));
VirtualProtect((void*)ADR_INSTANTSPAWN1, sizeof(t), Protection, 0);

VirtualProtect((void*)ADR_CQCSPAWN , sizeof(t), PAGE_READWRITE, &Protection);
memcpy((void*)ADR_CQCSPAWN , &t , sizeof(t));
VirtualProtect((void*)ADR_CQCSPAWN , sizeof(t), Protection, 0);
}
//Speed
void speed() // insert key, speed on
{
if(GetAsyncKeyState(VK_INSERT) &1)
{
*(float*) ADR_SPEED = 1500;
}
}
void speedon1 ()
{
if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 200.0f;
}
}
void speedon ()
{
if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 100.0f;
}
}
void speedon2 ()
{
if(GetAsyncKeyState(VK_NUMPAD2) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 300.0f;
}
}
void speedon3 ()
{
if(GetAsyncKeyState(VK_NUMPAD3) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 400.0f;
}
}
void speedon4 ()
{
if(GetAsyncKeyState(VK_NUMPAD4) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 500.0f;
}
}
void speedon5 ()
{
if(GetAsyncKeyState(VK_NUMPAD5) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 600.0f;
}
}

void speedon6 ()
{
if(GetAsyncKeyState(VK_NUMPAD6) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 700.0f;
}
}
void speedon7 ()
{
if(GetAsyncKeyState(VK_NUMPAD7) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 800.0f;
}
}
void speedon8 ()
{
if(GetAsyncKeyState(VK_NUMPAD8) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 900.0f;
}
}
void speedon10 ()
{
if(GetAsyncKeyState(VK_NUMPAD9) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 1000.0f;
}
}


void HackThread()
{
for(;; )
{
speedon1();
speedon();
speedon2();
speedon3();
speedon4();
Spawn();
speedon5();
speedon6();
speedon7();
speedon8();
speedon10();
Fastall();
Sleep(20);
}
}

BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{

CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;

meine Frage sit was Muss ich tun Um eine dll draus zumachen und Warum geht das nciht es funktioniert irgendwie nicht Oo
~*VisualBasic*~ is offline  
Old 06/18/2010, 18:00   #2
 
elite*gold: 34
Join Date: Dec 2009
Posts: 3,873
Received Thanks: 3,251
du musst dafür genügend c++ kenntnisse haben

1-2 jahre

kauf dir ein buch und lern das erstmal..
theit123 is offline  
Old 06/18/2010, 18:01   #3
 
elite*gold: 0
Join Date: Jun 2010
Posts: 184
Received Thanks: 49
KOmische antwort habe paar Fraghen gestelltOo
~*VisualBasic*~ is offline  
Old 06/18/2010, 18:03   #4
 
elite*gold: 34
Join Date: Dec 2009
Posts: 3,873
Received Thanks: 3,251
Quote:
Originally Posted by ~*VisualBasic*~ View Post
meine Frage sit was Muss ich tun Um eine dll draus zumachen und Warum geht das nciht es funktioniert irgendwie nicht Oo
1. Wenn du ein No Menu Hack erstellen willst , es gibt hier viele TuT´s benutz einfach die SuFu

Wenn du ein D3d Hack machen willst ... lern C++ mal schön 1-2 Jahre
2. Maybe Addys falsch
theit123 is offline  
Old 06/18/2010, 18:05   #5
 
elite*gold: 0
Join Date: Jun 2010
Posts: 184
Received Thanks: 49
?? wie addys falsch?
~*VisualBasic*~ is offline  
Old 06/18/2010, 18:07   #6
 
elite*gold: 34
Join Date: Dec 2009
Posts: 3,873
Received Thanks: 3,251
Quote:
Originally Posted by ~*VisualBasic*~ View Post
?? wie addys falsch?
wie alt sind die? hast du einen public addylogger benutzt ? dann sind sie wahrscheinlich falsch da dieses update die meisten addys geändert hat .
theit123 is offline  
Old 06/18/2010, 18:08   #7
 
Variable_X's Avatar
 
elite*gold: 0
Join Date: Jun 2010
Posts: 622
Received Thanks: 334
Vergiss es.
Am besten lernst du mal C++. Versteh die Syntax. Lern die Grundlagen und meld dich nochmal.
Variable_X is offline  
Reply


Similar Threads Similar Threads
GM CODEES? PRIVI SERVER=
05/13/2009 - Metin2 Private Server - 23 Replies
halloo kenne bis jetzt nur den status punkte befehl aber ich will P befehl wissen son freak kennt die hälfte aller vefehle der hat nur steine+6(pole)
GM CODEES? PRIVI SERVER=
05/12/2009 - Metin2 Private Server - 0 Replies
halloo kenne bis jetzt nur den status punkte befehl aber ich will P befehl wissen son freak kennt die hälfte aller vefehle der hat nur steine+6 das ist ein (pole)



All times are GMT +2. The time now is 01:58.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.