|
You last visited: Today at 07: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% |
06/20/2012, 20:40
|
#7276
|
elite*gold: 0
Join Date: Mar 2012
Posts: 194
Received Thanks: 311
|
Quote:
Originally Posted by CyberVeezy :)
I know, the function is disabling the messagebox 
|
just wondering what the point is then?
it just disables the msg like you said, not stopping from detected or chaning anything else
|
|
|
06/20/2012, 21:35
|
#7277
|
elite*gold: 1
Join Date: Oct 2011
Posts: 1,117
Received Thanks: 1,520
|
Quote:
Originally Posted by cheatslaw
just wondering what the point is then?
it just disables the msg like you said, not stopping from detected or chaning anything else
|
yes it's just a message box bypass
|
|
|
06/21/2012, 15:03
|
#7278
|
elite*gold: 2
Join Date: Jun 2010
Posts: 748
Received Thanks: 170
|
Suche working Quick Spawn Source und Auto 9 Wins (kein setcurspos)
|
|
|
06/21/2012, 18:15
|
#7279
|
elite*gold: 0
Join Date: May 2012
Posts: 48
Received Thanks: 8
|
tMemPatch <float> UnlAmmoPatch( 0xA30970 /* address */, 0 /* value */ );
if(UnlAmmo && GetAsyncKeyState(VK_LBUTTON))
{
UnlAmmoPatch.Patch();
}else{
UnlAmmoPatch.Restore();
}
warum funktioniert nicht?
ja ich habe die patch class von yazzn drinne.
|
|
|
06/21/2012, 21:50
|
#7280
|
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
|
Zero Dealy Memory By UnknownPK 100% Credits to him
Code:
DWORD theptr = 0;
DWORD dwDCall = 0x4F5DC2;
__declspec(naked) void NoDelayMemory()
{
__asm
{
mov ecx, [esp+4]
mov eax, [ecx+102B4h]
test eax, eax
jnz Jnz1
mov eax, [ecx+102B8h]
Jnz1:
movzx edx, word ptr [eax+92h]
mov eax, [ecx+103F8h]
shr eax, 0Ah
pushad;
}
if(!CH_W_0Delay)
{
__asm
{
popad;
test al, 1
jz Jz1
pushad;
}
}
__asm
{
popad;
mov eax, dword ptr ds:[ADR_SERVER_POINTER]//place your server pointer address here
test eax, eax
jz Jz1
cmp dword ptr [eax+0C17E0h], 2
jnz Jz1
movsx eax, dx
push 0
push eax
movsx eax, word ptr [ecx+1036Eh]
push eax
mov eax, [esp+0Ch+8]
mov eax, [eax];
push eax
call dwDCall
add esp, 10h
Jz1:
retn 8
}
}
How to Use :
Code:
if(Ch_ZeroDelay==1)
{
if(*(DWORD*)0x862700)
*(DWORD*)0x862700 = (DWORD)NoDelayMemory;
}
|
|
|
06/22/2012, 07:51
|
#7281
|
elite*gold: 2
Join Date: Jun 2010
Posts: 748
Received Thanks: 170
|
#Request WORKING Quick Spawn (CQC)
|
|
|
06/22/2012, 11:32
|
#7282
|
elite*gold: 15
Join Date: Nov 2011
Posts: 556
Received Thanks: 1,002
|
No Reload Memory By UnknownPK 100% Credits to him
Code:
DWORD dwJumpBack = 0;//global
__declspec(naked) void NoReloadMemory()
{
__asm
{
push ebp //original code
mov ebp, esp
push ebx
mov ebx, [ebp+8]
pushad; //save the stack
}
if(!CH_W_NoReload) //check if no reload is off in the menu
{
__asm
{
popad; //restore the stack
test byte ptr [ebx+103F8h], 10h //again original code
mov dwJumpBack,0x4FE7D3; //move the jump offset into the global and jump to it
jmp dwJumpBack;
}
}
__asm
{
popad; //restore the stack
push esi
push edi
mov dwJumpBack,0x4FE7DB; //move the jump offset into the global and jump to it
jmp dwJumpBack;
}
}
How to Use :
Code:
if(*(DWORD*)0x85D784)
*(DWORD*)0x85D784 = (DWORD)NoReloadMemory;
|
|
|
06/22/2012, 20:09
|
#7283
|
elite*gold: 31
Join Date: Oct 2011
Posts: 2,276
Received Thanks: 2,029
|
Code:
if (ASM_Bandage == 0)
{
memcpy((void *)(0x5B181F), (void *)"x75", 1);
}
if (ASM_Bandage == 1)
{
memcpy((void *)(0x5B181F), (void *)"x90\x90", 2);
}
Credits to me.
|
|
|
06/22/2012, 21:22
|
#7284
|
elite*gold: 0
Join Date: Aug 2010
Posts: 972
Received Thanks: 1,583
|
Es könnten bei deiner Source Probleme auftreten.
Du stellst nicht den ganzen OpCode wieder her.
|
|
|
06/23/2012, 00:09
|
#7285
|
elite*gold: 15
Join Date: Nov 2011
Posts: 556
Received Thanks: 1,002
|
Code:
#define ASM_BANDAGEPX 0x5B181F
if ( CH_BandageItem == TRUE )
{
WriteMemory((LPVOID)(ASM_BANDAGEPX),(LPBYTE)("\xEB\x4E"),2);
}
else if ( CH_BandageItem == FALSE )
{
WriteMemory((LPVOID)(ASM_BANDAGEPX),(LPBYTE)("\x75\x4E"),2);
}
|
|
|
06/23/2012, 16:46
|
#7286
|
elite*gold: 0
Join Date: Aug 2010
Posts: 972
Received Thanks: 1,583
|
Enable Mousemove Ingame:
Code:
#define EnableIngameMouse_Mem 0x00A30570
*(int*)(EnableIngameMouse_Mem) = 0;
|
|
|
06/24/2012, 18:02
|
#7287
|
elite*gold: 13
Join Date: Feb 2011
Posts: 333
Received Thanks: 90
|
immer wen ich DefuseAnyWhere an mache crasht es weis wer wieso??
if (CH_DEFUSEANYWHERE)
{
*(BYTE*)(ADR_DEFUSEANYWHERE) = 0x1;
}
ADR_DEFUSEANYWHERE 0x8F2860
|
|
|
06/24/2012, 19:37
|
#7288
|
elite*gold: 0
Join Date: Jun 2012
Posts: 185
Received Thanks: 377
|
Hier, über MEM:
*(WORD*)MEM_DEFUSEANYWHERE = 0x1;
|
|
|
06/24/2012, 22:10
|
#7289
|
elite*gold: 0
Join Date: Jan 2012
Posts: 438
Received Thanks: 511
|
Quote:
Originally Posted by Hanfi™
immer wen ich DefuseAnyWhere an mache crasht es weis wer wieso??
if (CH_DEFUSEANYWHERE)
{
*(BYTE*)(ADR_DEFUSEANYWHERE) = 0x1;
}
ADR_DEFUSEANYWHERE 0x8F2860
|
Das ist die Plantanywhere source mit der DEFanywhere addy.
DEFUSEANYWHERE ist vom Datentyp WORD.
Quote:
Originally Posted by Speedlvlers
Hier, über MEM:
*(WORD*)MEM_DEFUSEANYWHERE = 0x1;
|
So sieht dann die richtige Source für die Adresse aus.
Quote:
Das andere ist auch "MEM"
BTW:
BYTE : 1 Byte
WORD : 2 Bytes
|
|
|
06/25/2012, 14:08
|
#7290
|
elite*gold: 13
Join Date: Feb 2011
Posts: 333
Received Thanks: 90
|
hat wer für mich eine auto start source??
|
|
|
 |
|
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 07:58.
|
|