|
You last visited: Today at 23:19
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% |
08/23/2011, 13:28
|
#4981
|
elite*gold: 0
Join Date: Jul 2011
Posts: 3,812
Received Thanks: 1,840
|
Quote:
is doch egal
ich glaub jetzt klappt es mit dem NoMenu von Azzlack68
ich glaub trotzdem das da bissn c&p im Spiel war :P
|
Vllt.
Aber sein hack wird sofort crashen, bzw. nich richtig funktionieren.
Er hat low gravity nicht ma auf einen Hotkey gesetzt o.0
|
|
|
08/23/2011, 13:43
|
#4982
|
elite*gold: 0
Join Date: Aug 2011
Posts: 84
Received Thanks: 66
|
Das ist seine Sache 
Ich hab die Fehler bereinigt der Rest bockt mich nciht
|
|
|
08/23/2011, 17:32
|
#4983
|
elite*gold: 0
Join Date: Aug 2011
Posts: 2
Received Thanks: 1
|
@Yazzn 
Äähm, ich will ja eigentlich kein C&P amchen aber ich kann leider keine Bypässe coden, und da wollte ich fragen wohin ich das reinkopieren soll?
Oder soll ich ein neues element erstellen, und es da rein tuhen?
Sry  habe aber keine ahnung
|
|
|
08/23/2011, 22:36
|
#4984
|
elite*gold: 0
Join Date: Jul 2011
Posts: 285
Received Thanks: 117
|
Was Sind Die Source Für Chams ?
|
|
|
08/24/2011, 11:20
|
#4985
|
elite*gold: 0
Join Date: Apr 2010
Posts: 3,935
Received Thanks: 6,301
|
Jetzt dürfte der Bypass richtig sein:
Credits: UnkownPK
PHP Code:
void MEMwrite(void *adr, void *ptr, int size)
{
DWORD OldProtection;
VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
memcpy(adr,ptr,size);
VirtualProtect(adr,size,OldProtection, &OldProtection);
}
DWORD WINAPI GoodByeHackshield(LPVOID)
{
DWORD HSEhsvc = 0;
//lets sleep while hackshield loading :) and save its start point
do{
HSEhsvc = (DWORD)GetModuleHandle("Ehsvc.dll");
Sleep(100);
}while(!HSEhsvc);
//prevent hackshield kicking you from the server
//little credits to king7 this is his address :) but still i change it alittle :)
MEMwrite((void*)0x4D9E35,(void*)"\x32\xC0\xC3",3);
//prevents WR telling hackshield to start montioring
MEMwrite((void*)0x4D9DD4,(void*)"\xB0\x01\xC2\x04\x00",5);
//prevents hackshield knowing you are connected inside the server
MEMwrite((void*)0x780A2F,(void*)"\xC2\x04\x00",3);
//prevent hackshield heartbeating to the game!
MEMwrite((void*)0x5812B1,(void*)"\xC3",1);
return 1;
}
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)GoodByeHackshield, NULL, NULL, NULL);
|
|
|
08/24/2011, 11:42
|
#4986
|
elite*gold: 0
Join Date: May 2009
Posts: 2,527
Received Thanks: 4,404
|
Quote:
Originally Posted by Staminastick
Jetzt dürfte der Bypass richtig sein:
Credits: UnkownPK
PHP Code:
void MEMwrite(void *adr, void *ptr, int size)
{
DWORD OldProtection;
VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
memcpy(adr,ptr,size);
VirtualProtect(adr,size,OldProtection, &OldProtection);
}
DWORD WINAPI GoodByeHackshield(LPVOID)
{
DWORD HSEhsvc = 0;
//lets sleep while hackshield loading :) and save its start point
do{
HSEhsvc = (DWORD)GetModuleHandle("Ehsvc.dll");
Sleep(100);
}while(!HSEhsvc);
//prevent hackshield kicking you from the server
//little credits to king7 this is his address :) but still i change it alittle :)
MEMwrite((void*)0x4D9E35,(void*)"\x32\xC0\xC3",3);
//prevents WR telling hackshield to start montioring
MEMwrite((void*)0x4D9DD4,(void*)"\xB0\x01\xC2\x04\x00",5);
//prevents hackshield knowing you are connected inside the server
MEMwrite((void*)0x780A2F,(void*)"\xC2\x04\x00",3);
//prevent hackshield heartbeating to the game!
MEMwrite((void*)0x5812B1,(void*)"\xC3",1);
return 1;
}
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)GoodByeHackshield, NULL, NULL, NULL);
|
Da fehlt ne Addy also könnt ihrs gleich vergessen..
Ingame 30Sekunden ~ Crash
|
|
|
08/24/2011, 13:33
|
#4987
|
elite*gold: 0
Join Date: Mar 2010
Posts: 191
Received Thanks: 26
|
Muss ich Für die Ehsvc.dll 32Bit haben? wegen den Dumpen??
|
|
|
08/24/2011, 15:09
|
#4988
|
elite*gold: 0
Join Date: Jun 2011
Posts: 161
Received Thanks: 470
|
@Staminastick: Wurde schon posted
|
|
|
08/24/2011, 17:05
|
#4989
|
elite*gold: 0
Join Date: Oct 2010
Posts: 1
Received Thanks: 0
|
Quote:
Originally Posted by Staminastick
Jetzt dürfte der Bypass richtig sein:
Credits: UnkownPK
PHP Code:
void MEMwrite(void *adr, void *ptr, int size)
{
DWORD OldProtection;
VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);
memcpy(adr,ptr,size);
VirtualProtect(adr,size,OldProtection, &OldProtection);
}
DWORD WINAPI GoodByeHackshield(LPVOID)
{
DWORD HSEhsvc = 0;
//lets sleep while hackshield loading :) and save its start point
do{
HSEhsvc = (DWORD)GetModuleHandle("Ehsvc.dll");
Sleep(100);
}while(!HSEhsvc);
//prevent hackshield kicking you from the server
//little credits to king7 this is his address :) but still i change it alittle :)
MEMwrite((void*)0x4D9E35,(void*)"\x32\xC0\xC3",3);
//prevents WR telling hackshield to start montioring
MEMwrite((void*)0x4D9DD4,(void*)"\xB0\x01\xC2\x04\x00",5);
//prevents hackshield knowing you are connected inside the server
MEMwrite((void*)0x780A2F,(void*)"\xC2\x04\x00",3);
//prevent hackshield heartbeating to the game!
MEMwrite((void*)0x5812B1,(void*)"\xC3",1);
return 1;
}
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)GoodByeHackshield, NULL, NULL, NULL);
|
Can you post the anticrash source? it's like the other
|
|
|
08/24/2011, 22:45
|
#4990
|
elite*gold: 0
Join Date: Mar 2010
Posts: 191
Received Thanks: 26
|
Suche einen Full Bypass Tutorial kann 1 dieser sources geben
Quote:
QuickPlant
QuickDefuse
Wtw
Stw
Wuw
CQCProne
NoRestrictions
NoReload
AutoMedic
AutoAmmo
UnlAmmo ´
SNS
AntiM14
AntiMine
AntiFlash
MineView
RadarGPS
RoomFilter
Ossigen
NoDelay
CrossASM
Escalator
Stamina
BoneShot
Bullets 2, 3, 4, 5, 10, 20, 30, 40, 50, 100
|
|
|
|
08/24/2011, 23:08
|
#4991
|
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
|
Quote:
Originally Posted by poikl1
Suche einen Full Bypass Tutorial kann 1 dieser sources geben
|
guck selber die sind hier im laufe des thread die sachen geposted wurden
|
|
|
08/24/2011, 23:10
|
#4992
|
elite*gold: 0
Join Date: Mar 2010
Posts: 191
Received Thanks: 26
|
Quote:
Originally Posted by Angel-Piece
guck selber die sind hier im laufe des thread die sachen geposted wurden 
|
Ein TUTORIAL ?!?!???? xD oder nur so ein Bypass der nach 30 Sekunden Crasht?
|
|
|
08/24/2011, 23:48
|
#4993
|
elite*gold: 0
Join Date: Dec 2010
Posts: 5
Received Thanks: 4
|
Quote:
Originally Posted by poikl1
Suche einen Full Bypass Tutorial kann 1 dieser sources geben
|
Für Die Ganzen Function kann ich nur Sagen Copy & Paster Läst Grüße Für Bypass meiner Meinung nach gibt es dafür kein tutorial du must es dir selber beibringen bist du es kanst
|
|
|
08/25/2011, 00:00
|
#4994
|
elite*gold: 0
Join Date: Mar 2010
Posts: 191
Received Thanks: 26
|
Quote:
Originally Posted by ik1llu96
Für Die Ganzen Function kann ich nur Sagen Copy & Paster Läst Grüße Für Bypass meiner Meinung nach gibt es dafür kein tutorial du must es dir selber beibringen bist du es kanst 
|
Ich meine sozu sagen ein bypass Tutorial "Kaufen" und C&P? du weiß nicht mal von wo ich die Sourcen habe.. gibts die überhaupt Public???
€dit: Hat einer 32 Bit und kennt sich mit Dumpen aus? Könnte der jenige für mich Ehsvc.dll Dumpen? geben schon die dll ;D
|
|
|
08/25/2011, 11:19
|
#4995
|
elite*gold: 0
Join Date: May 2011
Posts: 171
Received Thanks: 81
|
Hier Bullets Creditz to Unknown
Code:
DWORD pBullets = NULL;
DWORD Bullets = NULL;
_declspec(naked) void new_Bullets()
{
__asm
{
mov eax,Bullets;
jmp pBullets;
}
}
if(CH_Bullet!=0)
{
switch(CH_Bullet)
{
case 1:Bullets = 0x2; break;
case 2:Bullets = 0x3; break;
case 3:Bullets = 0x4; break;
case 4:Bullets = 0x5; break;
case 5:Bullets = 0x10; break;
case 6:Bullets = 0x20; break;
case 7:Bullets = 0x30; break;
case 8:Bullets = 0x40; break;
case 9:Bullets = 0x50; break;
case 10:Bullets = 0x100; break;
}
pBullets = (ADR_Bullets+ 0x5);
DetourFunc((BYTE*)ADR_Bullets,(BYTE*)new_Bullets,5);
}else{
Memcpy((LPBYTE)ADR_Bullets,(PBYTE)"\x0F\xB7\x44\x24\x1C",5);
}
|
|
|
 |
|
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 23:19.
|
|