|
You last visited: Today at 15:57
Advertisement
WarRock EU - Code Snippets
Discussion on WarRock EU - Code Snippets within the WarRock forum part of the Shooter category.
|
View Poll Results: Wie findet ihr diesen Thread
|
|
Klasse!
|
  
|
78 |
60.94% |
Geht so
|
  
|
17 |
13.28% |
|
Sinnlos, braucht keiner
|
  
|
33 |
25.78% |
04/30/2011, 16:32
|
#3346
|
elite*gold: 0
Join Date: Mar 2011
Posts: 23
Received Thanks: 1
|
Quote:
Originally Posted by antornmo
Hallo zusammen
ich habe einen WarRock hack gecodet(nur Superjump und NFD) aber irgendetwas habe ich übersehen
hier ist das was ich im C++ codiert habe
#include <windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER 0x00C81820
#define ADR_SERVERPOINTER 0x00B7C198
#define OFS_Z 0x00102EC
#define OFS_NFD 0x00102CC
DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
//SuperJump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(dwPlayerPtr + OFS_Z) = 2000;
}
}
//No Fall Damage
{
*(float*)(dwPlayerPtr + OFS_NFD) = -20000;
}
}
}
Falls einer den Fehler findet bitte melden 
|
könnte mir bitte jemand helfen?
|
|
|
04/30/2011, 16:44
|
#3347
|
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
|
dir fehlt ein Hackthread und
die Endscene in der du auflistest das der Hackthread beim
Injecten durchläuft
|
|
|
04/30/2011, 16:47
|
#3348
|
elite*gold: 0
Join Date: Mar 2011
Posts: 23
Received Thanks: 1
|
Quote:
Originally Posted by •~•Pr0Sk1ll•~•
dir fehlt ein Hackthread und
die Endscene in der du auflistest das der Hackthread beim
Injecten durchläuft
|
kannst du mir bitte erklähren wie ich das mache? (ist mein erster hack)
|
|
|
04/30/2011, 17:39
|
#3349
|
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
|
Hackthread
Code:
void Thread()
{
for(;;)
{
//funktionen so-> Hack();
}
Sleep(10);
}
Endscene
Code:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Thread , 0, 0, 0);
break;
}
return TRUE;
}
|
|
|
04/30/2011, 17:53
|
#3350
|
elite*gold: 0
Join Date: Jan 2011
Posts: 271
Received Thanks: 801
|
Quote:
Originally Posted by •~•Pr0Sk1ll•~•
Hackthread
Code:
void Thread()
{
for(;;)
{
//funktionen so-> Hack();
}
Sleep(10);
}
Endscene
Code:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Thread , 0, 0, 0);
break;
}
return TRUE;
}
|
wnb-1337 h4x0r.
Das ist der Einstiegspunkt der Dll .... Die EndScene ist etwas völlig anderes und hat nichts aber rein gar nichts mit dem entry point zu tun.
Edit: Hab dir einfach mal ein Thanks gegeben weils einfach zu geil ist. xD
|
|
|
04/30/2011, 18:16
|
#3351
|
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
|
ich Pfeif auf dein Thx remove es pls wieder!
AntiSpam: Nops = 0x90
|
|
|
04/30/2011, 18:17
|
#3352
|
elite*gold: 0
Join Date: Mar 2011
Posts: 23
Received Thanks: 1
|
Quote:
Originally Posted by •~•Pr0Sk1ll•~•
Hackthread
Code:
void Thread()
{
for(;;)
{
//funktionen so-> Hack();
}
Sleep(10);
}
Endscene
Code:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Thread , 0, 0, 0);
break;
}
return TRUE;
}
|
dankschön
|
|
|
04/30/2011, 18:34
|
#3353
|
elite*gold: 0
Join Date: Apr 2011
Posts: 245
Received Thanks: 131
|
Because I was bored, i searched stuff for stw
Adress: 611570
as Hex : 0x611570
Off Bytes: 8B 51 34
as Hex : 0x8B 0x51 0x34
On Bytes: 90 90 90
as Hex : 0x90 0x90 0x90
Happy fun
|
|
|
05/01/2011, 09:46
|
#3354
|
elite*gold: 0
Join Date: Nov 2010
Posts: 875
Received Thanks: 206
|
Quote:
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecuteA(NULL,"Open","http://www.elitepvpers.com",NULL, NULL, 1);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack , NULL, NULL, NULL);
break;
case 2:
break;
}
return TRUE;
|
Ich hab ein Problem.
Und zwar, wenn ich diesen Code benutze crasht immer mein Warrock, addys stimmen! ( es soll sich unbedingt eine Webseite öffnen. )
|
|
|
05/01/2011, 09:51
|
#3355
|
elite*gold: 0
Join Date: Aug 2010
Posts: 972
Received Thanks: 1,583
|
Quote:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecuteA(NULL,"Open","http://www.elitepvpers.com",NULL, NULL, 1);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack , NULL, NULL, NULL);
break;
case 2:
break;
}
return TRUE;
}
|
öh so !
|
|
|
05/01/2011, 09:54
|
#3356
|
elite*gold: 0
Join Date: Nov 2010
Posts: 875
Received Thanks: 206
|
Quote:
Originally Posted by NikM
öh so ! 
|
1>main.cpp(58): fatal error C1075: Dateiende erreicht, bevor das zugehörige Element für das linke Element Klammer "{" in "main.cpp(58)" gefunden wurde
|
|
|
05/01/2011, 09:58
|
#3357
|
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
|
CServer updated by me
Code:
structs CServer
{
char bla1[1404];
__int32 Premium; //0x57C
float PremiumDays; //0x580
char bla2[1035208];
BYTE RoomMaster;//0xFD148
char bla3[20568];
BYTE Slot1;//0x1021A0
BYTE Slot2;//0x1021A1
BYTE Slot3;//0x1021A2
BYTE Slot4;//0x1021A3
BYTE Slot5;//0x1021A4
BYTE Slot6;//0x1021A5
BYTE Slot7;//0x1021A6
BYTE Slot8;//0x1021A7
char bla4[98536];
DWORD Level;//0x11A288
char bla5[10]
__int32 Dinars; //0x11A298
};
Wenns falsch ist tut es mir Leid ist meine erste eigene geupdated struct
MFG
|
|
|
05/01/2011, 10:01
|
#3358
|
elite*gold: 0
Join Date: Apr 2011
Posts: 245
Received Thanks: 131
|
Quote:
Originally Posted by Norbert8
Ich hab ein Problem.
Und zwar, wenn ich diesen Code benutze crasht immer mein Warrock, addys stimmen! ( es soll sich unbedingt eine Webseite öffnen. )
|
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecuteA(NULL,"Open","http://www.elitepvpers.com",NULL, NULL, 1);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack , NULL, NULL, NULL);
break;
case 2:
break;
}
return TRUE;
Right:
Code:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecuteA(NULL,"open","http://www.elitepvpers.com",NULL, NULL, SW_NROMAL);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack , NULL, NULL, NULL);
break;
}
return TRUE;
}
|
|
|
05/01/2011, 10:09
|
#3359
|
elite*gold: 0
Join Date: Nov 2010
Posts: 875
Received Thanks: 206
|
Quote:
Originally Posted by SubZerom™
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecuteA(NULL,"Open","http://www.elitepvpers.com",NULL, NULL, 1);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack , NULL, NULL, NULL);
break;
case 2:
break;
}
return TRUE;
Right:
Code:
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecuteA(NULL,"open","http://www.elitepvpers.com",NULL, NULL, SW_NROMAL);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack , NULL, NULL, NULL);
break;
}
return TRUE;
}
|
gleiches problem. 
immer crasht es.
|
|
|
05/01/2011, 10:11
|
#3360
|
elite*gold: 297
Join Date: Dec 2010
Posts: 1,129
Received Thanks: 1,687
|
1.) mit switch arbeiten ist hier absolut sinnlos, es sei denn du arbeitest mit NODEFAULT.
msdn:
Code:
#if defined(DEBUG) && !defined(NODEFAULT)
#define NODEFAULT default: ASSERT(0)
#elif !defined(NODEFAULT)
#define NODEFAULT default: __assume(0)
#endif
ansonsten einfach mit
Code:
if( dwReason == DLL_... ) { ... }
mit DWORD dwReason als zweites parameter der DllMain arbeiten.
2.) "elitepvpers.com" als string wird genauso wie "superjump" und einige andere detected. musste irgendwie crypten, nehm am besten einfach xorstring.
google: 
einfach die xorstr.h includieren, einen generator für xorstr gibt es hier:  (danke an NeoIII, immer & immer wieder :P)
|
|
|
 |
