Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 17:52

  • 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 08/16/2011, 21:56   #4906
 
tobi260's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 846
Received Thanks: 144
keybd_event('F', 0, 0, 0);
Sleep(10)

richtig?
soll auto f sein,um bombe zu legen
tobi260 is offline  
Old 08/17/2011, 10:37   #4907
 
InstantBlood's Avatar
 
elite*gold: 30
The Black Market: 105/0/1
Join Date: Jun 2011
Posts: 3,335
Received Thanks: 1,356
Quote:
Originally Posted by tobi260 View Post
keybd_event('F', 0, 0, 0);
Sleep(10)

richtig?
soll auto f sein,um bombe zu legen
Das kann man sich wohl denken
InstantBlood is offline  
Old 08/17/2011, 14:39   #4908
 
elite*gold: 0
Join Date: May 2011
Posts: 23
Received Thanks: 0
kann mir jemand die addys von diesem monat geben?bin bereit für thx
siyo_G is offline  
Old 08/17/2011, 16:47   #4909
 
Büny :)'s Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
Quote:
Originally Posted by tobi260 View Post
keybd_event('F', 0, 0, 0);
Sleep(10)

richtig?
soll auto f sein,um bombe zu legen
Wieso fragt ihr immer, statt mal F7 zu drücken und es selber zu testen?
Büny :) is offline  
Thanks
1 User
Old 08/17/2011, 17:52   #4910

 
xxfabbelxx's Avatar
 
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
Quote:
Originally Posted by siyo_G View Post
kann mir jemand die addys von diesem monat geben?bin bereit für thx
Achau mal hier:
xxfabbelxx is offline  
Old 08/17/2011, 18:45   #4911
 
elite*gold: 0
Join Date: Oct 2010
Posts: 1,587
Received Thanks: 151
Hat wer Auto Ready & Start für mich ?
Gelsas is offline  
Old 08/17/2011, 19:00   #4912
 
Dogukan47's Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 1,490
Received Thanks: 196
benutz die SuFu!
Dogukan47 is offline  
Old 08/17/2011, 19:05   #4913
 
elite*gold: 0
Join Date: Oct 2010
Posts: 1,587
Received Thanks: 151
Code:
	if(AS_AutoF == 1)
	{
	keybd_event(0x46,0,0,0);
	Sleep(250);
	}


	if(AS_PDAny==1)
	{
	*(BYTE*) PDANYWHERE_MEM = 0x1;
	}
für AUTO F und pdanywhere müsste so sein richtig ?

Für autoready nichts gefunden -.-
Gelsas is offline  
Old 08/17/2011, 20:22   #4914
 
tobi260's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 846
Received Thanks: 144
wie kann man mausklick auf eine bestimmte position machen bei c++?


////

wieso die fehlermeldungen?
mein code :
Code:
bool       AutoEnter;

if(GetAsyncKeyState(VK_F3) );&1);{
AutoEnter = (!AutoEnter);

if(AutoEnter){
keybd_event(VK_RETURN, 0, 0, 0);
Sleep(10);}

fehler :
Code:
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2059: Syntaxfehler: 'if'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2059: Syntaxfehler: 'Konstante'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2059: Syntaxfehler: ')'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2447: '{': Funktionsheader fehlt - Parameterliste im alten Stil?

wer kann mir helfen?
tobi260 is offline  
Old 08/17/2011, 22:23   #4915
 
elite*gold: 0
Join Date: Aug 2011
Posts: 224
Received Thanks: 262
Code:
bool       AutoEnter;

if(GetAsyncKeyState(VK_F3)&1)
{
AutoEnter = (!AutoEnter);
}
if(AutoEnter)
{
    keybd_event(VK_RETURN, 0, 0, 0);
    Sleep(10);
}
[WR]CyberRazzer is offline  
Thanks
2 Users
Old 08/17/2011, 22:35   #4916
 
tobi260's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 846
Received Thanks: 144
Quote:
Originally Posted by [WR]CyberRazzer View Post
bool AutoEnter;

if(GetAsyncKeyState(VK_F3) )&1)
{
AutoEnter = (!AutoEnter);
}
if(AutoEnter)
{
keybd_event(VK_RETURN, 0, 0, 0);
Sleep(10);
}

ergibt :
Code:
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2059: Syntaxfehler: 'if'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2059: Syntaxfehler: ')'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(27): error C2143: Syntaxfehler: Es fehlt ';' vor '{'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(27): error C2447: '{': Funktionsheader fehlt - Parameterliste im alten Stil?
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(30): error C2059: Syntaxfehler: 'if'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(31): error C2143: Syntaxfehler: Es fehlt ';' vor '{'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(31): error C2447: '{': Funktionsheader fehlt - Parameterliste im alten Stil?
tobi260 is offline  
Old 08/17/2011, 22:36   #4917
 
elite*gold: 0
Join Date: Aug 2011
Posts: 224
Received Thanks: 262
Code:
bool AutoEnter;

if(GetAsyncKeyState(VK_F3)&1)
{
AutoEnter = (!AutoEnter);
}
if(AutoEnter)
{
keybd_event(VK_RETURN, 0, 0, 0);
Sleep(10);
}
[WR]CyberRazzer is offline  
Old 08/17/2011, 22:41   #4918
 
tobi260's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 846
Received Thanks: 144
Quote:
Originally Posted by [WR]CyberRazzer View Post
Code:
bool AutoEnter;

if(GetAsyncKeyState(VK_F3)&1)
{
AutoEnter = (!AutoEnter);
}
if(AutoEnter)
{
keybd_event(VK_RETURN, 0, 0, 0);
Sleep(10);
}
immernoch viele fehler :s
weiß auch nicht warum...
wo muss ich das denn genau in mein code machen?
tobi260 is offline  
Old 08/17/2011, 22:43   #4919
 
elite*gold: 0
Join Date: Aug 2011
Posts: 224
Received Thanks: 262
Code:
void Hacks()
{
    //Code
}
[WR]CyberRazzer is offline  
Old 08/17/2011, 22:45   #4920
 
tobi260's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 846
Received Thanks: 144
hab ich da

Code:
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(26): error C2059: Syntaxfehler: 'if'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(27): error C2143: Syntaxfehler: Es fehlt ';' vor '{'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(27): error C2447: '{': Funktionsheader fehlt - Parameterliste im alten Stil?
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(30): error C2059: Syntaxfehler: 'if'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(31): error C2143: Syntaxfehler: Es fehlt ';' vor '{'
1>c:\users\tobi\documents\visual studio 2010\projects\dinarbot\dinarbot\main.cpp(31): error C2447: '{': Funktionsheader fehlt - Parameterliste im alten Stil?
tobi260 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 17:53.


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.