|
You last visited: Today at 03:20
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% |
12/18/2010, 19:04
|
#571
|
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
|
removved
|
|
|
12/18/2010, 20:20
|
#572
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by xl31tw0lfx
hat einer source für plantanywhere in nomenü?????
|
Jaa habe ich. Bekommst du aber nicht.
|
|
|
12/18/2010, 20:48
|
#573
|
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
|
xD1997
Tuh mir ein geffallen gib sie nicht weiter sonst hat sie jeder
|
|
|
12/18/2010, 20:52
|
#574
|
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
|
Quote:
Originally Posted by CyberRazzer
xD1997
Tuh mir ein geffallen gib sie nicht weiter sonst hat sie jeder
|
wtf die wurde hier von yazzn gepostet und entfern mal pls forcekick weißt du eigentlich warum es heißt es wurde in der vip section gepostet und soll nicht über all geleecht werden?
weißt du warum das so ist?
|
|
|
12/18/2010, 20:53
|
#575
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Plant Anywhere in Nomenü:
Code:
*(int*)(ADR_PlantAnywhere) = 1;
|
|
|
12/18/2010, 21:15
|
#576
|
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
|
Quote:
|
*(int*)(ADR_PlantAnywhere) = 1;
|
Fail
*(BYTE*)
0x1
|
|
|
12/19/2010, 00:07
|
#577
|
elite*gold: 0
Join Date: Sep 2009
Posts: 1,489
Received Thanks: 1,221
|
Quote:
Originally Posted by #Infraction
Plant Anywhere in Nomenü:
Code:
*(int*)(ADR_PlantAnywhere) = 1;
|
LOOL
FAIL
Cyber nimm das wieder raus.
|
|
|
12/19/2010, 01:12
|
#578
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
So jetzt hab ich auch ein Problem!
Und zwar bei scalare Jump.
Ich benutz dem im menü also
blabla hotkeyabfrage undso
*(float*)(ADR_PLAYERPOINTER + Z_Axis) = *(float*)(ADR_PLAYERPOINTER + Z_Axis) +50;
Was ist falsch?
Wenn ich dann Spacebar drücke, häng ich in der Luft rum und seh mich ungefähr aus Bauchnabel Winkel von der cam her.
|
|
|
12/19/2010, 01:15
|
#579
|
elite*gold: LOCKED
Join Date: Dec 2009
Posts: 4,650
Received Thanks: 5,731
|
Quote:
Originally Posted by #Infraction
So jetzt hab ich auch ein Problem!
Und zwar bei scalare Jump.
Ich benutz dem im menü also
blabla hotkeyabfrage undso
*(float*)(ADR_PLAYERPOINTER + Z_Axis) = *(float*)(ADR_PLAYERPOINTER + Z_Axis) +50;
Was ist falsch?
Wenn ich dann Spacebar drücke, häng ich in der Luft rum und seh mich ungefähr aus Bauchnabel Winkel von der cam her.
|
g_pBase->local->z/pos3 += 50;
wie wäre es damit^^
|
|
|
12/19/2010, 13:25
|
#580
|
elite*gold: 17
Join Date: Apr 2010
Posts: 1,174
Received Thanks: 839
|
Hat jemand einen "Auto Space" SourceCode für AutoIt ?
Wäre nett wenn ihr mir weiterhelfen könntet!
MFG
|
|
|
12/19/2010, 17:07
|
#581
|
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
|
#define ADR_OPK_1 0x00502673
#define ADR_OPK_2 0x0050267D
#define ADR_OPK_3 0x00502683
void WriteAsm( void* pxAddress, BYTE *code, int size )
{
unsigned long Protection;
VirtualProtect((void*)pxAddress, size, PAGE_READWRITE, &Protection);
memcpy((void*)pxAddress, (const void*)code, size);
VirtualProtect((void*)pxAddress, size, Protection, 0);
}
BYTE ONOPK[] = {0x89, 0xa1};
if (OPK==1)
{
WriteAsm((void*)ADR_OPK_1,ONOPK,6);
WriteAsm((void*)ADR_OPK_2,ONOPK,6);
WriteAsm((void*)ADR_OPK_3,ONOPK,6);
}
:S
|
|
|
12/19/2010, 17:09
|
#582
|
elite*gold: 900
Join Date: Apr 2009
Posts: 14,981
Received Thanks: 11,403
|
Quote:
Originally Posted by CyberRazzer
#define ADR_OPK_1 0x00502673
#define ADR_OPK_2 0x0050267D
#define ADR_OPK_3 0x00502683
void WriteAsm( void* pxAddress, BYTE *code, int size )
{
unsigned long Protection;
VirtualProtect((void*)pxAddress, size, PAGE_READWRITE, &Protection);
memcpy((void*)pxAddress, (const void*)code, size);
VirtualProtect((void*)pxAddress, size, Protection, 0);
}
BYTE ONOPK[] = {0x89, 0xa1};
if (OPK==1)
{
WriteAsm((void*)ADR_OPK_1,ONOPK,6);
WriteAsm((void*)ADR_OPK_2,ONOPK,6);
WriteAsm((void*)ADR_OPK_3,ONOPK,6);
}
:S
|
workt oder nicht?
|
|
|
12/19/2010, 18:55
|
#583
|
elite*gold: 1
Join Date: Jun 2010
Posts: 2,843
Received Thanks: 3,724
|
Workz...
Kann sein falsch byte und value aber addy right...
WaterEnable...
Meint ihr das geht so?
Quote:
if (EnableRain)
_asm
{
push,ADR_ENABLERAIN
call push
}
|
|
|
|
12/19/2010, 20:31
|
#584
|
elite*gold: 0
Join Date: May 2009
Posts: 2,527
Received Thanks: 4,404
|
Quote:
Originally Posted by CyberRazzer
Workz...
Kann sein falsch byte und value aber addy right...
WaterEnable...
Meint ihr das geht so?
|
machs lieber struct art.
laggt nicht so 
ausserdem crashts nicht^^
|
|
|
12/20/2010, 16:12
|
#585
|
elite*gold: 0
Join Date: Mar 2010
Posts: 191
Received Thanks: 26
|
wisst ihr vlt die addys von quick defuse / plant ? könnt ihr mir die pls geben?
Danke ;D
|
|
|
 |
|
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 03:20.
|
|