OldSchoolHack

Register / Login English

User Search: Stormy

Search-Information
Stormy
Threads
Thread Forum Last Post Posts Views
icon

Go to first new post An KN4CKER (Multi-page thread 1 2) Posted on: Sun 27. Sep 2009, 12:27

KingKong

preview Preview

Go To Post

Du könntest Vor-Ort-Support für alle anbieten die es nicht rallen :d :schaden:
Laberecke

Thu 21. Mar 2013, 15:09

by Lucky_Luke Go to last post
36 4726
icon

Go to first new post [Release] [L4D2] Simple Left 4 Dead 2 Hack Posted on: Tue 17. Nov 2009, 20:28

Stormy

preview Preview

Go To Post

TEXT Code:
  1. SimpleL4D2Hack v0.1.1
  2.  
  3.  
  4. Features List:
  5. --------------
  6.  
  7. Update Reminder:
  8. ****************
  9. If we release a newer version
  10. of this hack, it will be announced
  11. at start-up! So you will ever be
  12. up-to-date :-D
  13.  
  14. PANIC KEY:
  15. **********
  16. Press the \"Del\" - key and the
  17. hack will be terminated!
  18.  
  19. INI FILE:
  20. *********
  21. You can activate/deactivate
  22. features of the hack at startup
  23. with the INI-File.
  24. \"true\" means activated, \"false\"
  25. means deactivated. If you don\'t
  26. want to use the INI simply delete it :P
  27.  
  28.  
  29. Multiplayer Hacks:
  30. *****************
  31. # Hit indicator
  32. # ESP
  33. # No Recoil
  34. # Wireframe WH
  35. # No Vomit
  36. # No Shadows
  37. # No Rain
  38. # Skeleton WH
  39. # Empty Map
  40.  
  41. Bypasses:
  42. *********
  43. # Cheats Bypass
  44. # Consistency Bypass
  45. # Pure Bypass
  46.  
  47. Singleplayer Hacks:
  48. *******************
  49. # Infinite Ammo
  50. # Infinite Health
  51. # Blind Infected
  52. # Buddah
  53. # Disco WH
  54.  
  55. Requirements:
  56. *************
  57. .NET Framework
  58.  
  59. Usage:
  60. ******
  61. 1.) Start L4D2
  62. 2.) Tab out and start the hack
  63. 3.) Make your choice
  64. 4.) Go back into game
  65. 5.) Have fun!
  66.  
  67. Support & Contact:
  68. *****************
  69. http://simplehax.blogspot.com
  70.  

DL: http://rapidshare.com/files/308395338/SimpleL4D2Hack_v011.zip
Other FPS Games

Mon 18. Apr 2011, 18:59

by Dovahkiin Go to last post
4 6090
icon

Go to first new post Gamehacking Tut 9 in .NET Posted on: Tue 15. Sep 2009, 20:26

Stormy

preview Preview

Go To Post

Ich find Knackers tuts spitze. Allerdings bin ich fan von managed code, daher ist das .net framework in der regel meine erste wahl. Ausserdem will ich ja propagieren, dass man selbst mit managed code einiges auf die beine bekommt :-D Ich persönlich verwendet c#, lässt sich allerdings auch in vb.net etc realisieren...

Schritt 1:
Welche WinApi Funktionen brauchen wir? Steht alles in Knackers tut

Schritt 2:
unseren .net code interop fähig machen

TEXT Code:
  1. using System.Runtime.InteropServices;
http://msdn.microsoft.com/de-de/library/system.runtime.interopservices.aspx

Schritt 3:
Wir nehmen die WinApi - Funktionen und machen Sie mit Hilfe der InteropServices, im speziellen der DllImportAttribute - Klasse für uns verwendbar.
Für Tut 9 sieht das dann in etwa so aus:

TEXT Code:
  1. [DllImport("user32.dll")]
  2. static extern int GetForegroundWindow();
  3.  
  4. [DllImport("user32.dll")]
  5. static extern int GetDC(int foreground);
  6.  
  7. [DllImport("Gdi32.dll")]
  8. static extern int SetBkMode(int hdc, string mode);
  9.  
  10. [DllImport("Gdi32.dll")]
  11. static extern int SetTextColor(int hdc, string rgb);
  12.  
  13. [DllImport("Gdi32.dll")]
  14. static extern int TextOut(int hdc, int xStart, int yStart, string lpString, int cbString);
  15.  
  16. [DllImport("user32.dll")]
  17. static extern int UpdateWindow(int foreground);
  18.  
  19. [DllImport("user32.dll")]
  20. static extern int ReleaseDC(int foreground, int hdc);
  21.  

Schritt 4:
Den Klimbatsch kann man nun in ne Methode wurschteln:

TEXT Code:
  1. int foreground = GetForegroundWindow();
  2. int hdc = GetDC(foreground);
  3. SetBkMode(hdc, "TRANSPARENT");
  4. SetTextColor(hdc, "RGB(255,0,0)");
  5. TextOut(hdc, 10, 10, "bla", 3);
  6. UpdateWindow(foreground);
  7. ReleaseDC(foreground, hdc);
  8. System.Threading.Thread.Sleep(1);

Ta ta ta taaa...wenn man jetzt net so faul ist wie ich kann weiter machen


http://img40.imageshack.us/img40/3779/blasn.jpg

Nu jo, over and out
Tutorials

Tue 4. May 2010, 21:41

by ZeRoKiLLeR Go to last post
6 1507
icon

Go to first new post Gamehacking Tut 9 in .NET Posted on: Tue 15. Sep 2009, 20:26

Stormy

preview Preview
Tutorials

Tue 4. May 2010, 21:41

by ZeRoKiLLeR Go to last post
6 1507
icon

Go to first new post Vorstell-Ecke (Multi-page thread 1 2) Posted on: Fri 28. Sep 2007, 21:11

ingweil

preview Preview

Go To Post

Da mach ich auch ma mit, muss ja meinen postcount hoch blasen

Michi, 24, IT-Consultant aus Schwaben

Komischerweise hab ich mit "Killerspielen" recht spät angefangen (wenn man die Pause zwischen den Duke Nukem und Doom[I-II] mitzählt wars doch schon recht früh ^^ ), 2001 mit RTCW...etwas später dann umgestiegen auf RTCW:Enemy Territory und dort hängen geblieben bis 2006. Dann kam CS:S...mittlerweile zählen L4D und TF2 auch noch zu meinen Favs.

Ich hatte mich auch mal kurze Zeit an CS 1.4 versucht, bin aber immer durch die Doors geholt worde...vll cheate ich deswegen jetzt so gerne Mal mit nem Seelenklempner unterhalten...

Von Warcraft[I-III], Diablo[I-II] , Starcraft etc.pp. fang ich jetzt nicht an

Kurz nach 3...schonwieder solange wach...hab jetzt 2 Möglichkeiten zu sterben: Frau bringt mich um weil ich wieder "bis in die Puppen" am daddeln war oder mein Chef tut es wenn ich morgen den Kundentermin verpenne

So long,
Stormy
Laberecke

Wed 14. Apr 2010, 23:45

by xerox Go to last post
25 2166
Downloads
No downloads found.