WarRock EU - Code Snippets

07/05/2011 13:06 xxfabbelxx#4336
Fliegen auch M14/Flash Minen geradeaus, wenn man NoWeaponGravity anhat?
07/05/2011 17:45 Fl3Va#4337
suche ne allserver source
07/05/2011 17:49 ,_TradEmArk_˜#4338
Quote:
Originally Posted by Fl3Va View Post
suche ne allserver source
Brauchst HS Bypass
Quote:
Originally Posted by .Fabbel View Post
Fliegen auch M14/Flash Minen geradeaus, wenn man NoWeaponGravity anhat?
Ja tuen sie^^
07/05/2011 18:00 Angel-Piece#4339
Quote:
Originally Posted by ,_TradEmArk_˜ View Post
Brauchst HS Bypass


Ja tuen sie^^
wasch laberscht du? also ich brauche keinen hs bypass dafür...


aber einen all server source wird hier warscheinlich keiner postet weils fast keiner hat
07/05/2011 18:35 Fl3Va#4340
Quote:
Originally Posted by ,_TradEmArk_˜ View Post
Brauchst HS Bypass


Ja tuen sie^^

gibt es no unl ammo source bzw addy das man keinen Bypass brauch
07/05/2011 18:47 ,_TradEmArk_˜#4341
if (UNLAMMO_MEM==1)
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
DWORD dwServerPointer = *(DWORD*)ADR_SERVERPOINTER;
if (dwPlayerPtr != 0 && dwServerPointer != 0)
{
*(int*) (UAMMO_MEM) = 0;
}
}
07/05/2011 18:51 Fl3Va#4342
Quote:
Originally Posted by ,_TradEmArk_˜ View Post
if (UNLAMMO_MEM==1)
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
DWORD dwServerPointer = *(DWORD*)ADR_SERVERPOINTER;
if (dwPlayerPtr != 0 && dwServerPointer != 0)
{
*(int*) (UAMMO_MEM) = 0;
}
}
ich meine für no menu
07/05/2011 19:07 ,_TradEmArk_˜#4343
Quote:
Originally Posted by Fl3Va View Post
ich meine für no menu
Lol.. soviel müsstest du echt Coden können das ist Ja übelst Einfach das würde sogar einer Schaffen der 1 Jahr alt ist und noch nie Erfahrungen mit Coden gemacht hat looool

Nimm einfach das If und 1 Klammer weg - Fertig soo schwer? lol

Code:
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
DWORD dwServerPointer = *(DWORD*)ADR_SERVERPOINTER;
if (dwPlayerPtr != 0 && dwServerPointer != 0)
{
*(int*) (UAMMO_MEM) = 0; 
}
Jetzt frag nicht nach der Addy, such sie selber!
07/05/2011 19:21 Fl3Va#4344
war mir icht sicher hol mir schon buch 0 ist an was ist aus
07/05/2011 20:07 'Down#4345
DinarBot Source Code


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

#define OFS_Selfkill 0x00

void Selfkill()
{
{*(float*)(OFS_Selfkill) = +2500;}
}
void DinarBot()
{
if(GetAsyncKeyState(VK_F5))
{
SetCursorPos(450,90);
Sleep(300);
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
Sleep(300);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
Sleep(300);
keybd_event(0x11, 0, 0, 0);
keybd_event(0x11, 0, 0, 0);
keybd_event(0x0D, 0, 0, 0);
}
void Hacks()
{
for(;; )
{
Selfkill();
DinarBot();
Sleep(100);
}
}

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

if(dwReason == DLL_PROCESS_ATTACH)
{

CreateThread(0, 0, (LPTHREAD_START_ROUTINE)injectie, 0, 0, 0);

}
return TRUE;
}
07/05/2011 21:09 Trademark_?#4346
Seit heute crasht er beim spawnen>

#define WR_SELFCRC 0x059EE82
#define HS_SELF_CRC 0x1003C2F1
#define HS_STATIC_CRC_1 0x1006CDED
#define HS_STATIC_CRC_2 0x100064E0
#define HS_ASM_SCAN 0x1000995E
#define HS_NANO_CHECK_1 0x10018832
#define HS_NANO_CHECK_2 0x1001A986


