WarRock EU - Code Snippets

07/09/2011 17:15 IceVisionzX#4381
Quote:
1>Main.obj : error LNK2001: Nicht aufgelöstes externes Symbol "_D3DXCreateFontA@48".
1>C:\Users\Leon\Documents\Visual Studio 2008\Projects\IceVisionzX D3D9 Base\Release\IceVisionzX D3D.dll : fatal error LNK1120: 1 nicht aufgelöste externe Verweise.
Weiß einer was da los ist?

Edit:
Problem war:
#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")

Hat gefehlt..
07/09/2011 17:22 BlackLegend™#4382
Som€ Shit über Hackshield:

English:

Deutsch:

Credits: gamedeception & Ahnlab homepage
Übersetzung von mir. (einigermaßen xD)
07/09/2011 17:25 IceVisionzX#4383
IDirect3DDevice9 *m_pD3Ddev=0;

Warum geht das nicht?
07/10/2011 02:45 calez21#4384
please help!
how to code these addiess..>??
escalator
zombie opk
opk
stw
wtw
in nomenu
and how to find unli ammo in ida pro??

need helpp .
07/10/2011 18:05 ~kau~#4385
Quote:
Originally Posted by calez21 View Post
please help!
how to code these addiess..>??
escalator
zombie opk
opk
stw
wtw
in nomenu
and how to find unli ammo in ida pro??

need helpp .
Hmm
A simple How²!
1. learn c++
2. learn asm
3. Use the SEARCH BUTTON!!
07/10/2011 19:35 Fl3Va#4386
kann mir wer ne source geben das wenn ich f5 einmal drücke wird f6 dauerhaft gedrückt
07/10/2011 19:45 BlackLegend™#4387
Quote:
Originally Posted by Fl3Va View Post
kann mir wer ne source geben das wenn ich f5 einmal drücke wird f6 dauerhaft gedrückt
wo ist da die logik?
07/10/2011 19:53 Fl3Va#4388
für einen dianr bot
07/10/2011 19:55 BlackLegend™#4389
Quote:
Originally Posted by Fl3Va View Post
für einen dianr bot
LoL da macht mans so:
Quote:
//An aus: Bool
bool OnOff = false;


//Funktion
void TheFunk ()
{
while(OnOff == true)
{
DWORD niksPlayer = *(DWORD*)Playerpointer;
if (niksPlayer != 0)
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
*(float)(niksPlayer+OFS_Z) = 110;
}

*(float)(niksPlayer+OFS_NFD) = 100000;

}
SetCursorPos(450,90);
Sleep(100);
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);
Sleep(100);
mouse_event(MOUSEEVENTF_LEFTUP,0,0,0,0);
Sleep(100);
keybd_event(0x11, 0, 0, 0);
keybd_event(0x0D, 0, 0, 0);

if (GetsyncKeyState(VK_F5) &1)
{
OnOff = OnOff == false;
}
}
if (GetsyncKeyState(VK_F5) &1)
{
OnOff = OnOff == false;
}
}
Credits: NikM
07/10/2011 19:57 Büny :)#4390
Quote:
Originally Posted by Fl3Va View Post
für einen dianr bot
aber awrum soll der F6 drücken ?

Naja.

bool pressf6;

if(GetAsyncKeyState(VK_F5)) pressf6 = (!pressf6);
if(pressf6) keybd_event(VK_F6, 0, 0, 0);
07/10/2011 20:14 Fl3Va#4391
der bezeichner GetsyncKeyState ist nich definiert
07/10/2011 20:18 NikM#4392
GetAsyncKeyState
&
windows.h einbinden ^^
07/10/2011 22:24 calez21#4393
Quote:
Originally Posted by kauknochen View Post
Hmm
A simple How²!
1. learn c++
2. learn asm
3. Use the SEARCH BUTTON!!
hmm i already have the knowledge in C++
but in asm, i guess i have to study it more..
i already search for some codes, but NO LUCK
i can't find anything about asm addresses.

if u have time to spare would u help me?
07/10/2011 23:32 4pr000only#4394
Hey ! where can I find the current Deutor :/ because my hack always Crash :/ i have 4 Old Deutor :/
07/10/2011 23:48 xxfabbelxx#4395
Quote:
Originally Posted by 4pr000only View Post
Hey ! where can I find the current Deutor :/ because my hack always Crash :/ i have 4 Old Deutor :/
Hey,

u can use a microsoft E9(Jump) Detour. The E8(Call) doesn't work, as far as i know.

google for it, and i'm soure you'll find something good.