You last visited: Today at 20:03
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/07/2012, 23:57
#6766
elite*gold: 1
Join Date: Nov 2011
Posts: 283
Received Thanks: 34
ahh ok danke
04/07/2012, 23:59
#6767
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
Quote:
Originally Posted by
.Anonymous'
Kann mir mal wer sagen was boneshot bringt im hack ?
Du machst nurnoch Headshots/Neckshots
04/08/2012, 01:41
#6768
elite*gold: 0
Join Date: Mar 2012
Posts: 80
Received Thanks: 96
hat jemand breaklimit & hideweapon source :/?
04/08/2012, 01:43
#6769
elite*gold: 1
Join Date: Nov 2011
Posts: 283
Received Thanks: 34
Kann mir wer sagen ob an meinen alten Sachen was falsch ist ?
supernospread:
{
*(double*)SuperNoSpread = 0;
}
gwalls:
{
if(GetAsyncKeyState(VK_NUMPAD7) &1)
{
*(int*)Glasswalls = 4;
}
if(GetAsyncKeyState(VK_NUMPAD8) &1)
{
*(int*)Glasswalls = 0;
}
}
speed:
{
if(GetAsyncKeyState(VK_F1) &1<< 0xF)
{
*(float*)(Speed) = 00.0f;
}
}
jump:
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(Playerpointer + OFS_Z) += 75 ;
}
}
ADDYS die ich verwende
#define Playerpointer 0xA01808
#define Serverpointer 0xA017A4
#define OFS_Z 0x102F4
#define NoFallDmg 0x102D4
#define Slot5 0x001021BC
#define ADR_GLASSWALLS 0x00A01440
#define NoRecoil1 0xC43C
#define NoRecoil2 0xC440
#define NoRecoil3 0xC444
#define STAMINA1 0x835188
#define STAMINA2 0x83518C
#define STAMINA3 0x835190
#define STAMINA4 0x835194
#define STAMINA5 0x835198
#define Speed 0x864A48
#define SuperNoSpread 0x864730
04/08/2012, 11:04
#6770
elite*gold: 15
Join Date: Apr 2011
Posts: 1,524
Received Thanks: 971
Quote:
Originally Posted by
.Anonymous'
Kann mir wer sagen ob an meinen alten Sachen was falsch ist ?
supernospread:
{
*(double*)SuperNoSpread = 0;
}
gwalls:
{
if(GetAsyncKeyState(VK_NUMPAD7) &1)
{
*(int*)Glasswalls = 4;
}
if(GetAsyncKeyState(VK_NUMPAD8) &1)
{
*(int*)Glasswalls = 0;
}
}
speed:
{
if(GetAsyncKeyState(VK_F1) &1<< 0xF)
{
*(float*)(Speed) = 00.0f;
}
}
jump:
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float*)(Playerpointer + OFS_Z) += 75 ;
}
}
ADDYS die ich verwende
#define Playerpointer 0xA01808
#define Serverpointer 0xA017A4
#define OFS_Z 0x102F4
#define NoFallDmg 0x102D4
#define Slot5 0x001021BC
#define ADR_GLASSWALLS 0x00A01440
#define NoRecoil1 0xC43C
#define NoRecoil2 0xC440
#define NoRecoil3 0xC444
#define STAMINA1 0x835188
#define STAMINA2 0x83518C
#define STAMINA3 0x835190
#define STAMINA4 0x835194
#define STAMINA5 0x835198
#define Speed 0x864A48
#define SuperNoSpread 0x864730
Code:
if (SuperNoSpread == 1){
*(double*)(ADR_SUPERNOSPREAD) = 0;}
else{
*(double*)(ADR_SUPERNOSPREAD) = 5;}
Code:
if(GetAsyncKeyState(VK_F1) &1<< 0xF){
*(double*)(Speed) = 150.0f;}
---------
Suche immernoch buggfreie Full Stamina Source!
04/08/2012, 11:39
#6771
elite*gold: 1
Join Date: Nov 2011
Posts: 283
Received Thanks: 34
Hat die heir denn nen Bug ?
*(float*)STAMINA1 = 1000;
*(float*)STAMINA2 = 1000;
*(float*)STAMINA3 = 0;
*(float*)STAMINA4 = 0;
*(float*)STAMINA5 = 0;
04/08/2012, 12:10
#6772
elite*gold: 15
Join Date: Apr 2011
Posts: 1,524
Received Thanks: 971
Quote:
Originally Posted by
.Anonymous'
Hat die heir denn nen Bug ?
*(float*)STAMINA1 = 1000;
*(float*)STAMINA2 = 1000;
*(float*)STAMINA3 = 0;
*(float*)STAMINA4 = 0;
*(float*)STAMINA5 = 0;
Ja.
04/08/2012, 12:15
#6773
elite*gold: 0
Join Date: Apr 2012
Posts: 1,510
Received Thanks: 3,014
Quote:
Originally Posted by
.Tiq3reye™
Ja.
Code:
if( Stamina )
{
Stamina1P.Patch();
Stamina2P.Patch();
Stamina3P.Patch();
Stamina4P.Patch();
}
else
{
Stamina1P.Restore();
Stamina2P.Restore();
Stamina3P.Restore();
Stamina4P.Restore();
}
MemPatch <float> Stamina1P(ADR_STAMINA1,999);
MemPatch <double> Stamina2P(ADR_STAMINA2,0);
MemPatch <double> Stamina3P(ADR_STAMINA3,0);
MemPatch <float> Stamina4P(ADR_STAMINA4,0);
#define ADR_STAMINA1 0x835188
#define ADR_STAMINA2 0x83518C
#define ADR_STAMINA3 0x835190
#define ADR_STAMINA4 0x835194
04/08/2012, 15:20
#6774
elite*gold: 0
Join Date: Jul 2010
Posts: 310
Received Thanks: 338
I thing the right one is :
Code:
if( Stamina )
{
Stamina1.Patch();
Stamina2.Patch();
Stamina3.Patch();
Stamina4.Patch();
Stamina5.Patch();
}
else
{
Stamina1.Restore();
Stamina2.Restore();
Stamina3.Restore();
Stamina4.Restore();
Stamina5.Restore();
}
MemPatch <float> Stamina1(ADR_STAMINA1,1000);
MemPatch <double> Stamina2(ADR_STAMINA2,1000);
MemPatch <double> Stamina3(ADR_STAMINA3,0);
MemPatch <float> Stamina4(ADR_STAMINA4,0);
MemPatch <float> Stamina5(ADR_STAMINA4,0);
#define ADR_STAMINA1 0x835188
#define ADR_STAMINA2 0x83518C
#define ADR_STAMINA3 0x835190
#define ADR_STAMINA4 0x835194
#define ADR_STAMINA5 0x835198
That's the one i use :/ ... I thing i'm wrong
And here i have MemPatch
Attached Files
MemPatch.rar
(696 Bytes, 47 views)
04/08/2012, 18:17
#6775
elite*gold: 0
Join Date: Mar 2012
Posts: 91
Received Thanks: 7
Habe da so eine Frage
Könnte mir jemand bei einem hack behilflich sein der Menü hat aber keine funktionen sondern nur Skill ? on|off
04/08/2012, 18:21
#6776
elite*gold: 0
Join Date: Mar 2012
Posts: 3,513
Received Thanks: 1,023
Quote:
Originally Posted by
RazorHD_
Habe da so eine Frage
Könnte mir jemand bei einem hack behilflich sein der Menü hat aber keine funktionen sondern nur Skill ? on|off
wie nur Skill ? o.0
04/08/2012, 18:52
#6777
elite*gold: 0
Join Date: Nov 2008
Posts: 128
Received Thanks: 3
A no-menu powerlevel bot source code for warrock would be extremely appreciated.Also would like a pm if you want to keep it privately.
Thanks
04/09/2012, 05:16
#6778
elite*gold: 0
Join Date: Oct 2010
Posts: 287
Received Thanks: 111
Quote:
Originally Posted by
_Apostolos_
I thing the right one is :
Code:
if( Stamina )
{
Stamina1.Patch();
Stamina2.Patch();
Stamina3.Patch();
Stamina4.Patch();
Stamina5.Patch();
}
else
{
Stamina1.Restore();
Stamina2.Restore();
Stamina3.Restore();
Stamina4.Restore();
Stamina5.Restore();
}
MemPatch <float> Stamina1(ADR_STAMINA1,1000);
MemPatch <double> Stamina2(ADR_STAMINA2,1000);
MemPatch <double> Stamina3(ADR_STAMINA3,0);
MemPatch <float> Stamina4(ADR_STAMINA4,0);
MemPatch <float> Stamina5(ADR_STAMINA4,0);
#define ADR_STAMINA1 0x835188
#define ADR_STAMINA2 0x83518C
#define ADR_STAMINA3 0x835190
#define ADR_STAMINA4 0x835194
#define ADR_STAMINA5 0x835198
That's the one i use :/ ... I thing i'm wrong
The only difference between your and TradeMarks source is that you use other names. The last MemPatch is senseless cause you double Patch the 4th Stamina Address instead of the 5th...
04/09/2012, 11:50
#6779
elite*gold: 0
Join Date: Mar 2012
Posts: 9
Received Thanks: 7
if ( memcmp((LPVOID)(0x83A2E8),(CHAR*)"WarRock",7) == 0 )
{
// VERSION OK!
}
else if ( memcmp((LPVOID)(0x83A2E8),(CHAR*)"WarRock",7) != 0 )
{
// VERSION FAIL!
}
04/09/2012, 12:29
#6780
elite*gold: 0
Join Date: Jan 2012
Posts: 438
Received Thanks: 511
Quote:
Originally Posted by
RazorHD_
Habe da so eine Frage
Könnte mir jemand bei einem hack behilflich sein der Menü hat aber keine funktionen sondern nur Skill ? on|off
Einen hack mit "nur Skill" ?
Bist du breit oO?
Ich glaube den brauchst du :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 20:05 .