Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 23:41

  • 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 01/07/2011, 23:48   #1066
 
elite*gold: 0
Join Date: Dec 2010
Posts: 60
Received Thanks: 12
hey was kommt in d3dx9 ( d3d9 base herein ) ?
o0lala0o Coding is offline  
Old 01/08/2011, 01:18   #1067
 
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
#include <windows.h>
xD
CyberRazzer is offline  
Old 01/08/2011, 03:26   #1068
 
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
Quote:
Mach das bitte mit Stimme

Mit Textdokument versteht man das fast nicht.
Ich habs nicht gemacht steht oben
*Pumio* is offline  
Old 01/08/2011, 11:36   #1069
 
Norbert8's Avatar
 
elite*gold: 0
Join Date: Nov 2010
Posts: 875
Received Thanks: 206
ShellExecuteA(NULL,"Open","http://www.elitepvpers.com/forum/warrock-hacks-bots-cheats-exploits/",NULL,NULL,1);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Hacks , 0, 0, 0);
break;
case 2:
break;
}
return true;
}

// Was ist in diesen Code falsch??
Norbert8 is offline  
Old 01/08/2011, 11:46   #1070
 
kilgut12's Avatar
 
elite*gold: 0
Join Date: May 2010
Posts: 423
Received Thanks: 285
hat jemand aktuelle virtual Jump addy pls posten oder PN !!!
kilgut12 is offline  
Old 01/08/2011, 15:01   #1071
 
Spin™'s Avatar
 
elite*gold: 170
Join Date: Jul 2010
Posts: 4,701
Received Thanks: 3,093
Ich hab eine Frage, ich habe in meinem No Menu Hack Glasswalls rein gepackt.
Es soll, wenn ich die Taste "7" auf dem Numpad drücke, erscheinen - das tut es auch, doch wenn ich es mit der Taste "7" auf dem Numpad wegdrücken möchte, passiert nichts :s
Bitte helft mir
Hier der Code:
Quote:
void glasswalls ()
{
if(GetAsyncKeyState(VK_NUMPAD7) &1)
*(int*)ADR_GLASSWALLS = 4;
}
Spin™ is offline  
Old 01/08/2011, 15:47   #1072
 
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
Versuchs mal so
Quote:
void glasswalls ()
{
if(GetAsyncKeyState(VK_NUMPAD7) &1)
{
*(int*)ADR_GLASSWALLS = 4;
}
if(GetAsyncKeyState(VK_NUMPAD6) &1)
{
*(int*)ADR_GLASSWALLS = 0;
}
}
Wie kann ich in meinen Rehook den optionalen Sleep wert ermitteln??

woran merke ich das der crash an der detour oder am rehook mliegt??
joki4444 is offline  
Thanks
1 User
Old 01/08/2011, 15:57   #1073
 
Spin™'s Avatar
 
elite*gold: 170
Join Date: Jul 2010
Posts: 4,701
Received Thanks: 3,093
Quote:
Originally Posted by joki4444 View Post
Versuchs mal so


Wie kann ich in meinen Rehook den optionalen Sleep wert ermitteln??

woran merke ich das der crash an der detour oder am rehook mliegt??
Funktioniert immer noch nicht :s
Lg.
Spin™ is offline  
Old 01/08/2011, 16:07   #1074
 
