Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 14:43

  • 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 04/24/2011, 19:19   #3271
 
•~•Pr0Sk1ll•~•'s Avatar
 
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
Fabbel Off bytes suchste in dumpwr mit ollydbg
da gibst Addy ein drückst ne taste F? unddann kommen se
@Sub NO! i only give my sources to Friends or trusted People
u arent my Friend and i dont trust u so u dont
get mysource
•~•Pr0Sk1ll•~• is offline  
Old 04/24/2011, 19:26   #3272

 
xxfabbelxx's Avatar
 
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
wtf are u translating everything into english ?!

I already knew how to search off bytes ;o

May OnOps will be enough too for qplant/defuse?
xxfabbelxx is offline  
Old 04/24/2011, 19:30   #3273
 
•~•Pr0Sk1ll•~•'s Avatar
 
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
u cant use nops for evrything
u cant use it for QP/QD
•~•Pr0Sk1ll•~• is offline  
Old 04/24/2011, 19:44   #3274
 
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
Quote:
Originally Posted by •~•Pr0Sk1ll•~• View Post
u cant use nops for evrything
u cant use it for QP/QD
doch eig schon


jedoch kann es dann schneller crashen als wenn man das mit den richtigen on bytes macht
Angel-Piece is offline  
Old 04/24/2011, 21:59   #3275
 
elite*gold: 0
Join Date: Mar 2011
Posts: 263
Received Thanks: 291
use patch methode
CyberRazzor is offline  
Old 04/25/2011, 10:18   #3276
 
elite*gold: 0
Join Date: Nov 2010
Posts: 2,406
Received Thanks: 2,917
Move menu: (Mouse+Arrow keys)

Code:
void D3DMenu::Nav(void)
{
  if (GetAsyncKeyState(VK_INSERT)&1) visible=(!visible);

  if (!visible) 
	  return;

  if(AL_MoveMenu==1 && GetAsyncKeyState(VK_DELETE)) {
	if (GetAsyncKeyState(VK_UP)   &1)  y-=10; 
	if (GetAsyncKeyState(VK_DOWN) &1)  y+=10;
	if (GetAsyncKeyState(VK_LEFT) &1)  x-=10;
	if (GetAsyncKeyState(VK_RIGHT)&1)  x+=10;
  } else {
    if (GetAsyncKeyState(VK_UP)&1) {
		do {
			cur--;
			if (cur<0)  cur=noitems-1;
		} while (MENU[cur]->typ==MENUTEXT);	
	} else if (GetAsyncKeyState(VK_DOWN)&1) {
		do {
			cur++;
		    if (cur==noitems) cur=0;
		} while (MENU[cur]->typ==MENUTEXT);
	} else  {
		POINT mpos;
					GetCursorPos(&mpos);
			ScreenToClient(GetForegroundWindow(),&mpos);
		int pos=cur;
		int dir=0;

		if (GetAsyncKeyState(VK_LEFT )&1 && MENU[cur]->var && *MENU[cur]->var > 0) 
		{ 
		dir=-1;
		}
		
		if (GetAsyncKeyState(VK_RIGHT)&1 && MENU[cur]->var && *MENU[cur]->var < (MENU[cur]->maxval-1) )
		{ 
		dir=1;
		}

		if(AL_MoveMenu==2)
		{
			x =mpos.x;
			y =mpos.y;
		}

		if (dir==0 && (mouse_enabled==1)) {
			m_x=mpos.x;
			m_y=mpos.y;
			m_lm	= GetAsyncKeyState(VK_LBUTTON )&1;
			m_rm	= GetAsyncKeyState(VK_RBUTTON )&1;
            
			if((m_lm || m_rm) && (pos=FindItem())!= -1)
			{
				if (pos!=999) {
					if (m_rm && *MENU[pos]->var>0) dir=-1;
					if (m_lm && *MENU[pos]->var<(MENU[pos]->maxval-1)) dir=1;
				} else if (m_rm) {
					moving=(!moving);
					dx=m_x - x;
					dy=m_y - y;
				}
			}
		}
		if (dir) {
			*MENU[pos]->var += dir;
			if (MENU[pos]->typ==MENUFOLDER) noitems=0;
			if (MENU[pos]->typ==SUBFOLDER) noitems=0;
		}
	}
  }
}
_TradEmArk_˜ is offline  
Old 04/25/2011, 11:44   #3277
 
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
Quote:
Originally Posted by _TradEmArk_˜ View Post
Move menu: (Mouse+Arrow keys)

