|
Thema |
Forum |
Letzter Beitrag |
Beiträge |
Zugriffe |
 |
[Release] TradEmArk D3D
Erstellt am: Mi 7. Sep 2011, 15:04
KN4CK3R
Vorschau
|
Warrock |
Do 8. Sep 2011, 19:12
von 12ersin12
|
1 |
1309 |
 |
Falsche World2Screen Berechnung
Erstellt am: Di 6. Sep 2011, 22:33
arnibold
Vorschau
Go To Post
ja, die namen der Spieler stehen in einem char[] sind aber eigentlich wchar_t... 8) kannst du mit MultiByteToWideChar umwandeln greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Do 8. Sep 2011, 18:05
von KN4CK3R
|
9 |
1406 |
 |
Falsche World2Screen Berechnung
Erstellt am: Di 6. Sep 2011, 22:33
arnibold
Vorschau
Go To Post
was meinst du mit "kann man das fixen"? greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Do 8. Sep 2011, 18:05
von KN4CK3R
|
9 |
1406 |
 |
Falsche World2Screen Berechnung
Erstellt am: Di 6. Sep 2011, 22:33
arnibold
Vorschau
Go To Post
nein, die BaseEntity Klasse (die du benutzt indirekt) wird nur aktuallisiert, wenn ein Model mehr oder weniger sichtbar ist. Aus der Radar Klasse kann man in dem Fall die Positionen auch noch auslesen, aber dort wird nur jede Sekunde einmal aktuallisiert. Das ist aber immerhin noch brauchbarer, wie gar keinen ESP anzuzeigen. greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Do 8. Sep 2011, 18:05
von KN4CK3R
|
9 |
1406 |
 |
Falsche World2Screen Berechnung
Erstellt am: Di 6. Sep 2011, 22:33
arnibold
Vorschau
Go To Post
ich benutze bei meiner Engine Klasse nicht das SDK, weil mir da zuviel drin ist, was ich nicht brauche. CPP Code: typedef void* (*CreateInterfaceFn)(const char *name, int *returnCode); CreateInterfaceFn CaptureFactory(char *FactoryModuleName) { CreateInterfaceFn ret = NULL; while (!ret) { HMODULE FactoryModule = GetModuleHandleA(FactoryModuleName); if (FactoryModule) ret = reinterpret_cast<CreateInterfaceFn>(GetProcAddress(FactoryModule, "CreateInterface")); Sleep(10); } return ret; } //--------------------------------------------------------------------------- void *CaptureInterface(CreateInterfaceFn Fn, char *InterfaceName) { unsigned long *ret = NULL; while (!ret) { ret = reinterpret_cast<unsigned long*>(Fn(InterfaceName, NULL)); Sleep(10); } return ret; } ... Engine *engine; CreateInterfaceFn engineInterface = CaptureFactory("engine.dll"); engine = (cEngine*)CaptureInterface(engineInterface, "VEngineClient013"); ... float *WorldToScreen = engine->WorldToScreenMatrix();
greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Do 8. Sep 2011, 18:05
von KN4CK3R
|
9 |
1406 |
 |
