|
You last visited: Today at 20:05
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/18/2011, 12:31
|
#3196
|
elite*gold: 297
Join Date: Dec 2010
Posts: 1,129
Received Thanks: 1,687
|
bool asd;
while( 1 ) {
if( GetAsyncKeyState(VK_F8) )
asd = !asd;
if( asd ) {
// do functions
}
Sleep(30);
}
|
|
|
04/18/2011, 12:43
|
#3197
|
elite*gold: 0
Join Date: Jan 2011
Posts: 271
Received Thanks: 801
|
Quote:
Originally Posted by ~ r a z e r _
bool asd;
while( 1 ) {
if( GetAsyncKeyState(VK_F8) )
asd = !asd;
if( asd ) {
// do functions
}
Sleep(30);
}
|
oder
while(1) {
if(GetKeyState(VK_F8)>0){
// do functions
}
}
|
|
|
04/18/2011, 13:47
|
#3198
|
elite*gold: 0
Join Date: Apr 2011
Posts: 68
Received Thanks: 23
|
Quote:
Originally Posted by ~ r a z e r _
bool asd;
while( 1 ) {
if( GetAsyncKeyState(VK_F8) )
asd = !asd;
if( asd ) {
// do functions
}
Sleep(30);
}
|
Quote:
Originally Posted by Yazzn˜
oder
while(1) {
if(GetKeyState(VK_F8)>0){
// do functions
}
}
|
Danke euch beiden 
Probiere mal erst Yazzn seine source :P
Habt beide ein THX :P
|
|
|
04/18/2011, 13:48
|
#3199
|
elite*gold: 498
Join Date: Nov 2010
Posts: 1,373
Received Thanks: 194
|
braucht ihr jetzt meinen code???
oder könnt ihr mir vll den fehler korigieren???
|
|
|
04/18/2011, 13:58
|
#3200
|
elite*gold: 6
Join Date: Mar 2010
Posts: 1,184
Received Thanks: 834
|
Quote:
braucht ihr jetzt meinen code???
oder könnt ihr mir vll den fehler korigieren???
|
drück in C++ mal ALT+F7
dann dort .dll auswählen
|
|
|
04/18/2011, 17:34
|
#3201
|
elite*gold: 0
Join Date: Apr 2011
Posts: 68
Received Thanks: 23
|
Quote:
Originally Posted by Yazzn˜
oder
while(1) {
if(GetKeyState(VK_F8)>0){
// do functions
}
}
|
Hast den sleep nicht eingebaut?
void lala()
{
while(1) {
if(GetKeyState(VK_F8)>0){
funktion
}
Sleep(30);
}
}
Ist das so richtig?
|
|
|
04/18/2011, 20:08
|
#3202
|
elite*gold: 0
Join Date: Mar 2011
Posts: 263
Received Thanks: 291
|
Bio hast glaube ich recht sonst überlastet cpu.
|
|
|
04/18/2011, 20:49
|
#3203
|
elite*gold: 0
Join Date: Apr 2011
Posts: 68
Received Thanks: 23
|
Quote:
Originally Posted by CyberRazzor
Bio hast glaube ich recht sonst überlastet cpu.
|
Der hack startet dadruch sonst überhaupt nicht o,O
€: Es geht danach leider nicht mehr aus 
hier der code:
Code:
void GlassWalls()
{
while(1)
{
if(GetKeyState(VK_DELETE)>0)
{
*(int*)ADR_GLASSWALLS = 4;}Sleep(30);
}
}
Dann ein extra HackThread,ohne sleep.
void HackThreat()
{
for(;;)
{
GlassWalls();
}
}
Weiß einer wieso?
|
|
|
04/18/2011, 21:22
|
#3204
|
elite*gold: 0
Join Date: Jan 2011
Posts: 349
Received Thanks: 431
|
€Bio....
hier mal eine andere Methode:
Code:
bool Blabla = false;
void Bubi()
{
if(GetAsyncKeyState(VK_Dings)&1)
{
Blabla = Blabla==false
}
if(Blabla==true)
{
//funk
if(GetAsyncKeyState(VK_Dings)&1)
{
Blabla = Blabla==false
}
}
}
kann sein das ich i was verkehrd gemacht habe bin per I Pod drin ....
|
|
|
04/18/2011, 22:11
|
#3205
|
elite*gold: 0
Join Date: Mar 2011
Posts: 263
Received Thanks: 291
|
bool GlassWallPatch = false;
void GlassWallsFunc()
{
if(GetAsyncKeyState(VK_F12)&1)
{
*(LONG*)(ADR_GLASSWALLS) = 0;
GlassWallPatch = GlassWallPatch==false
}
if(GlassWallPatch==true)
{
if(GetAsyncKeyState(VK_F12)&1)
{
*(LONG*)(ADR_GLASSWALLS) = 4;
GlassWallPatch = GlassWallPatch==false
}
}
}
VOID HACKTHREAD()
{
for ( ; ; )
{
GlassWallsFunc();
Sleep(120);
}
}
|
|
|
04/19/2011, 01:41
|
#3206
|
elite*gold: 0
Join Date: Dec 2010
Posts: 100
Received Thanks: 32
|
unnötig
|
|
|
04/19/2011, 09:10
|
#3207
|
elite*gold: 0
Join Date: Apr 2011
Posts: 68
Received Thanks: 23
|
Quote:
Originally Posted by CyberRazzor
bool GlassWallPatch = false;
void GlassWallsFunc()
{
if(GetAsyncKeyState(VK_F12)&1)
{
*(LONG*)(ADR_GLASSWALLS) = 0;
GlassWallPatch = GlassWallPatch==false
}
if(GlassWallPatch==true)
{
if(GetAsyncKeyState(VK_F12)&1)
{
*(LONG*)(ADR_GLASSWALLS) = 4;
GlassWallPatch = GlassWallPatch==false
}
}
}
VOID HACKTHREAD()
{
for ( ; ; )
{
GlassWallsFunc();
Sleep(120);
}
}
|
Quote:
Originally Posted by FardAlterEgo
unnötig
|
@CyberRazzer
Könnte man das nicht durch noch ein Bool ohne einen Off Wert machen?
In diesem Fall 0.
@Fard
Dann mach es besser^^
|
|
|
04/19/2011, 09:17
|
#3208
|
elite*gold: 0
Join Date: Jan 2011
Posts: 271
Received Thanks: 801
|
oder noch besser:
Quote:
Originally Posted by ~ r a z e r _
bool asd;
while( 1 ) {
if( GetAsyncKeyState(VK_F8) )
asd = !asd;
if( asd ) {
// do functions
}
Sleep(30);
}
|
|
|
|
04/19/2011, 10:44
|
#3209
|
elite*gold: 0
Join Date: Nov 2010
Posts: 875
Received Thanks: 206
|
Quote:
Originally Posted by bl4ck0ps7
Eine Frage:
Kann mir wer sagen wie ich die VC++ verzeichnisse richtig angeben kann?
(wegen "d3dx9.h")
Die Methode über Extras->Optionen->"Projekte und Projektmappen"->"VC++ Verzeichnisse" ist veraltet! (Steht da zumindest).
Pls Help!
MFG
|
wir brauchen keine neuen c&p!!!
|
|
|
04/19/2011, 11:03
|
#3210
|
elite*gold: 0
Join Date: Jan 2011
Posts: 349
Received Thanks: 431
|
Quote:
Originally Posted by Norbert8
wir brauchen keine neuen c&p!!!
|
reg dich mal ab kleiner
macht eh keien unterschied mehr ........
und viele gute coder haben klein angefangen
|
|
|
 |
|
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:06.
|
|