WarRock EU - Code Snippets

08/01/2011 08:42 Neqqa™#4756
Quote:
Need Bypass

Kann mir wer zeigen bzw. ein tut schreiben wie man ein Bypass macht ???

Gäbe bestimmt viele Thanks ;D
das wird dir glaub ich keiner Zeigen :D
08/01/2011 17:25 FriendlyHacker#4757
mein Bypass
Quote:
BOOL MemEditing (VOID *lpMem,VOID *lpSrc,DWORD len)
{
DWORD lpflOldProtect, flNewProtect = PAGE_READWRITE;
unsigned char * pDst = (unsigned char *)lpMem,
*pSrc = (unsigned char *)lpSrc;

if (VirtualProtect(lpMem,len,flNewProtect,&lpflOldPro tect))
{
while(len-- > 0) *pDst++ = *pSrc++;
return (0);
}
return (1);
}

void HSBYPASS (void)
{
Sleep (15000);
int hEhSvc = (int)GetModuleHandleA ("ehsvc.dll");
{
MemEditing((void*)(hEhSvc+0x701BC),(PBYTE)"\xC2\x0 4\x00",3);
MemEditing((void*)(hEhSvc+0x248F9),(PBYTE)"\x90\x9 0",2);
MemEditing((void*)(hEhSvc+0x33CAE),(PBYTE)"\x31",1 );
MemEditing((void*)(hEhSvc+0x312EF),(PBYTE)"\x31",1 );
MemEditing((void*)0x5343E0,(PBYTE)"\xEB",1);

}
}

CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)HSBYPASS, NULL, NULL, NULL);
08/01/2011 17:38 Angel-Piece#4758
Quote:
Originally Posted by |-LMAA-| View Post
Need Bypass :D

Kann mir wer zeigen bzw. ein tut schreiben wie man ein Bypass macht ???

Gäbe bestimmt viele Thanks ;D
dump ehsvc.dll jump, return oder mach irgend was mit den richtigen addys dann haste ein bypass :awesome:


oder du kaufst dirn bypass von mir für 10€ *hust*



Quote:
Originally Posted by FriendlyHacker View Post
mein Bypass

du bist so cool gehst auf pastebin und postest king7 uralten bypass der nicht mehr geht und gibst in als dein eigenen aus
08/01/2011 18:05 FriendlyHacker#4759
Quote:
Originally Posted by Angel-Piece View Post
dump ehsvc.dll jump, return oder mach irgend was mit den richtigen addys dann haste ein bypass :awesome:


oder du kaufst dirn bypass von mir für 10€ *hust*






du bist so cool gehst auf pastebin und postest king7 uralten bypass der nicht mehr geht und gibst in als dein eigenen aus
mein Bypass bezieht sich auf den den ich benutze !
jetzt da du das gesagt hast aber nicht mehr o.O

