Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 06:40

  • Please register to post and access all features, it's quick, easy and FREE!

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%
Voters: 128. You may not vote on this poll

Closed Thread
 
Old 11/12/2011, 18:07   #5791
 
Dogukan47's Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 1,490
Received Thanks: 196
jm. bock mit mir ein hack für wr taiwan zu machen hab bis jetzt ne detour ein menü und d3d stuff brauche nur noch addys^^
Dogukan47 is offline  
Old 11/12/2011, 21:19   #5792

 
elite*gold: 14
Join Date: Nov 2011
Posts: 139
Received Thanks: 170
Quote:
Originally Posted by WarFk View Post
An BlackOne für den Weapon Hack gehen die Credits aber ganz bestimmt nicht an SubZerom oder UPK....Ist so mega alt wäre als ob man Credits für Superjump an Hans gibt.


EDIT:
Ihr könntet natürlich credits kriegen wenn ihr es "sauber" macht:
Code:
void W_Hack(DWORD x)
{*(DWORD*)(*(DWORD*)(ADR_PlayerPointer)+OFS_WeaponHack1) =x;
*(DWORD*)(*(DWORD*)(ADR_PlayerPointer)+OFS_WeaponHack2) =x;
*(DWORD*)(*(DWORD*)(ADR_PlayerPointer)+OFS_WeaponHack3) =x;}
Code:
if(kcHack.Weapon.Weapon_H)
W_Hack(*(DWORD*)kcHack.Weapon.Weapon_H);

Ja habe ein paar seiten vorher das schonmal gesehen und da steht halt :
Credits:
-SubZerom
-UPK
■DarknessIM■ is offline  
Old 11/13/2011, 11:15   #5793
 
elite*gold: 26
The Black Market: 288/1/0
Join Date: Dec 2010
Posts: 4,343
Received Thanks: 2,395
hey leute ich wollte mal wissen wie ich es hin bekomme das wenn ich zb. In meinem Hack definiere das wenn MSG on ist eine MSg kommt .... wenn man das so macht
if (msg == 1)
"hier dann der code"

geht das nur in Game -.- ich möchte aber das es auch bzw nur in der lobby geht
edite: evtl mit serverpointer?
hero9910 is offline  
Old 11/13/2011, 11:38   #5794
 
elite*gold: 0
Join Date: Oct 2011
Posts: 81
Received Thanks: 40
Quote:
Originally Posted by hero9910 View Post
hey leute ich wollte mal wissen wie ich es hin bekomme das wenn ich zb. In meinem Hack definiere das wenn MSG on ist eine MSg kommt .... wenn man das so macht
if (msg == 1)
"hier dann der code"

geht das nur in Game -.- ich möchte aber das es auch bzw nur in der lobby geht
edite: evtl mit serverpointer?
Benutzt einfach keinen Player oder Serverpointer und die sache ist gegessen xD
xTriplexXx is offline  
Old 11/13/2011, 11:45   #5795
 
elite*gold: 26
The Black Market: 288/1/0
Join Date: Dec 2010
Posts: 4,343
Received Thanks: 2,395
Quote:
Originally Posted by xTriplexXx View Post
Benutzt einfach keinen Player oder Serverpointer und die sache ist gegessen xD
nope wenn ich nur if(bla==1) und den code schreibe geht das nur ingame
hero9910 is offline  
Old 11/13/2011, 12:35   #5796
 
elite*gold: 0
Join Date: Oct 2011
Posts: 81
Received Thanks: 40
Quote:
Originally Posted by hero9910 View Post
nope wenn ich nur if(bla==1) und den code schreibe geht das nur ingame
1. Kannst das ==1 weglassen und es geht dann, omg
Wenn du Player und Server Checks weglässt.
xTriplexXx is offline  
Old 11/13/2011, 12:37   #5797
 
Büny :)'s Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
Quote:
Originally Posted by hero9910 View Post
nope wenn ich nur if(bla==1) und den code schreibe geht das nur ingame
redest du von engine text? wenn ja gibts dafür 3 Addys soweit ich weiß, eine für Ingame, Outgame & Beides

Aber es geht auch mit allen 3 Addys ingame & outgame wenn man ne verschiedene Source benutzt glaube ich xd
Büny :) is offline  
Old 11/13/2011, 12:41   #5798
 
elite*gold: 26
The Black Market: 288/1/0
Join Date: Dec 2010
Posts: 4,343
Received Thanks: 2,395
Quote:
Originally Posted by Büny :) View Post
redest du von engine text? wenn ja gibts dafür 3 Addys soweit ich weiß, eine für Ingame, Outgame & Beides

Aber es geht auch mit allen 3 Addys ingame & outgame wenn man ne verschiedene Source benutzt glaube ich xd
ne es geht eigentlich nicht um eine msg sondern um was anderes will aber nicht das jemand die idee klaut
hero9910 is offline  
Old 11/13/2011, 12:43   #5799
 