void HSBYPASS(void)
{
DWORD dwServer = *(DWORD*)ADR_SERVERPOINTER;
int hEhSvc = (int)GetModuleHandle("EhSvc.dll");
{
if (dwServer!=0)
{
MemEditing((void*)(hEhSvc+HS_STATIC_CRC_1),(PBYTE) "\xC2\x0C\x00",3);//EhSvc.dll Static CrC Check|Detection
MemEditing((void*)(hEhSvc+HS_STATIC_CRC_2),(PBYTE) "\xC2\x0C\x00",3);//EhSvc.dll Static CrC Check|Detection
MemEditing((void*)(hEhSvc+HS_SELF_CRC),(PBYTE)"\xC 3",1);//EhSvc.dll Self CrC Check|Detection
MemEditing((void*)(hEhSvc+HS_ASM_SCAN),(PBYTE)"\x9 0\x90",2);//EhSvc.dll Asm Detection|Check
MemEditing((void*)(hEhSvc+HS_NANO_CHECK_1),(PBYTE) "\x31",1);//EhSvc.dll Nano Detection|Check
MemEditing((void*)(hEhSvc+HS_NANO_CHECK_2),(PBYTE) "\x31",1);//EhSvc.dll Nano Detection|Check
}
}
}
07/06/2011 06:33 ,_TradEmArk_˜#4347
Quote:
Originally Posted by Trademark_? View Post
Seit heute crasht er beim spawnen>

#define WR_SELFCRC 0x059EE82
#define HS_SELF_CRC 0x1003C2F1
#define HS_STATIC_CRC_1 0x1006CDED
#define HS_STATIC_CRC_2 0x100064E0
#define HS_ASM_SCAN 0x1000995E
#define HS_NANO_CHECK_1 0x10018832
#define HS_NANO_CHECK_2 0x1001A986


void HSBYPASS(void)
{
DWORD dwServer = *(DWORD*)ADR_SERVERPOINTER;
int hEhSvc = (int)GetModuleHandle("EhSvc.dll");
{
if (dwServer!=0)
{
MemEditing((void*)(hEhSvc+HS_STATIC_CRC_1),(PBYTE) "\xC2\x0C\x00",3);//EhSvc.dll Static CrC Check|Detection
MemEditing((void*)(hEhSvc+HS_STATIC_CRC_2),(PBYTE) "\xC2\x0C\x00",3);//EhSvc.dll Static CrC Check|Detection
MemEditing((void*)(hEhSvc+HS_SELF_CRC),(PBYTE)"\xC 3",1);//EhSvc.dll Self CrC Check|Detection
MemEditing((void*)(hEhSvc+HS_ASM_SCAN),(PBYTE)"\x9 0\x90",2);//EhSvc.dll Asm Detection|Check
MemEditing((void*)(hEhSvc+HS_NANO_CHECK_1),(PBYTE) "\x31",1);//EhSvc.dll Nano Detection|Check
MemEditing((void*)(hEhSvc+HS_NANO_CHECK_2),(PBYTE) "\x31",1);//EhSvc.dll Nano Detection|Check
}
}
}
NameFaker o_O
Ja Bypass Detected? Btw Crasht bei allen Grad.. nach spätestens 15 Min!
07/06/2011 12:12 PlayBox#4348
Quote:
Originally Posted by Fl3Va View Post
das geht nur wenn man f5 gedrückt halt aber trotzdem thx

weis wer wie man das hinbekommt das man nicht gedrückhalten muss
google doch mal
google ist der beste freund des menschen das findest du sicher was !
07/06/2011 13:17 .star™#4349
Quote:
das geht nur wenn man f5 gedrückt halt aber trotzdem thx

weis wer wie man das hinbekommt das man nicht gedrückhalten muss
lol bei meinem Teleport-Source muss man auch F5 drücken (aber nicht gedrückt halten)
und es ist auch if(GetAsyncKeyState(VK_F5))
07/06/2011 14:50 xxfabbelxx#4350
Quote:
Originally Posted by .star™ View Post
lol bei meinem Teleport-Source muss man auch F5 drücken (aber nicht gedrückt halten)
und es ist auch if(GetAsyncKeyState(VK_F5))
Ja wenn man &1 benutzebn würde, dann würdest du die ganze zeit an die koordinaten teleportiert werden, ergo du kannst nichtmehr weiterlaufen.