Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock
You last visited: Today at 09:13

  • 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 11/03/2011, 18:50   #5701
 
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
ich benutze kein Menü das ist ein NoMenu DinarBot :/
32 und 64 Bit :&

Ohne DinarBot kommt die meldung ja nicht
*Pumio* is offline  
Old 11/03/2011, 18:52   #5702
 
elite*gold: 0
Join Date: Oct 2011
Posts: 233
Received Thanks: 80
Quote:
Originally Posted by *Pumio* View Post
ich benutze kein Menu das ist ein NoMenu DinarBot :/
FAILED
Sorry, jetzt habe ich einen lachflash und weiß nicht weiter
SubZerom|_ is offline  
Old 11/03/2011, 19:30   #5703
 
Dogukan47's Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 1,490
Received Thanks: 196
Quote:
Originally Posted by *Pumio* View Post
ich benutze kein Menü das ist ein NoMenu DinarBot :/
32 und 64 Bit :&

Ohne DinarBot kommt die meldung ja nicht
was hast du für funktionen drinne selfkill denke ich dein auto start mit mouseklick oder addys denn bei mouseklick ist das bei mir auch so und auto enter?
Dogukan47 is offline  
Old 11/03/2011, 19:51   #5704
 
elite*gold: 0
Join Date: Mar 2008
Posts: 213
Received Thanks: 348
Here my AllServer Source:
Code:
void *DetJmp(BYTE *src, const BYTE *dst, const int len) 
{
 BYTE *jmp =(BYTE*)malloc(len+5);
 DWORD dwBack;

 VirtualProtect(src, len, PAGE_READWRITE, &dwBack);
 memcpy(jmp, src, len); 
 jmp += len;
 jmp[0] = 0xE9;
 *(DWORD*)(jmp+1) =(DWORD)(src+len - jmp) - 5;

 src[0] = 0xE9;
 *(DWORD*)(src+1) =(DWORD)(dst - src) - 5;
 for(int i=5; i<len; i++) src[i] = 0x90;
 VirtualProtect(src, len, dwBack, &dwBack);

 return(jmp-len);
}

int    URLgetpage(char *link, char *buffer, int maxsize)
{
  HINTERNET hSession;  
  HINTERNET hURL;
  DWORD dwBYTEsRead;
  int   ok;

  ok=0;
  buffer[0]=0;
  hSession = InternetOpen(                         // Make internet connection.
                  "Microsoft Internet Explorer",   // agent
                  INTERNET_OPEN_TYPE_PRECONFIG,    // access
                  NULL, NULL, 0);                  // defaults
  if (hSession) {
      hURL = InternetOpenUrl(                 // Make connection to desired page.
             hSession,                        // session handle
             link,                             // URL to access
             NULL, 0, 0, 0);                 // defaults
      if (hURL) {
          // Read page into memory buffer.
          InternetReadFile(
                hURL,                // handle to URL
                (LPSTR)buffer,       // pointer to buffer
                (DWORD)maxsize,      // size of buffer
                &dwBYTEsRead);       // pointer to var to hold return value

          // Close down connections.
          InternetCloseHandle(hURL);
          buffer[dwBYTEsRead]=0;     // end string
          ok=(int)dwBYTEsRead;
      }

      InternetCloseHandle(hSession);
  }
  return ok;
}

char *Servers = new char[1512];

char *GetServers ()
{
	 char allserverurl[256];
	 sprintf(allserverurl,"http://wr3ngine.net/WrServer/list.php?sho=1");
	 UrlGetPage( allserverurl,Servers,1512);	
	 return Servers;
}

DWORD JumpServer = ADR_SERVERJUMP;

__declspec(naked)void InlineAsm_AllServers()
{
	GetServers();
	__asm
	{
mov dword ptr ds:[ADR_SERVER],18h
mov eax,Servers
mov [ebp+1004h-1020h], eax
cmp dword ptr ds: [ADR_SERVER],0
jmp [JumpServer]
	}
}