Falsche World2Screen Berechnung
Erstellt am: Di 6. Sep 2011, 22:33
arnibold
Vorschau
Go To Post
am einfachsten ist es World to Screen von der Engine zu benutzen, das passt immer. Ob man bei CSS deine Methode überhaupt anwenden kann, weiß ich nicht. CPP Code: class Engine { public: virtual void function1() = 0; virtual void function2() = 0; virtual void function3() = 0; virtual void function4() = 0; virtual void function5() = 0; virtual void function6() = 0; virtual void function7() = 0; virtual void function8() = 0; virtual bool GetPlayerInfo(int ent_num, player_info_t *pinfo) = 0; virtual int GetPlayerForUserID(int userID) = 0; virtual void function9() = 0; virtual bool Con_IsVisible() = 0; virtual int GetLocalPlayer() = 0; virtual void function10() = 0; virtual void function11() = 0; virtual void function12() = 0; virtual void function13() = 0; virtual void function14() = 0; virtual void function15() = 0; virtual void function16() = 0; virtual void function17() = 0; virtual int GetMaxClients() = 0; virtual void function18() = 0; virtual void function19() = 0; virtual void function20() = 0; virtual void function21() = 0; virtual bool IsInGame() = 0; virtual void function22() = 0; virtual void function23() = 0; virtual void function24() = 0; virtual void function25() = 0; virtual void function26() = 0; virtual void function27() = 0; virtual void function28() = 0; virtual void function29() = 0; virtual void function30() = 0; virtual float* WorldToScreenMatrix() = 0; }; bool ScreenTransform(Vector &point, Vector &screen) { float w; float *WorldToScreen = engine->WorldToScreenMatrix(); //hier bekommste von der Engine die WorldToScreenMatrix screen.x = WorldToScreen[0] * point.x + WorldToScreen[1] * point.y + WorldToScreen[2] * point.z + WorldToScreen[3]; screen.y = WorldToScreen[4] * point.x + WorldToScreen[5] * point.y + WorldToScreen[6] * point.z + WorldToScreen[7]; w = WorldToScreen[12] * point.x + WorldToScreen[13] * point.y + WorldToScreen[14] * point.z + WorldToScreen[15]; screen.z = 0.0f; bool behind = false; if (w < 0.001f) { behind = true; } else { behind = false; float invw = 1.0f / w; screen.x *= invw; screen.y *= invw; } return behind; } //--------------------------------------------------------------------------- bool WorldToScreen(Vector &vOrigin, Vector &vScreen) { if (ScreenTransform(vOrigin, vScreen) == false) { int iScreenWidth = gui.Viewport.Width, iScreenHeight = gui.Viewport.Height; float x = iScreenWidth / 2; float y = iScreenHeight / 2; x += 0.5 * vScreen.x * iScreenWidth + 0.5; y -= 0.5 * vScreen.y * iScreenHeight + 0.5; vScreen.x = x; vScreen.y = y; return true; } return false; }
greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Do 8. Sep 2011, 18:05
von KN4CK3R
|
9 |
1406 |
 |
oshlog.log OSH TF2 V21
Erstellt am: Sa 3. Sep 2011, 12:27
hunghung2
Vorschau
Go To Post
https://www.oldschoolhack.me/forum/support/7581,oshlog-always.html
|
Team Fortress 2 |
Do 8. Sep 2011, 17:41
von hunghung2
|
8 |
2089 |
 |
oshlog.log OSH TF2 V21
Erstellt am: Sa 3. Sep 2011, 12:27
hunghung2
Vorschau
Go To Post
thank you for the file but i think i need more than one file could you use this version? http://www.file-upload.net/download-3713746/oshbptf2.dll.html it's more detailed greetz KN4CK3R
|
Team Fortress 2 |
Do 8. Sep 2011, 17:41
von hunghung2
|
8 |
2089 |
 |
oshlog.log OSH TF2 V21
Erstellt am: Sa 3. Sep 2011, 12:27
hunghung2
Vorschau
Go To Post
thanks for your file the problem is the enity visible check. I don't exactly know what the problem is and so how to fix it, but I made a new version so try this one: http://www.file-upload.net/download-3715806/oshbptf2.dll.html This one doesn't generate a "oshdebug.dat". greetz KN4CK3R
|
Team Fortress 2 |
Do 8. Sep 2011, 17:41
von hunghung2
|
8 |
2089 |
 |
oshlog.log OSH TF2 V21
Erstellt am: Sa 3. Sep 2011, 12:27
hunghung2
Vorschau
|
Team Fortress 2 |
Do 8. Sep 2011, 17:41
von hunghung2
|
8 |
2089 |
 |
OSH BP Abstürze
Erstellt am: Do 8. Sep 2011, 17:35
KN4CK3R
Vorschau
Go To Post
Hallo, kann bitte jemand von denen, bei denen der OSH BP nach einiger Zeit abstürzt, testen, ob der Fehler mit dieser Version nicht mehr auftritt, damit ich eine neue Version vom Hack rausbringen kann. http://www.file-upload.net/download-3715806/oshbptf2.dll.html greetz KN4CK3R
|
Counter-Strike: Source |
Do 8. Sep 2011, 17:35
von KN4CK3R
|
0 |
156 |
 |
DIRT 3 FREE KEYS!!!
Erstellt am: Di 6. Sep 2011, 14:47
Lucky_Luke
Vorschau
Go To Post
hat die einer geloaded? Weil unter der Seite gibts ja nur noch die test.txt Edit: habse selbst aufgetrieben: http://www.file-upload.net/download-3715839/dirt_3_keys.txt.html (32MB Keys ) greetz KN4CK3R
|
Fun |
Do 8. Sep 2011, 15:45
von sell_acc
|
9 |
737 |
 |
DIRT 3 FREE KEYS!!!
Erstellt am: Di 6. Sep 2011, 14:47
Lucky_Luke
Vorschau
Go To Post
wird sicher schwer bei 3Mio noch einen unbenutzten zu finden greetz KN4CK3R
|
Fun |
Do 8. Sep 2011, 15:45
von sell_acc
|
9 |
737 |
 |
DIRT 3 FREE KEYS!!!
Erstellt am: Di 6. Sep 2011, 14:47
Lucky_Luke
Vorschau
Go To Post
naja, das können sie aber nicht einfach so machen, sonst bannen sie die "legalen" gleich mit. greetz KN4CK3R
|
Fun |
Do 8. Sep 2011, 15:45
von sell_acc
|
9 |
737 |
 |
Call of Duty: Modern Warfare 3 - Operation Kingfish Live Action Shortfilm
Erstellt am: Mi 7. Sep 2011, 22:40
KN4CK3R
Vorschau
Go To Post
sehr gutes Video: http://winfuture.de/videos/Spiele/Call-of-Duty-Modern-Warfare-3-Operation-Kingfish-Live-Action-Shortfilm-5424.html?hd greetz KN4CK3R
|
Call of Duty: Modern Warfare 3 |
Do 8. Sep 2011, 13:34
von Lucky_Luke
|
2 |
477 |
 |
[Release] Ace of Spades pub hack v1
Erstellt am: Mi 7. Sep 2011, 14:59
KN4CK3R
Vorschau
Go To Post
Ace of Spades 0.58 Public Hack by learn_more features: * Box esp (different color when out of range) * Name / weapon esp (only the player closest to crosshair) * Intel esp (only when it's dropped) * Console (read last 40 messages, press ` or ~ to show / hide) to use it, get any random injector (Winject would do fine), and inject when you want (at game start, halfway through the game) Download Ace of Spades pub hack v1
|
Other FPS Games |
Mi 7. Sep 2011, 14:59
von KN4CK3R
|
0 |
1746 |
 |
[Release] HoneyAimbot v1.821
Erstellt am: Mi 7. Sep 2011, 14:57
KN4CK3R
Vorschau
Go To Post
Well time for a new BFH release, back to the basics. Feel free to reply Features: Aimbot Aimkey: V or LShift No Spread/Shake Locks on a enemy until released Picks up the closest target A few tips: Inject in the menu or in a windowed mode. Rename the file to something else. Shouts and love to the awesome: Winslow learn_more R4z8r Zoomgod smoochy Analog -tester Daavid -tester Download HoneyAimbot v1.821
|
Battlefield Heroes |
Mi 7. Sep 2011, 14:57
von KN4CK3R
|
0 |
789 |
 |
ordentlicher Aimbot umsonst[CSS]
Erstellt am: So 4. Sep 2011, 18:46
H4EDS4CKER
Vorschau
Go To Post
jaja, wenn nix brauchbares mehr kommt, dann ruhe jetzt greetz KN4CK3R
|
Counter-Strike: Source |
Di 6. Sep 2011, 12:50
von extremeHack
|
13 |
1121 |
 |
Koordinaten xyz ?
Erstellt am: Mo 5. Sep 2011, 16:31
bbr
Vorschau
Go To Post
don't use a translator! -.- greetz KN4CK3R
|
VB, C/C++, Delphi, etc |
Di 6. Sep 2011, 07:47
von KN4CK3R
|
6 |
924 |
 |
Koordinaten xyz ?
Erstellt am: Mo 5. Sep 2011, 16:31
bbr
Vorschau
Go To Post
https://www.oldschoolhack.me/forum/counterstrike-16source/7582,hilfe-css-playerstruct.html
|
VB, C/C++, Delphi, etc |
Di 6. Sep 2011, 07:47
von KN4CK3R
|
6 |
924 |