Büny :)'s Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
Quote:
Originally Posted by hero9910 View Post
ne es geht eigentlich nicht um eine msg sondern um was anderes will aber nicht das jemand die idee klaut
dann kann dir auch nich wirklich jemand weiter helfen ? oder schreibs mir per pn oder so dann kann ich dir helfen
Büny :) is offline  
Old 11/13/2011, 17:25   #5800

 
#Chappy's Avatar
 
elite*gold: 0
The Black Market: 288/0/0
Join Date: Jun 2011
Posts: 2,672
Received Thanks: 403
funktioniert die patchclass von Yazzn noch?

Code:
struct tStatus
{
 bool bPatched;
 bool bSaved;
};

template <typename Type>

struct tValues
{
 unsigned long Adr;
 Type OffValue;
 Type OnValue;
};

template <typename Type>

class tMemPatch
{
public:
 tValues<Type> Values;
 tStatus Status;

 tMemPatch( unsigned long /* used unsigned long instead of DWORD -> i don't need to include windows.h */ Adr, Type value )
 {
  Values.Adr = Adr;
  Values.OnValue = value;
 }

 void Patch( )
 {
  if( !Status.bSaved )
  {
   Values.OffValue = *(Type*)Values.Adr;
   Status.bSaved = true;
  }
  else if( !Status.bPatched )
  {
   *(Type*)Values.Adr = Values.OnValue;
   Status.bPatched = true;
  }
 }

 void Restore( )
 {
  if( Status.bSaved && Status.bPatched )
  {
   *(Type*)Values.Adr = Values.OffValue;
   Status.bPatched = false;
  }
 }
};



tMemPatch <float> PatchName( 0xAB844F /* address */, 3 /* value */ );

// to modify the address:
//PatchName.Patch( );

// to restore the old value:
//PatchName.Restore( );
#Chappy is offline  
Old 11/13/2011, 17:35   #5801
 
elite*gold: 0
Join Date: Oct 2011
Posts: 4
Received Thanks: 0
Hallo,
ich suche jmd der sich perfekt mit SourceCodes auskennt da ich mir nen P-server machen will und keine bugs,fehler etc. drin habn möchte.

MFG nameisegal
nameistegal is offline  
Old 11/13/2011, 17:39   #5802
 
ryski1's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 177
Received Thanks: 44
/request Updated Structs for OPK
ryski1 is offline  
Old 11/13/2011, 18:11   #5803
 
.Tiq3reye™'s Avatar
 
elite*gold: 15
Join Date: Apr 2011
Posts: 1,524
Received Thanks: 971
Quote:
Originally Posted by Alienkrieger7z View Post
funktioniert die patchclass von Yazzn noch?

Code:
struct tStatus
{
 bool bPatched;
 bool bSaved;
};

template <typename Type>

struct tValues
{
 unsigned long Adr;
 Type OffValue;
 Type OnValue;
};

template <typename Type>

class tMemPatch
{
public:
 tValues<Type> Values;
 tStatus Status;

 tMemPatch( unsigned long /* used unsigned long instead of DWORD -> i don't need to include windows.h */ Adr, Type value )
 {
  Values.Adr = Adr;
  Values.OnValue = value;
 }

 void Patch( )
 {
  if( !Status.bSaved )
  {
   Values.OffValue = *(Type*)Values.Adr;
   Status.bSaved = true;
  }
  else if( !Status.bPatched )
  {
   *(Type*)Values.Adr = Values.OnValue;
   Status.bPatched = true;
  }
 }

 void Restore( )
 {
  if( Status.bSaved && Status.bPatched )
  {
   *(Type*)Values.Adr = Values.OffValue;
   Status.bPatched = false;
  }
 }
};



tMemPatch <float> PatchName( 0xAB844F /* address */, 3 /* value */ );

// to modify the address:
//PatchName.Patch( );

// to restore the old value:
//PatchName.Restore( );
Teste es aus

Quote:
Originally Posted by ryski1 View Post
/request Updated Structs for OPK
.Tiq3reye™ is offline  
Old 11/13/2011, 21:34   #5804
 
elite*gold: 1
Join Date: Nov 2011
Posts: 283
Received Thanks: 34
Suche ne nomenu stw und wtw Source
.Anonymous' is offline  
Old 11/13/2011, 22:23   #5805
 
elite*gold: 0
Join Date: Apr 2011
Posts: 309
Received Thanks: 343
habe eine 32bit tastatur-source für dinarbots ...

aber leder veruchsachtsie unter 32bit partyprogramm detected(also fremdprogramm)
wie kann ich das fixxen ?
ohne diese billige anti-fremdprogramm source die nix nützt !

ohne der funktion geht der dinarbot perfeckt ...
Tibolus is offline  
Closed Thread


Similar Threads 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:41.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.