Register for your free account! | Forgot your password?

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

  • 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 10/25/2011, 15:24   #5551
 
Mircoyee111's Avatar
 
elite*gold: 198
Join Date: Feb 2011
Posts: 1,702
Received Thanks: 160
#Request AntiAFK
Mircoyee111 is offline  
Old 10/25/2011, 15:42   #5552
 
elite*gold: 8
Join Date: Oct 2011
Posts: 656
Received Thanks: 1,895
Quote:
Originally Posted by Mircoyee111 View Post
#Request AntiAFK
Code:
if(AntiAFK)
{
*(float*)(0xB0FEBC)=1;
}
_TradEmArk_ ™ is offline  
Thanks
1 User
Old 10/25/2011, 15:53   #5553
 
Mircoyee111's Avatar
 
elite*gold: 198
Join Date: Feb 2011
Posts: 1,702
Received Thanks: 160
Danke,

die Source ist richtig

€dit:
if(CH_AntiAFK)
{
*(float*)(ADR_AntiAFK)=1;
}

=: error C2059: Syntaxfehler: ')'
Mircoyee111 is offline  
Old 10/25/2011, 16:26   #5554
 
Neqqa™'s Avatar
 
elite*gold: 6
Join Date: Mar 2010
Posts: 1,184
Received Thanks: 834
Code:
if(CH_AntiAFK)
{
*(float*)ADR_AntiAFK=1;
}
Neqqa™ is offline  
Thanks
1 User
Old 10/25/2011, 16:31   #5555
 
elite*gold: 0
Join Date: Sep 2010
Posts: 10,215
Received Thanks: 5,781
Quote:
Originally Posted by .Tiq3reye™ View Post
Code:
if (BONESHOT == 1)
{
*(double*) ADR_BONESHOT = 1235; 
}
if (BONESHOT == 0)
{
*(double*) ADR_BONESHOT = 1.237e3; 
}
ADR_BONESHOT 0x84BAE0

Deine Funktion teilt also Boneshot im if-case den Wert 1235 zu. Im else-case definierst du den Wert als 1235e3. e3 ist eine gängige Schreibweise für ordinale Datentypen mit der die wissenschaftliche Schreibweise von x * 10^n adaptiert wird. Sprich du lässt in einem Fall 1237 und ihm anderen Fall 1,237 * 10^3 = 1,237 * 1000 = 1237 in die Speicherzelle schreiben - wo ist der Sinn?
theitfan1337 is offline  
Thanks
2 Users
Old 10/25/2011, 16:33   #5556
 
Mircoyee111's Avatar
 
elite*gold: 198
Join Date: Feb 2011
Posts: 1,702
Received Thanks: 160
Quote:
Originally Posted by Neqqa™ View Post
Code:
if(CH_AntiAFK)
{
*(float*)ADR_AntiAFK=1;
}

error C2059: Syntaxfehler: '='

Trotzdem #Thanked aufgrund der 'versuchten' Hilfeleistung.
Mircoyee111 is offline  
Old 10/25/2011, 16:57   #5557
 
.Chronos's Avatar
 
elite*gold: 0
Join Date: Oct 2011
Posts: 31
Received Thanks: 23
Quote:
Originally Posted by Mircoyee111 View Post
error C2059: Syntaxfehler: '='

Trotzdem #Thanked aufgrund der 'versuchten' Hilfeleistung.
Du willst einen VIPHack verkaufen ?
Kenne deine Base ansonsten kommst du nicht viel weiter !
.Chronos is offline  
Old 10/25/2011, 17:07   #5558
 
Mircoyee111's Avatar
 
elite*gold: 198
Join Date: Feb 2011
Posts: 1,702
Received Thanks: 160
Ich will kein VIP Hack verkaufen, hab ich nichtvor und werde ich auch (erstmals) nicht.

Ich such halt Hilfe und?
Mircoyee111 is offline  
Old 10/25/2011, 18:41   #5559
 
elite*gold: 26
The Black Market: 288/1/0
Join Date: Dec 2010
Posts: 4,343
Received Thanks: 2,395
all right?
hero9910 is offline  
Old 10/25/2011, 18:46   #5560
 
Neqqa™'s Avatar
 
elite*gold: 6
Join Date: Mar 2010
Posts: 1,184
Received Thanks: 834
@Mircoyee111,

was hast du denn alles "included" in diesem Dokument, wo du diesen Source geaddet hast...
Neqqa™ is offline  
Old 10/25/2011, 22:38   #5561

 
#Chappy's Avatar
 
elite*gold: 0
The Black Market: 288/0/0
Join Date: Jun 2011
Posts: 2,672
Received Thanks: 403
Hey moin moin Community

Hat jemand einen HS bypass für mich?

Mfg ..
#Chappy is offline  
Old 10/26/2011, 11:30   #5562
 
.Tiq3reye™'s Avatar
 
elite*gold: 15
Join Date: Apr 2011
Posts: 1,524
Received Thanks: 971
Code:
{
switch(RUNSPEED)
{
case 0:*(float*)(ADR_RUNSPEED) = 1.5;break;
case 1:*(float*)(ADR_RUNSPEED) = 1.5*2;break;
case 2:*(float*)(ADR_RUNSPEED) = 1.5*3;break;
case 3:*(float*)(ADR_RUNSPEED) = 1.5*4;break;
case 4:*(float*)(ADR_RUNSPEED) = 1.5*5;break;
}
}
Code:
{
switch(ROLLSPEED)
{
case 0:*(float*)(ADR_ROLLSPEED) = 1.75;break;
case 1:*(float*)(ADR_ROLLSPEED) = 1.75*2;break;
case 2:*(float*)(ADR_ROLLSPEED) = 1.75*3;break;
case 3:*(float*)(ADR_ROLLSPEED) = 1.75*4;break;
case 4:*(float*)(ADR_ROLLSPEED) = 1.75*5;break;
}
}
.Tiq3reye™ is offline  
Old 10/26/2011, 14:21   #5563
 