elite*gold: 0
Join Date: Apr 2010
Posts: 101
Received Thanks: 13
Versuchs mal so:
PHP Code:
void Glasswalls(){
static 
bool glasswalls=false;
if(
GetAsyncKeyState(VK_NUMPAD7)&1){glasswalls=!glasswalls;}
if(
glasswalls){*(int*)ADR_GLASSWALLS 4;}

dsgreha is offline  
Old 01/08/2011, 16:22   #1075
 
Spin™'s Avatar
 
elite*gold: 170
Join Date: Jul 2010
Posts: 4,701
Received Thanks: 3,093
Quote:
Originally Posted by dsgreha View Post
Versuchs mal so:
PHP Code:
void Glasswalls(){
static 
bool glasswalls=false;
if(
GetAsyncKeyState(VK_NUMPAD7)&1){glasswalls=!glasswalls;}
if(
glasswalls){*(int*)ADR_GLASSWALLS 4;}

Funzt immer noch nicht :s
Also wenn ich dann auf Numpad 7 drücke geht Glasswall an, aber nicht mehr aus
Lg.
Spin™ is offline  
Old 01/08/2011, 16:26   #1076
 
elite*gold: 0
Join Date: Mar 2010
Posts: 483
Received Thanks: 96
void D()
{
if(GetAsyncKeyState(VK_NUMPAD8) &1)
{
*(int*)Glasswall = 4;
}
if(GetAsyncKeyState(VK_NUMPAD9) &1)
{
*(int*)Glasswall = 0;
}
}

also indiesen fall NUMPAD8 anund NUMPAD 9aus
joki4444 is offline  
Thanks
1 User
Old 01/08/2011, 16:30   #1077
 
kilgut12's Avatar
 
elite*gold: 0
Join Date: May 2010
Posts: 423
Received Thanks: 285
WER HAT VIRTUAL JUMP PLS POSTEN ODER PN ME!!!
kilgut12 is offline  
Old 01/08/2011, 16:51   #1078
 
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
*(FLOAT*)(VIRTUALJUMPKACKY) = 9000;
CyberRazzer is offline  
Old 01/08/2011, 16:51   #1079
 
elite*gold: 0
Join Date: Dec 2010
Posts: 17
Received Thanks: 14
Global definieren:

Code:
bool glasswalls;
@MainThread or whaat ever:

Code:
if(GetAsyncKeyState(VK_F8)&1)
{
	glasswalls = !glasswalls;
}

if(glasswalls)
	*(int*)ADR_GLASSWALLS = 4;
else
	*(int*)ADR_GLASSWALLS = 0;
.FacT is offline  
Thanks
3 Users
Old 01/08/2011, 16:58   #1080
 
Spin™'s Avatar
 
elite*gold: 170
Join Date: Jul 2010
Posts: 4,701
Received Thanks: 3,093
Quote:
Originally Posted by joki4444 View Post
void D()
{
if(GetAsyncKeyState(VK_NUMPAD8) &1)
{
*(int*)Glasswall = 4;
}
if(GetAsyncKeyState(VK_NUMPAD9) &1)
{
*(int*)Glasswall = 0;
}
}

also indiesen fall NUMPAD8 anund NUMPAD 9aus
Das kann ich auch, aber ich will ja dass es auf 7 angeht und auf 7 wieder ausgeht
Trotzdem dankeschön für deine Mühe
Lg.

Quote:
Originally Posted by .FacT View Post
Global definieren:

Code:
bool glasswalls;
@MainThread or whaat ever:

Code:
if(GetAsyncKeyState(VK_F8)&1)
{
	glasswalls = !glasswalls;
}

if(glasswalls)
	*(int*)ADR_GLASSWALLS = 4;
else
	*(int*)ADR_GLASSWALLS = 0;
Kommt ein Syntaxfehler, etwas mit der if else Regel da
Genauer gesagt:
1>c:\users\robin\documents\visual studio 2008\projects\no menu\no menu\main.cpp(50) : error C2059: Syntaxfehler: 'if'
1>c:\users\robin\documents\visual studio 2008\projects\no menu\no menu\main.cpp(51) : error C2447: '{': Funktionsheader fehlt - Parameterliste im alten Stil?
1>c:\users\robin\documents\visual studio 2008\projects\no menu\no menu\main.cpp(55) : error C2059: Syntaxfehler: 'if'
1>c:\users\robin\documents\visual studio 2008\projects\no menu\no menu\main.cpp(57) : error C2059: Syntaxfehler: 'else'
Spin™ 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 23:42.


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.