Code:
void D3DMenu::Nav(void)
{
  if (GetAsyncKeyState(VK_INSERT)&1) visible=(!visible);

  if (!visible) 
	  return;

  if(AL_MoveMenu==1 && GetAsyncKeyState(VK_DELETE)) {
	if (GetAsyncKeyState(VK_UP)   &1)  y-=10; 
	if (GetAsyncKeyState(VK_DOWN) &1)  y+=10;
	if (GetAsyncKeyState(VK_LEFT) &1)  x-=10;
	if (GetAsyncKeyState(VK_RIGHT)&1)  x+=10;
  } else {
    if (GetAsyncKeyState(VK_UP)&1) {
		do {
			cur--;
			if (cur<0)  cur=noitems-1;
		} while (MENU[cur]->typ==MENUTEXT);	
	} else if (GetAsyncKeyState(VK_DOWN)&1) {
		do {
			cur++;
		    if (cur==noitems) cur=0;
		} while (MENU[cur]->typ==MENUTEXT);
	} else  {
		POINT mpos;
					GetCursorPos(&mpos);
			ScreenToClient(GetForegroundWindow(),&mpos);
		int pos=cur;
		int dir=0;

		if (GetAsyncKeyState(VK_LEFT )&1 && MENU[cur]->var && *MENU[cur]->var > 0) 
		{ 
		dir=-1;
		}
		
		if (GetAsyncKeyState(VK_RIGHT)&1 && MENU[cur]->var && *MENU[cur]->var < (MENU[cur]->maxval-1) )
		{ 
		dir=1;
		}

		if(AL_MoveMenu==2)
		{
			x =mpos.x;
			y =mpos.y;
		}

		if (dir==0 && (mouse_enabled==1)) {
			m_x=mpos.x;
			m_y=mpos.y;
			m_lm	= GetAsyncKeyState(VK_LBUTTON )&1;
			m_rm	= GetAsyncKeyState(VK_RBUTTON )&1;
            
			if((m_lm || m_rm) && (pos=FindItem())!= -1)
			{
				if (pos!=999) {
					if (m_rm && *MENU[pos]->var>0) dir=-1;
					if (m_lm && *MENU[pos]->var<(MENU[pos]->maxval-1)) dir=1;
				} else if (m_rm) {
					moving=(!moving);
					dx=m_x - x;
					dy=m_y - y;
				}
			}
		}
		if (dir) {
			*MENU[pos]->var += dir;
			if (MENU[pos]->typ==MENUFOLDER) noitems=0;
			if (MENU[pos]->typ==SUBFOLDER) noitems=0;
		}
	}
  }
}

credits to willi27


das ist 1 zu 1 von ihm übernommen nur musik weg gemacht + es nach der eigenen base verändert
Angel-Piece is offline  
Old 04/25/2011, 11:46   #3278
 
•~•Pr0Sk1ll•~•'s Avatar
 
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
C&P von Anksel
ich kenn Anksel er macht bei seinen var
AL_blabla
Code:
if(AL_MoveMenu==1
geb ent alles für deins aus

AntiSpam:
Schickt mir wer CLocal?
•~•Pr0Sk1ll•~• is offline  
Old 04/25/2011, 12:02   #3279
 
elite*gold: 0
Join Date: Jan 2011
Posts: 271
Received Thanks: 801
Quote:
Originally Posted by Angel-Piece View Post
credits to willi27


das ist 1 zu 1 von ihm übernommen nur musik weg gemacht + es nach der eigenen base verändert
n, credits für die move funktion to hans221....
Yazzn˜ is offline  
Thanks
2 Users
Old 04/25/2011, 12:43   #3280
 
elite*gold: 0
Join Date: Mar 2011
Posts: 263
Received Thanks: 291
Trade, lass dir den schönen Tag nicht von Kopier und Paste noobs verderben.
CyberRazzor is offline  
Thanks
1 User
Old 04/25/2011, 12:52   #3281
 
elite*gold: 0
Join Date: Jan 2011
Posts: 271
Received Thanks: 801
lol...
c&p von anksel?! hahahah
anksel ändert doch eh nur die bezeichner und fühlt sich so voll b o doppel z like
Yazzn˜ is offline  
Thanks
2 Users
Old 04/25/2011, 12:52   #3282


 
sirosix's Avatar
 
elite*gold: 915
Join Date: Mar 2010
Posts: 1,551
Received Thanks: 30,190
Quote:
Originally Posted by CyberRazzor View Post
Trade, lass dir den schönen Tag nicht von Kopier und Paste noobs verderben.
ich verstehe nicht was das soll, hin und her geflame wegen copy und paste.

man sollte dazu stehen und nicht andere damit flamen wenn man selbst nicht besser ist.
sirosix is offline  
Thanks
13 Users
Old 04/25/2011, 13:23   #3283
 
•~•Pr0Sk1ll•~•'s Avatar
 
elite*gold: 1
Join Date: Nov 2008
Posts: 576
Received Thanks: 166
1.Trade kk sry tdm nächstes ma dann Creditz
2.Cyber o.0 seid wann nennst DU mich C&P...
•~•Pr0Sk1ll•~• is offline  
Old 04/25/2011, 17:38   #3284
 
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
Quote:
Originally Posted by Yazzn˜ View Post
n, credits für die move funktion to hans221....
ja ka kann sein das war jedenfals in der base die willi mal gepostet hatte drin
Angel-Piece is offline  
Old 04/25/2011, 17:54   #3285
 
elite*gold: 0
Join Date: Jan 2009
Posts: 14
Received Thanks: 1
who got for me some patterns
sander70 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 14:45.


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.