Büny :)'s Avatar
 
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
Code:
/*==========================================================================*/
/*============================WALK TROUGH WALLS=============================*/
/*==========================================================================*/
/*================================CREDITS TO================================*/
/*===================================BÜNY===================================*/
/*==========================================================================*/
Code:
DWORD dwWalkTroughWalls1	= 0x84ACF0;
DWORD dwWalkTroughWalls2	= 0x84ADE0;
Code:
int WalkTroughWalls;
Code:
if(WalkTroughWalls == 1)	// Falling down -> Enabled
{
	*(double*)(dwWalkTroughWalls1) = 0;
	*(double*)(dwWalkTroughWalls2) = 1.000000e-09;
}
else if(WalkTroughWalls == 2)	// Falling down -> Disabled
{
	*(double*)(dwWalkTroughWalls1) = 0;
	*(double*)(dwWalkTroughWalls2) = 1;
}
else				// Walk Trough Walls -> Disabled
{
	*(double*)(dwWalkTroughWalls1) = 0.01;
	*(double*)(dwWalkTroughWalls2) = 1.000000e-09;
}
Credits:
Büny

Edit: Die Addys müsst ihr selber updaten.
Büny :) is offline  
Thanks
2 Users
Old 10/26/2011, 14:51   #5564
 
CyberVeezy :)'s Avatar
 
elite*gold: 1
Join Date: Oct 2011
Posts: 1,117
Received Thanks: 1,520
Ich poste jetzt mal mein Chams
Code:
 if(Enable==1)
{
if(ColorA)
{
if(m_Stride==36 || m_Stride==32)
{
if(ColorA) pDevice->SetRenderState(D3DRS_LIGHTING,false);
if(ColorA) pDevice->SetRenderState(D3DRS_ZENABLE,false);
if(ColorA) pDevice->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
if(ColorA==1){pDevice->SetTexture(0, aRed);}
if(ColorA==2){pDevice->SetTexture(0, aYellow);}
if(ColorA==3){pDevice->SetTexture(0, aOrange);}
if(ColorA==4){pDevice->SetTexture(0, aGreen);}
if(ColorA==5){pDevice->SetTexture(0, aBlue);}
if(ColorA==6){pDevice->SetTexture(0, aPurple);}
if(ColorA==7){pDevice->SetTexture(0, aPink);}
if(ColorA==8){pDevice->SetTexture(0, aBlack);}
if(ColorA==9){pDevice->SetTexture(0, aGrey);}
if(ColorA==10){pDevice->SetTexture(0, aCyan);}
pDrawIndexedPrimitive(pDevice, Type, BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
}
}

if(ColorB)
{
if(m_Stride==36 || m_Stride==32)
{
if(ColorB) pDevice->SetRenderState(D3DRS_LIGHTING, false);
if(ColorB) pDevice->SetRenderState(D3DRS_ZENABLE, true);
if(ColorB) pDevice->SetRenderState(D3DRS_FILLMODE,D3DFILL_SOLID);
if(ColorB==1){pDevice->SetTexture(0, aRed);}
if(ColorB==2){pDevice->SetTexture(0, aYellow);}
if(ColorB==3){pDevice->SetTexture(0, aOrange);}
if(ColorB==4){pDevice->SetTexture(0, aGreen);}
if(ColorB==5){pDevice->SetTexture(0, aBlue);}
if(ColorB==6){pDevice->SetTexture(0, aPurple);}
if(ColorB==7){pDevice->SetTexture(0, aPink);}
if(ColorB==8){pDevice->SetTexture(0, aBlack);}
if(ColorB==9){pDevice->SetTexture(0, aGrey);}
if(ColorB==10){pDevice->SetTexture(0, aCyan);}
}
}
}
CyberVeezy :) is offline  
Old 10/26/2011, 15:10   #5565
 
elite*gold: 26
The Black Market: 288/1/0
Join Date: Dec 2010
Posts: 4,343
Received Thanks: 2,395
Quote:
Originally Posted by CyberVeezy :) View Post
[CENTER] Ich poste jetzt mal mein Chams
brauch man dafür akktuelle detour ?

Code:
 { DWORD dwSrvrPtr = *(DWORD*)ADR_SERVERPOINTER;
if(dwSrvrPtr != 0)
  
if(Slot5){*(long*)(dwSrvrPtr+OFS_Slot5)=1;}
if(Slot6){*(long*)(dwSrvrPtr+OFS_Slot6)=1;}
if(Slot7){*(long*)(dwSrvrPtr+OFS_Slot7)=1;}
if(Slot8){*(long*)(dwSrvrPtr+OFS_Slot8)=1;}
 }
kann mal eine gucken was mit meinem Slot stuff los ist??ß geht nicht -.-

#define OFS_Slot5 0x00102B4//26.10
#define OFS_Slot6 0x00102B5//26.10
#define OFS_Slot7 0x00102B6//26.10
#define OFS_Slot8 0x00102B7 //26.10
hero9910 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:56.


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.