if(AllServer == 1)
{
DetJmp((BYTE*)ADR_ALLSERVER,(BYTE*)InlineAsm_AllServers,5);
}
if(AllServer == 0)
{
Memcpy((void*)ADR_ALLSERVER,(PBYTE)"\x83\x3D\x08\x23\xA2\x00\x00",7);
}

#define ADR_ALLSERVER 0x004AD19D//updated
#define ADR_SERVERJUMP (ADR_ALLSERVER  + 0x7)//updated
#define ADR_SERVER 0x00A22308//updated
if there are errors post them please!

Credits:
Croner (Detjmp and UrlGetPage i think)
Wr3ngine (for using their Serverlist)
Bananegel
bananegel is offline  
Thanks
1 User
Old 11/03/2011, 20:05   #5705
 
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
Quote:
was hast du für funktionen drinne selfkill denke ich dein auto start mit mouseklick oder addys denn bei mouseklick ist das bei mir auch so und auto enter?
AutoStart F5 , AutoEnter , SelfKill funkt alles für 32 bit blos wie gesagt nach 4 runden fremd Programm erkant . Disconectet from Server

Und es ist von Angle-Pice die 32Bit Source
*Pumio* is offline  
Old 11/03/2011, 20:08   #5706
 
Dogukan47's Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 1,490
Received Thanks: 196
Quote:
Originally Posted by bananegel View Post
Here my AllServer Source:
Code:
void *DetJmp(BYTE *src, const BYTE *dst, const int len) 
{
 BYTE *jmp =(BYTE*)malloc(len+5);
 DWORD dwBack;

 VirtualProtect(src, len, PAGE_READWRITE, &dwBack);
 memcpy(jmp, src, len); 
 jmp += len;
 jmp[0] = 0xE9;
 *(DWORD*)(jmp+1) =(DWORD)(src+len - jmp) - 5;

 src[0] = 0xE9;
 *(DWORD*)(src+1) =(DWORD)(dst - src) - 5;
 for(int i=5; i<len; i++) src[i] = 0x90;
 VirtualProtect(src, len, dwBack, &dwBack);

 return(jmp-len);
}

int    URLgetpage(char *link, char *buffer, int maxsize)
{
  HINTERNET hSession;  
  HINTERNET hURL;
  DWORD dwBYTEsRead;
  int   ok;

  ok=0;
  buffer[0]=0;
  hSession = InternetOpen(                         // Make internet connection.
                  "Microsoft Internet Explorer",   // agent
                  INTERNET_OPEN_TYPE_PRECONFIG,    // access
                  NULL, NULL, 0);                  // defaults
  if (hSession) {
      hURL = InternetOpenUrl(                 // Make connection to desired page.
             hSession,                        // session handle
             link,                             // URL to access
             NULL, 0, 0, 0);                 // defaults
      if (hURL) {
          // Read page into memory buffer.
          InternetReadFile(
                hURL,                // handle to URL
                (LPSTR)buffer,       // pointer to buffer
                (DWORD)maxsize,      // size of buffer
                &dwBYTEsRead);       // pointer to var to hold return value

          // Close down connections.
          InternetCloseHandle(hURL);
          buffer[dwBYTEsRead]=0;     // end string
          ok=(int)dwBYTEsRead;
      }

      InternetCloseHandle(hSession);
  }
  return ok;
}

char *Servers = new char[1512];

char *GetServers ()
{
	 char allserverurl[256];
	 sprintf(allserverurl,"http://wr3ngine.net/WrServer/list.php?sho=1");
	 UrlGetPage( allserverurl,Servers,1512);	
	 return Servers;
}

DWORD JumpServer = ADR_SERVERJUMP;

__declspec(naked)void InlineAsm_AllServers()
{
	GetServers();
	__asm
	{
mov dword ptr ds:[ADR_SERVER],18h
mov eax,Servers
mov [ebp+1004h-1020h], eax
cmp dword ptr ds: [ADR_SERVER],0
jmp [JumpServer]
	}
}

if(AllServer == 1)
{
DetJmp((BYTE*)ADR_ALLSERVER,(BYTE*)InlineAsm_AllServers,5);
}
if(AllServer == 0)
{
Memcpy((void*)ADR_ALLSERVER,(PBYTE)"\x83\x3D\x08\x23\xA2\x00\x00",7);
}

