Register for your free account! | Forgot your password?

You last visited: Today at 08:50

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

Advertisement



[Scoure] NoMenu hack

Discussion on [Scoure] NoMenu hack within the WarRock Hacks, Bots, Cheats & Exploits forum part of the WarRock category.

Reply
 
Old   #1
 
Gegner92's Avatar
 
elite*gold: 6
Join Date: Feb 2010
Posts: 1,019
Received Thanks: 1,035
Lightbulb [Scoure] NoMenu hack

Achja und hier für die Faulen wie es Wahrscheinlich alle machen werden^^

Der Komplete Code und die Komplete Scoure Code Mappe.
Am besten ist es wenn ihr einfach die Mappe downloadet dann müsst ihr sie nur entpacken und habt alles richtg.



Code:
#include <windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00A69C88
#define ADR_SERVERPOINTER 0x00964A40
#define OFS_Y 0x000102A8
#define OFS_X 0x000102D4 
#define OFS_Z 0x000102D8
#define OFS_5thslot 0x000D147C
#define OFS_8thslot 0x000D147F
#define OFS_7thslot 0x000D147E
#define OFS_6thslot 0x000D147D
#define OFS_GRAV 0x00C49C
#define OFS_NFD 0x00103A4
#define ADR_Speed 0x0077C6FC 
#define OFS_PREMIUM1 0x0000057C
#define OFS_PREMIUM2 0x0580



float posiX;
float posiY;
float posiZ;


DWORD *ingame= (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame= (DWORD*)ADR_SERVERPOINTER;

void platinum () 
{
DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
{
*(long*)(dwSrvrPtr+OFS_PREMIUM1) = 4, 10; 
{
*(float*)(dwSrvrPtr+OFS_PREMIUM2) = 1, 1;
}}}

void speedon0 ()
{
    if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF)
{
*(float*)(ADR_Speed) = 100.0f;
}

}
void speedon1 ()
{
    if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF)
{
*(float*)(ADR_Speed) = 200.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 Slots6 ()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwPlayerPtr != 0)
{    
*(long*)(dwPlayerPtr+OFS_6thslot) = 1;
}
}
void Slots7 ()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwPlayerPtr != 0)
{    
*(long*)(dwPlayerPtr+OFS_7thslot) = 1;
}
}
void Slots8 ()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwPlayerPtr != 0)
{    
*(long*)(dwPlayerPtr+OFS_8thslot) = 1;
}
}

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

void Teleport ()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
if (GetAsyncKeyState(VK_F11)) 
{
posiX = *(float*)(dwPlayerPtr + OFS_X);
posiY = *(float*)(dwPlayerPtr + OFS_Y);
posiZ = *(float*)(dwPlayerPtr + OFS_Z);
}
if (GetAsyncKeyState(VK_F12))
{
*(float*)(dwPlayerPtr + OFS_X) = posiX;
*(float*)(dwPlayerPtr + OFS_Y) = posiY;
*(float*)(dwPlayerPtr + OFS_Z) = posiZ;
}
}
}

void lowgravity ()
{
if (GetAsyncKeyState(VK_MENU)) 
     {
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_GRAV) = 100.0f;
}
}
}

void NFD ()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_NFD) = -20000; 
}
}

void SuperJump ()
{
if(GetAsyncKeyState(VK_CONTROL)&1)
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 1000; //jump height
}
}
}

void exit()
{
if(GetAsyncKeyState(VK_DELETE) &1<< 0xF)
{                   
ExitProcess(0);              
}
}

void Hacks() 
{
for(;;) 
{
if(*ingame)
{
speedon0();
speedon1();
speedon2();
speedon3();
speedon4();
speedon5();
speedon6();
speedon7();
Teleport();
lowgravity();
NFD();
SuperJump();
exit();
Sleep(0);
}
if(*outgame)
{
Slots5();
Slots6();
Slots7();
Slots8();
platinum();
}
}
Sleep(200);
}

BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
MessageBoxA(NULL, "Creditz: DEIN NAME", "Injection Succesfull", MB_OK);
ShellExecuteA(NULL,"Open","http://DEINE-SEITE.de",NULL,NULL,1);
MessageBoxA(NULL, "Tutorital:Gegner´s TUT ;)", "Injection Succesfull", MB_OK);
ShellExecuteA(NULL,"Open","http://hack.community4um.de",NULL,NULL,1);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Hacks, 0, 0, 0);
break;
case 2:
break;
}
return TRUE;
}


Gegner92 is offline  
Thanks
2 Users
Old 09/05/2010, 21:06   #2
 
socιalbιt's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 1,352
Received Thanks: 572
Einacher NoMenu hack zum selber basteln? xD
socιalbιt is offline  
Reply


Similar Threads Similar Threads
Wie startet man einen NoMenu-Hack / Probleme mit NoMenu-Hacks
12/04/2010 - WarRock Guides, Tutorials & Modifications - 30 Replies
How to: Start a NoMenu Hack Hallo liebe Com, ich habe mich entschieden hier ein kleines Tutorial, und gleichzeitig ein Thread für Probleme beim Starten eines NoMenu-Hacks schreiben, da immer mehr selbstgecodete NoMenu Hacks released werden, und ich bis jetzt mindestens 10 Threads, allein über nicht-funktionierende No-Menu-Hacks gesehen habe. Ich denke dieses Tut ist notwendig, da es Unterscheide zwischen der Funktionsweise von D3D- und NoMenu Hacks gibt, und diese wiederum andere...
[Hack] Viciouz™1337 NoMenu Special Undercover Hack [24.08.2010]
08/29/2010 - WarRock Hacks, Bots, Cheats & Exploits - 59 Replies
Ich mag keine Hacker!
Pro-Hack v.1.0 [NoMenu]
04/19/2010 - WarRock Hacks, Bots, Cheats & Exploits - 0 Replies
Virus Total: Virustotal. MD5: 982eecfe90f737a3a40691b33b2377c8 Download: Credits: shark12345 by E*Pvpers ~Shark~ by G_H_Bsys.net ~Shark~ by pro-hacks.forumsfree.de
New NoMenu Hack [27.03.10]
03/27/2010 - WarRock Hacks, Bots, Cheats & Exploits - 8 Replies
Hie hab ich einen kleinen NoMenu Hack für euch!! Funkionen: Premium Gold - Auto No Water - Auto Unl. Stamina (stealth) - Auto Download: #removed



All times are GMT +1. The time now is 08:50.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.