|
Similar Threads
|
WTB Flyff Source code snippets
04/01/2012 - Flyff Trading - 0 Replies
Hellow I posted this because I wanted to buy a fix scroll of unbinding.Which removes soul-link of an item.If you have its code snippets PM me.Don't sell me a code which is release because all of them are not working.I wanted to buy a fix one and a non-buggy code
Payment:via Paypal
|
[Autoit] Youtube Code Snippets
07/29/2011 - AutoIt - 5 Replies
Tag Zusammen.
Wie wohl die meisten von euch mitbekommen haben, bieten derzeit sehr viele User hier sogenannte Youtube Services an, bei denen man Abos, Likes, Dislikes etc. kaufen kann.
Doch wer wirklich Erfolg haben will, braucht natürlich viele Abonnenten und Likes, was per Hand Tage dauern würde.
Deshalb werden hier in letzter Zeit immer mehr Youtube Bots verkauft.
Was, wie ich finde, ein ziemliche Abzocke ist, da das meist nur sehr schlechte Bots sind, die lediglich den Internet...
|
Some Code-Snippets[PSERVER]
07/15/2011 - Kal Hacks, Bots, Cheats & Exploits - 17 Replies
This is the code of the hack which Fremo released..
I got new methods so I dont need this anymore & maybe it'll help some people...
G31 Adult Skill
if(comboBox4->Text=="Panther'crit'")
{
KC->Chat(255," Panther Skill ON");
KC->Threads=1;
KC->lasttime = timeGetTime()-15000;
}
else if(comboBox4->Text=="Tiger'otp'")
|
[Release] Code Snippets Manager
01/21/2011 - Coding Releases - 0 Replies
Code Snippets Manager
http://upit.cc/images/1d47d78e.jpg
Hab mich heute mal rangesetzt, und einen kleinen Manager für
Code-Snippets(Code-Fetzen) gecodet, da ich alles sortiert
in einer Anwendung wollte.
Da es sicherlich jemand nützlich finden wird, lad ich es hier mal hoch.
|
All times are GMT +1. The time now is 15:57.
|
|