|
You last visited: Today at 06:26
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% |
01/06/2011, 04:47
|
#991
|
elite*gold: 0
Join Date: May 2010
Posts: 423
Received Thanks: 285
|
Neue addy´s ich bin erst mal anfänger bei addy´s suchen deswegen so wenig aber besser wenig als garkeine^^
ADR_Playerpointer 0x0BC4470
ADR_Serverpointer 0x00ABF050
ADR_FullBright1 0x00A4ADB0
ADR_FullBright2 0x00A4ADAC
ADR_FullBright3 0x00A4ADA8
ADR_WaterHight 0x00A4AE40
ADR_FarFog 0x00A4AE4C
ADR_NearFog 0x00A4AE48
ADR_Glasswalls 0x00A4AD48
ADR_Fog.Color1 0x00A4ADF8
ADR_Fog.Color2 0x00A4ADF4
ADR_Fog.Color3 0x00A4ADF0
|
|
|
01/06/2011, 13:56
|
#992
|
elite*gold: 0
Join Date: Jun 2010
Posts: 107
Received Thanks: 28
|
Quote:
Originally Posted by BlackLegend™
jop
guck mal in der base.cpp
ganz unten
und schick uns das mal
btw installier directx & netframework4
|
Hier bitte  ich nehme an das meintest du
PHP Code:
//~~~~~~~~~~~~~~~~~~~~~~HACK THREAD~~~~~~~~~~~~~~~~~~~~~~\\
DWORD WINAPI Hack(LPVOID) {
HMODULE hD3D9Dll; do { hD3D9Dll = GetModuleHandle("d3d9.dll"); Sleep(20); } while(!hD3D9Dll);
DWORD dwPresent = GetAddressPtr(17); DWORD dwReset = GetAddressPtr(16);
Sleep(1000);
//D3D pPresent = (oPresent) E9Detours2((PBYTE)dwPresent, (PBYTE)myPresent, 7); pReset = (oReset)E9Detours2((PBYTE)dwReset, (PBYTE)myReset, 7);
//NORMAL FUNKTIONS
while( 1 ) { //D3D FullBright(); GlassWalls();
//Player SuperJump(); NFD(); Dig(); Speed(); Glitchen(); CQCSpawn(); FFASpawn(); Teleport(); FastAmmo(); FastHealth(); FastRepair(); FastFlag(); NoWater(); ImDrunk(); VirtualJump(); LowGravity(); Oxigen(); Plantanywhere();
//WEAPON NoRecoil(); NoSpread(); Scope(); //UnlAmmo(); //FAIL TriggerBot(); SnowGravity(); FastLockOn();
//Server Slots(); NoBounds(); //SuperMaster(); //FAIL //RoomMaster(); FAIL Premium(); //Ping(); //FAIL
//AI-Channel ZombieFreeze();
//Misc Dinar(); Level(); Exit(); //SaveLoad();
Sleep(10); }
return true; }
//~~~~~~~~~~~~~~~~~~~~~~MAIN THREAD~~~~~~~~~~~~~~~~~~~~~~\\
BOOL WINAPI DllMain( HMODULE hDll , DWORD Reason, LPVOID lpReserved ) { DisableThreadLibraryCalls(hDll); if(Reason == DLL_PROCESS_ATTACH) { UnlinkModule(hDll); CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hack, NULL, NULL, NULL); } return TRUE; }
edit: directx sdk hab ich june 2010 und netframework hab ich...
edit: ach ja und nach dem update gehen die ja alle nicht mehr... hatte hackshield update oder warrock also neue addys?
|
|
|
01/06/2011, 14:55
|
#993
|
elite*gold: 0
Join Date: Nov 2010
Posts: 257
Received Thanks: 113
|
Wie geht das mit z.B. NoRecoil auf Numpad 7 an/aus geht?
|
|
|
01/06/2011, 15:01
|
#994
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Quote:
Originally Posted by •♦™SubZerom™♦•
Wie geht das mit z.B. NoRecoil auf Numpad 7 an/aus geht?
|
Mit Variablenabfrage
|
|
|
01/06/2011, 15:07
|
#995
|
elite*gold: 0
Join Date: Nov 2010
Posts: 257
Received Thanks: 113
|
Könnteste mir das bitte bisschen genauer erklären?
so in etwa?^^
if(NoRecoil)
{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
}
if(GetAsyncKeyState(VK_NUMPAD1) &1)
{
NoRecoil = NoRecoil==false;
}
oda mach ma bitte beispiel mit NoFallDamage
|
|
|
01/06/2011, 15:14
|
#996
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Quote:
Originally Posted by •♦™SubZerom™♦•
Könnteste mir das bitte bisschen genauer erklären?
so in etwa?^^
if(NoRecoil)
{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
}
if(GetAsyncKeyState(VK_NUMPAD1) &1)
{
NoRecoil = NoRecoil==false;
}
|
nein.. Ich schreib das mla hier,(Vergib mir fehler)
Code:
int norecoil = 0;
if(GetAsyncKeyState(VK_KEY) &1)
{
if(norecoil==0)
{
int norecoil=1;
}else{
int norecoil=0;
}
}
if(norecoil==1)
{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
}else{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 1;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 1;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 1;
}
Normlerweise ist das zu verstehen xD
|
|
|
01/06/2011, 15:22
|
#997
|
elite*gold: 0
Join Date: Nov 2010
Posts: 257
Received Thanks: 113
|
Quote:
Originally Posted by #Infraction
nein.. Ich schreib das mla hier,(Vergib mir fehler)
Code:
int norecoil = 0;
if(GetAsyncKeyState(VK_KEY) &1)
{
if(norecoil==0)
{
int norecoil=1;
}else{
int norecoil=0;
}
}
if(norecoil==1)
{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 0;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 0;
}else{
*(float*)(dwPlayerPtr+OFS_NORECOIL1) = 1;
*(float*)(dwPlayerPtr+OFS_NORECOIL2) = 1;
*(float*)(dwPlayerPtr+OFS_NORECOIL3) = 1;
}
Normlerweise ist das zu verstehen xD
|
Das ist aber i-wie zu schwer zu verstehen...
Könnte man nich schreiben
if numpad 7
NoRecoil = 0 on {else} off
?????????????????????????????????????????????????? ???????????????????????
|
|
|
01/06/2011, 15:25
|
#998
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Quote:
Originally Posted by •♦™SubZerom™♦•
Das ist aber i-wie zu schwer zu verstehen...
Könnte man nich schreiben
if numpad 7
NoRecoil = 0 on {else} off
?????????????????????????????????????????????????? ???????????????????????
|
dann wäre Norecoil nur an solange du deine Taste drückst.
Und diese Funktion so wie du es meinst(einfach) würde auch crashen...
|
|
|
01/06/2011, 15:46
|
#999
|
elite*gold: 0
Join Date: Nov 2010
Posts: 257
Received Thanks: 113
|
Quote:
Originally Posted by #Infraction
dann wäre Norecoil nur an solange du deine Taste drückst.
Und diese Funktion so wie du es meinst(einfach) würde auch crashen...
|
Aso ja ok danke :=)
aber wie mache ich das mit fullbright auch 3 addys?
also auf on und off
|
|
|
01/06/2011, 15:54
|
#1000
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Quote:
Originally Posted by •♦™SubZerom™♦•
Aso ja ok danke :=)
aber wie mache ich das mit fullbright auch 3 addys?
also auf on und off
|
Ich hab nochnie mit nem Fullbright Source gearbeitet sorry,
aber wenn das 3 addys hat ist das genau das gleiche..
|
|
|
01/06/2011, 15:57
|
#1001
|
elite*gold: 0
Join Date: Nov 2010
Posts: 257
Received Thanks: 113
|
Ja, aber das geht ja nicht mit 0 und 1 (recoil)oda 4 und 0(glasswalls)
sondern : 1092779973 = on aber was ist off
|
|
|
01/06/2011, 17:30
|
#1002
|
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
|
Get das auch in no menuhack
#define JevilinCrossHair 0x008FC7F4
??
|
|
|
01/06/2011, 17:35
|
#1003
|
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
|
#define JevilinCrossHair 0x008FC7F4
|
|
|
01/06/2011, 17:36
|
#1004
|
elite*gold: 0
Join Date: Jun 2010
Posts: 107
Received Thanks: 28
|
Quote:
Originally Posted by •♦™SubZerom™♦•
Ja, aber das geht ja nicht mit 0 und 1 (recoil)oda 4 und 0(glasswalls)
sondern : 1092779973 = on aber was ist off 
|
als off-wert kannst du 0.4 nehmen... ist nicht ganz genau aber sollte reichen
und dein code den du ganz am anfang für noreocil hattest geht auch
nur noch boll norecoil; drüberschreiben und so...
Quote:
Originally Posted by *Pumio*
Get das auch in no menuhack
#define JevilinCrossHair 0x008FC7F4
??
|
was geh auch in nomenu?
|
|
|
01/06/2011, 17:37
|
#1005
|
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
|
ich frage ob das get ob das nicht crasht
|
|
|
 |
|
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 06:28.
|
|