|
You last visited: Today at 23:34
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% |
06/27/2011, 19:44
|
#4216
|
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
|
Quote:
Originally Posted by *Pumio*
Ja toll da ist aber nicht das was ich brauche 
|
Öh doch habe da genau erklärt wie man Addylogger macht, wie man Bytes sucht, etc.
|
|
|
06/27/2011, 19:59
|
#4217
|
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
|
Bünny Skype dan zeig ich dir was ich meine .
Also guck wen ich z.b QuickPlant Byte für Addyloger suche dan kommt da nur eine RoteZeile mehr net !
|
|
|
06/27/2011, 23:08
|
#4218
|
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
|
Quote:
Originally Posted by *Pumio*
Bünny Skype dan zeig ich dir was ich meine .
Also guck wen ich z.b QuickPlant Byte für Addyloger suche dan kommt da nur eine RoteZeile mehr net !
|
Assembler Adressen werden auch mit Strg + G gesucht.
|
|
|
06/27/2011, 23:21
|
#4219
|
elite*gold: 219
Join Date: Jan 2011
Posts: 1,444
Received Thanks: 1,369
|
Ahso ! oke jetzt habe ichs kapiert
|
|
|
06/28/2011, 13:57
|
#4220
|
elite*gold: 0
Join Date: Oct 2010
Posts: 555
Received Thanks: 44
|
Quote:
Originally Posted by Fl3Va
Ist es möglich das man scope mit zb. F1 an undf2 aus macht und mit rechtsklick benutzt
|
hat keiner ne idee
|
|
|
06/28/2011, 14:47
|
#4221
|
elite*gold: 0
Join Date: May 2011
Posts: 171
Received Thanks: 81
|
Code:
bool Scope;
void Switch(){
if(Scope == false && GetAsyncKeyState(VK_F1)){Scope=true;}
if(Scope == true && GetAsyncKeyState(VK_F2)){Scope=false;}}
void SCOPE()
{
if(Scope == true)
{
if(GetAsyncKeyState(VK_RBUTTON))
{
//Scope Source
}}}
des was du wolltest fleva?
|
|
|
06/28/2011, 15:26
|
#4222
|
elite*gold: 0
Join Date: Oct 2010
Posts: 555
Received Thanks: 44
|
Quote:
Originally Posted by R3d~F!st
Code:
bool Scope;
void Switch(){
if(Scope == false && GetAsyncKeyState(VK_F1)){Scope=true;}
if(Scope == true && GetAsyncKeyState(VK_F2)){Scope=false;}}
void SCOPE()
{
if(Scope == true)
{
if(GetAsyncKeyState(VK_RBUTTON))
{
//Scope Source
}}}
des was du wolltest fleva?
|
bringt mir nicht da ich auch keine scope source hab
|
|
|
06/28/2011, 15:43
|
#4223
|
elite*gold: 1
Join Date: Jun 2011
Posts: 302
Received Thanks: 367
|
Code:
bool Scope;
if(GetAsyncKeyState(VK_F1)) Scope = true;
if(GetAsyncKeyState(VK_F2)) Scope = false;
if(Scope && GetAsyncKeyState(VK_RBUTTON)){
*(int*)(ADR_SCOPE) = 1;}else{
*(int*)(ADR_SCOPE) = 0;}
|
|
|
06/28/2011, 17:09
|
#4224
|
elite*gold: 0
Join Date: Oct 2010
Posts: 555
Received Thanks: 44
|
Quote:
Originally Posted by Büny :)
Code:
bool Scope;
if(GetAsyncKeyState(VK_F1)) Scope = true;
if(GetAsyncKeyState(VK_F2)) Scope = false;
if(Scope && GetAsyncKeyState(VK_RBUTTON)){
*(int*)(ADR_SCOPE) = 1;}else{
*(int*)(ADR_SCOPE) = 0;}
|
habe nen error beim debuggen und releasen
|
|
|
06/28/2011, 17:33
|
#4225
|
elite*gold: 2
Join Date: May 2010
Posts: 2,913
Received Thanks: 1,565
|
Quote:
Originally Posted by Fl3Va
habe nen error beim debuggen und releasen
|
Deswegen reicht es auch nicht, wenn man die sources einfach reinkopiert!
|
|
|
06/28/2011, 17:55
|
#4226
|
elite*gold: 0
Join Date: Jun 2011
Posts: 261
Received Thanks: 237
|
CQCProne Memory = UnknowPk Credits.
|
|
|
06/28/2011, 17:56
|
#4227
|
elite*gold: 0
Join Date: Apr 2011
Posts: 146
Received Thanks: 171
|
Auch die source ??
|
|
|
06/28/2011, 19:18
|
#4228
|
elite*gold: 0
Join Date: Jun 2011
Posts: 261
Received Thanks: 237
|
[WarRock] Engine Text
Code:
/*==========================================
======WarRock Engine Text (Ingame)======
========Credits: NoName,IceVisionzX========
==========================================*/
#include <windows.h>
#define ADR_PLAYERPOINTER 0x00D4A730//Found at 0x00590AC0 ( WarRock.exe [0x400000] + 0x00190AC0 )
#define ADR_ENGINETEXT_INGAME 0x005A25B0//Found at 0x005A25B0 ( WarRock.exe [0x400000] + 0x001A25B0 )
bool ShowIngameMessage = true;
void ShowMessage(char* MyMessage)
{
__asm
{
push 0x1;
push 0x32;
push 0x32;
push 0xff;
push MyMessage;
mov esi,ADR_ENGINETEXT_INGAME;
call esi;
}
}
void CalledThread()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if ( dwPlayerPtr !=0 )
{
if ( ShowIngameMessage == true )
{
ShowMessage("Name >> Welcome");
ShowIngameMessage = false;
}
}
}
void CallThread()
{
for ( ; ; )
{
CalledThread();
Sleep(100);
}
}
BOOL WINAPI DllMain( HMODULE hDll , DWORD Reason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if(Reason == DLL_PROCESS_ATTACH)
{
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)CallThread, NULL, NULL, NULL);
}
return TRUE;
}
|
|
|
06/28/2011, 19:21
|
#4229
|
elite*gold: 0
Join Date: Nov 2010
Posts: 875
Received Thanks: 206
|
hat wer source code von extra ammo?
|
|
|
06/28/2011, 19:26
|
#4230
|
elite*gold: 0
Join Date: Feb 2011
Posts: 228
Received Thanks: 106
|
//fast ammo
Code:
{
*(float*)ADR_FASTAMMO = 12.05f;
}
€:aso extra ammo?
eh muss kurz gucken
hier:
Code:
void ExtraAmmo ()
{
*(int*)(ADR_ExtraAmmo1) = 1;
}
void ExtraAmmo2 ()
{
*(int*)(ADR_ExtraAmmo2) = 1;
}
wenn ich geholfen habe press thanks
|
|
|
 |
|
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 23:35.
|
|