#define ADR_ALLSERVER 0x004AD19D//updated
#define ADR_SERVERJUMP (ADR_ALLSERVER  + 0x7)//updated
#define ADR_SERVER 0x00A22308//updated
if there are errors post them please!

Credits:
Croner (Detjmp and UrlGetPage i think)
Wr3ngine (for using their Serverlist)
Bananegel
asm bypass needed?
Dogukan47 is offline  
Old 11/03/2011, 20:13   #5707
 
elite*gold: 0
Join Date: Mar 2008
Posts: 213
Received Thanks: 348
Figure it out yourself?
bananegel is offline  
Old 11/03/2011, 20:25   #5708
 
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
Quote:
Originally Posted by Dogukan47 View Post
asm bypass needed?
ja & nein es wird irgend wann crashen so wie jedes asm zeug
Angel-Piece is offline  
Thanks
1 User
Old 11/03/2011, 21:18   #5709
 
Dogukan47's Avatar
 
elite*gold: 1
Join Date: May 2011
Posts: 1,490
Received Thanks: 196
Quote:
Originally Posted by Angel-Piece View Post
ja & nein es wird irgend wann crashen so wie jedes asm zeug
danke
Dogukan47 is offline  
Old 11/03/2011, 22:15   #5710
 
elite*gold: 0
Join Date: Oct 2011
Posts: 23
Received Thanks: 1
I need Auto Ready/Start...
Please working with Addys... It were very nice! [32bit+64bit]
Wamba123123 is offline  
Old 11/04/2011, 22:12   #5711
 
.Chronos's Avatar
 
elite*gold: 0
Join Date: Oct 2011
Posts: 31
Received Thanks: 23
Code:
if(Prone == 1)
 {
if(GetAsyncKeyState('C'))
 {
*(float*)(ADR_PRONE) = 3.0F;
}
}

You Need Addy !

Credits : RedFist/UPK
Hey Leute !
Ich habe leider ein Problem wie auch einpaar andere Coder
undzwar "Fremdprogramm endeckt ! Verbindung wird abgebrochen."
Wie kann ich das Problem beheben ?
Wäre nett wenn ihr mir mal Helfen könntet
Skype : chronologic11
.Chronos is offline  
Old 11/05/2011, 07:35   #5712
 
elite*gold: 0
Join Date: Aug 2010
Posts: 18
Received Thanks: 2
*Request for a WarRockPH Struct...

Here's the a dump

Download Link:

Virus Scan : ,
icebox2010 is offline  
Old 11/05/2011, 08:58   #5713
 
elite*gold: 8
Join Date: Oct 2011
Posts: 656
Received Thanks: 1,895
Quote:
Originally Posted by .Chronos View Post
Code:
if(Prone == 1)
 {
if(GetAsyncKeyState('C'))
 {
*(float*)(ADR_PRONE) = 3.0F;
}
}

You Need Addy !

Credits : RedFist/UPK
Hey Leute !
Ich habe leider ein Problem wie auch einpaar andere Coder
undzwar "Fremdprogramm endeckt ! Verbindung wird abgebrochen."
Wie kann ich das Problem beheben ?
Wäre nett wenn ihr mir mal Helfen könntet
Skype : chronologic11
Bessere Detour, Text Strings Crypten und mit Themida packen.
_TradEmArk_ ™ is offline  
Old 11/05/2011, 11:17   #5714
 
elite*gold: 0
Join Date: Oct 2011
Posts: 23
Received Thanks: 1
I need Auto Ready/Start...
Please working with Addys... It were very nice! [32bit+64bit]
Wamba123123 is offline  
Old 11/05/2011, 11:46   #5715
 
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
Quote:
Originally Posted by Wamba123123 View Post
I need Auto Ready/Start...
Please working with Addys... It were very nice! [32bit+64bit]
don't spam we can read


you need addys look here : there you get it
Angel-Piece 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 +2. The time now is 09:13.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.