PHP Code:
if(stamina ==1)
{
*(
float*)Stamina1=1000;
*(
float*)Stamina2=1000;
*(
float*)Stamina3=0;
*(
float*)Stamina4=0;
*(
float*)Stamina5=0;

08/01/2011 19:24 *Pumio*#4760
Emm wie kann man von xKarka Sprite Menu das Desing ändern ...wie macht man so ein Bild in Byte ...
08/01/2011 19:39 Hanfi™#4761
könnte mir wer no spread source geben ?
wer nett^^
08/01/2011 20:04 xxfabbelxx#4762
Quote:
Originally Posted by *Pumio* View Post
Emm wie kann man von xKarka Sprite Menu das Desing ändern ...wie macht man so ein Bild in Byte ...
image to byte converter ftw... bevor du fragst, google

Quote:
Originally Posted by Hanfi™ View Post
könnte mir wer no spread source geben ?
wer nett^^
*(unsigned long*)ADR_NOSPREAD = 0;

soweit ich weiß
08/01/2011 21:28 Unknow0119#4763
NoSpread:
if (cHacks.CH_NoSpread)
{
*(float*)(cAddys::ADR_NOSPREAD) = 0.0F;
}

SuperNoSpread:
if (cHacks.CH_SuperNoSpread)
{
*(double*)(cAddys::ADR_SUPERNOSPREAD) = 0;
}
else
{
*(double*)(cAddys::ADR_SUPERNOSPREAD) = 5;
}
08/02/2011 08:24 |Scripter007|#4764
wie dumpt man ehsvc.dll dachte man kann nur exe dumpen und welche addys muss man dann finden ?
08/02/2011 10:15 R3d~F!st#4765
SelfCRC NanoCheck1/2 AntiRestore und ASMScan
glaub des sind alle
08/02/2011 10:45 |Scripter007|#4766
Quote:
Originally Posted by R3d~F!st View Post
SelfCRC NanoCheck1/2 AntiRestore und ASMScan
glaub des sind alle
StaticCrc ^^ 1/2
08/02/2011 10:51 lujaluja#4767
Wäre dieser Code für eine Box (Ohne FUnktionen, also nur ein Text)
richtig:
Quote:
class Border
{
void DrawTextC(int x,int y,DWORD color,char *text, ID3DXFont* pFont1);
void DrawBox(LPDIRECT3DDEVICE9 pDevice, int x, int y, int w, int h, D3DCOLOR Color);
void DrawRectangle(LPDIRECT3DDEVICE9 pDevice,int x, int y, int w, int h, int s, DWORD Color);

void Boarder(LPDIRECT3DDEVICE9 pDevice,ID3DXFont* pFont)
{
DrawBox(pDevice,200,25,170,120,BLACK);
DrawRectangle(pDevice,200,25,170,120 ,1, WHITE);
DrawTextC(285,30,RED,"lujaluja",pFont);
DrawTextC(285,50,RED,":",pFont);
DrawTextC(285,65,RED,"",pFont);
DrawTextC(285,80,RED,"",pFont);
DrawTextC(285,95,RED,"",pFont);
DrawTextC(285,110,RED,"",pFont);
}
}
Kommen keine Fehler doch beim Erstellen,
Quote:
1>------ Erstellen gestartet: Projekt: Tests, Konfiguration: Debug Win32 ------
1> Main.cpp
1>Main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""void __cdecl DrawTextC(int,int,unsigned long,char *,struct ID3DXFont *)" (?DrawTextC@@YAXHHKPADPAUID3DXFont@@@Z)" in Funktion ""void __cdecl Boarder(struct IDirect3DDevice9 *,struct ID3DXFont *)" (?Boarder@@YAXPAUIDirect3DDevice9@@PAUID3DXFont@@@ Z)".
1>Main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""void __cdecl DrawRectangle(struct IDirect3DDevice9 *,int,int,int,int,int,unsigned long)" (?DrawRectangle@@YAXPAUIDirect3DDevice9@@HHHHHK@Z) " in Funktion ""void __cdecl Boarder(struct IDirect3DDevice9 *,struct ID3DXFont *)" (?Boarder@@YAXPAUIDirect3DDevice9@@PAUID3DXFont@@@ Z)".
1>Main.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""void __cdecl DrawBox(struct IDirect3DDevice9 *,int,int,int,int,unsigned long)" (?DrawBox@@YAXPAUIDirect3DDevice9@@HHHHK@Z)" in Funktion ""void __cdecl Boarder(struct IDirect3DDevice9 *,struct ID3DXFont *)" (?Boarder@@YAXPAUIDirect3DDevice9@@PAUID3DXFont@@@ Z)".
1>C:\Users\Luca\Desktop\Jannik\Tests\Debug\Tests.d ll : fatal error LNK1120: 3 nicht aufgelöste externe Verweise.
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========
Kann mir jemand sagen was ich machen sollte.
08/02/2011 10:57 |Scripter007|#4768
Kann jemand den fail mal Fixxen ;D Chams geht nur wenn Wallhack an ist -.-

lhams sind Chams ;)
08/02/2011 11:35 NikM#4769
So:
Code:
if(iWallHack==1)
{
    if (m_Stride==32||m_Stride==[COLOR="Red"]36[/COLOR])
    {
        pDevice->SetRenderState(D3DRS_ZENABLE,0);
	pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex,   NumVertices, startIndex, primCount);
        pDevice->SetRenderState(D3DRS_ZENABLE,[COLOR="Red"]1[/COLOR]);
    }
}
Kannst du bei Chams genauso machen!
08/02/2011 16:22 FriendlyHacker#4770
ich habs anders ich gebe dir meinen source nachher oder morgen !!
aber credits to me ich hab den selber gemacht !