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 4729
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
Tutorials

Tue 4. May 2010, 21:41

by ZeRoKiLLeR Go to last post
6 1508
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 1508
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
icon

Go to first new post OldSchoolHack CSS (Multi-page thread 1 2 3 4 5 ... Last Page) Posted on: Wed 29. Aug 2007, 20:59

KN4CK3R

preview Preview

Go To Post

Quote
Original von Orange
Quote
Original von Genesis
ich finde es aber bissl bescheuert das der Knacker endlich eine NEWS schreiben soll das der OSH detected ist.... finde es einfach lächerlich ich hab jez 2 acc inerhalb 4 wochen verloren nur weil ich nicht auf der der SIte war und das Forum gelesen habe das der detected ist-.-
bitte klar eine news schreiben... dann gibt es hunderte weniger gebannte acc



wie kann man auch so dumm sein ? wenn ich einmal gebannd bin ...kauf ich mir doch kein 2 acc und benutz den selben hack ..omg :schaden:

w0rd
Counter-Strike: Source

Tue 19. Jan 2010, 19:35

by xst Go to last post
357 72603
icon

Go to first new post OldSchoolHack CSS (Multi-page thread 1 2 3 4 5 ... Last Page) Posted on: Wed 29. Aug 2007, 20:59

KN4CK3R

preview Preview

Go To Post

gegenfrage, wieso gibts dann keine bans durch die anderen memhacks, z.b. für den tf2 oder so
Counter-Strike: Source

Tue 19. Jan 2010, 19:35

by xst Go to last post
357 72603
icon

Go to first new post Türke am telefon will sich rechen xD Posted on: Wed 23. Sep 2009, 17:11

loginame

preview Preview

Go To Post

rofl wie geil
subba subba ich scheiss mich ein
Fun

Thu 7. Jan 2010, 14:59

by sid Go to last post
16 1119
icon

Go to first new post Multi Source Engine MemoryHack (Multi-page thread 1 2) Posted on: Mon 7. Sep 2009, 18:13

AldiSkill

preview Preview

Go To Post

Die Idee hatte ich auch schon. Habs dann aber wieder verworfen weil das Ding up2date zu halten is mir zu stressig xD

* Insurgency
* Smashball
* Zombie Panic! Source
* Garry's Mod

Das sind meine Fav's. Anregungen kannst du dir ja hier holen: http://topsites.moddb.com/all/?game=61
Projekte

Sun 22. Nov 2009, 18:46

by xst Go to last post
21 6033
icon

Go to first new post Multi Source Engine MemoryHack (Multi-page thread 1 2) Posted on: Mon 7. Sep 2009, 18:13

AldiSkill

preview Preview

Go To Post

Oo

Wo gibts denn den ^^ Ich machs manuell...also voll "oldschool"
Projekte

Sun 22. Nov 2009, 18:46

by xst Go to last post
21 6033
icon

Go to first new post Multi Source Engine MemoryHack (Multi-page thread 1 2) Posted on: Mon 7. Sep 2009, 18:13

AldiSkill

preview Preview

Go To Post

Irgendwann lern ich doch noch c++ richtig Die interop invokes in .net find ich unsympatisch
Projekte

Sun 22. Nov 2009, 18:46

by xst Go to last post
21 6033
icon

Go to first new post [Release] CSS-Config.net 0.6 Posted on: Sat 7. Nov 2009, 10:58

E D E L H u R E

preview Preview

Go To Post

Ein Wort: geil


Counter-Strike: Source

Sat 7. Nov 2009, 12:06

by Stormy Go to last post
1 1281
icon

Go to first new post Left 4 Dead 2 Demo Hack Posted on: Fri 6. Nov 2009, 01:34

Stormy

preview Preview

Go To Post

Quote
SimpleL4D2Hack v0.1.0

!!! Only works with the L4D2-Demo !!!


Features List:
--------------

Update Reminder:
****************
If we release a newer version
of this hack, it will be announced
at start-up! So you will ever be
up-to-date :-D

PANIC KEY:
**********
Press the \"Del\" - key and the
hack will be terminated!

INI FILE:
*********
You can activate/deactivate
features of the hack at startup
with the INI-File.
\"true\" means activated, \"false\"
means deactivated. If you don\'t
want to use the INI simply delete it

Multiplayer Hacks:
*****************
# Hit indicator
# ESP
# No Recoil
# Wireframe WH
# No Vomit
# No Shadows
# No Rain
# Skeleton WH
# Empty Map

Bypasses:
*********
# Cheats Bypass
# Consistency Bypass
# Pure Bypass

Singleplayer Hacks:
*******************
# Infinite Ammo
# Infinite Health
# Blind Infected
# Buddah
# Disco WH

Requirements:
*************
.NET Framework

Usage:
******
1.) Start L4D2
2.) Tab out and start the hack
3.) Make your choice
4.) Go back into game
5.) Have fun!

Support & Contact:
*****************
[email protected]
http://simplehax.blogspot.com

DL: http://tinyurl.com/ykkc74k
Other FPS Games

Fri 6. Nov 2009, 01:34

by Stormy Go to last post
0 430
icon

Go to first new post sv_pure 2 bypassen Posted on: Sat 24. Oct 2009, 23:53

uLow-

preview Preview

Go To Post

Herrlich, irgendwie sticht bei einigen Leuten ziemlich die Arroganz hervor.

Code vorkauen muss ja nicht sein, aber ein Denkanstoß wär doch drin gewesen oder

Muss einfach mal meinen Senf dazu geben.
MaZy hat recht, AutoIT für memhacking ist absolut ausreichend (wOuter functions), die Performance bei einem derartigen Projektchen ist vernachlässigbar.


Quote
Original von igromanru
Also du benutzt andere Sprache? Las mich raten, eine scriptsprache. ...

Kennst du Perl? Oder hats nur für ein C++ - Taschenbuch gereicht?

TEXT Code:
  1.  
  2. my $readmem = Win32::API->new( kernel32 => q| BOOL ReadProcessMemory( HANDLE hProcess, LPCVOID lpBaseAddress, LPVOID lpBuffer, SIZE_T nSize, SIZE_T* lpNumberOfBytesWritten)|);
  3.  

Hui, und schon hab ich Speicher manipuliert, mit einer Scriptsprache...

Quote
Original von igromanru
Entweder man lernt alles oder nichts ...

Am Besten man lernt alles, schnürrt sich aber ein paar Arbeitspackete...irgendwie muss man ja Anfangen, warum nicht mit nem kleinen Memhack. Ohne kleine Erfolgserlebnisse bleibt der Spass auf der Strecke...

Überdenkt mal euer Verhalten gegenüber "noobs", in der selben Situation habt ihr euch auch mal befunden.

@ uLow-
Schrei mir ne PM, ich nehm mir gerne mal n paar Minuten Zeit für dich.
Tutorials

Fri 30. Oct 2009, 03:50

by Dovahkiin Go to last post
10 1820
icon

Go to first new post Simple CSS Hack v0.5.4 Posted on: Fri 30. Oct 2009, 00:39

Stormy

preview Preview

Go To Post

Performance erhöht, paar Bugs ausgebügelt. Immernoch VAC² proof.

TEXT Code:
  1. SimpleCSSHack v0.5.4 by Stormharbinger@Ramsor (aka Stormy aka ramsor-project)
  2.  
  3. Welcome to the SimpleCSSHack v0.5.4!
  4.  
  5. Status: VAC² proof (altough some jerks claim memhacks to be detected :P)
  6. Detox proof
  7. zBlock proof
  8.  
  9.  
  10. News:
  11. *****
  12.  
  13. Deleted the NoSpread-Feature and fix a cham activator startup bug.
  14. I also made the hack more performant!
  15.  
  16.  
  17. Usage:
  18. ******
  19. 1.) Start CS:S
  20. 2.) Tab out and start the hack
  21. 3.) Make your choice
  22. 4.) Close the hack!
  23. 5.) Go back into game
  24. 6.) Have fun!
  25.  
  26. My hacks are memhacks, they are save as long
  27. you follow the rules!
  28.  
  29. Features List:
  30. --------------
  31.  
  32. Update Reminder:
  33. ****************
  34. If we release a newer version
  35. of this hack, it will be announced
  36. at start-up! So you will ever be
  37. up-to-date :-D
  38.  
  39. PANIC KEY:
  40. **********
  41. Press the \"Del\" - key and the
  42. hack will be terminated!
  43. (obsolet, you shall close the hack
  44. after choosing the features you want ;) )
  45.  
  46. INI FILE:
  47. *********
  48. You can activate/deactivate
  49. features of the hack at startup
  50. with the INI-File.
  51. \"true\" means activated, \"false\"
  52. means deactivated.
  53. If you want to use the Cham Activator
  54. you shall NOT delete the INI-File!
  55.  
  56. Useful Scripts:
  57. ***************
  58. Read the scripts.txt for some usefull
  59. scripts. They should not be used on
  60. detox secured servers ;) Safety first!
  61.  
  62. Multiplayer Hacks:
  63. *****************
  64. # No Flash
  65. # No Smoke
  66. # No Rain
  67. # No Hud
  68. # Radarhack
  69. # Easy HS
  70. # Hitlocator
  71. # Fullbright
  72. # Chrome Models
  73. # Greyscale
  74. # Wallhack (WF)
  75. # ESP
  76. # Squared Walls
  77. # Blue Walls
  78. # Muzzle Beacon
  79. # Cham Activator
  80. HowTo with pictures: http://simplehax.blogspot.com/2009/09/chammodel-activator-howto-with-pictures.html
  81.  
  82. Bypasses:
  83. *********
  84. # Cheats Bypass
  85. # Consistency Bypass
  86. # Pure Bypass (sv_pure 1 & 2)
  87. # Cvar bypass (replicated)
  88.  
  89. Requirements:
  90. *************
  91. .NET Framework
  92.  
  93. Support & Contact:
  94. *****************
  95. http://simplehax.blogspot.com
  96.  
  97. The last word:
  98. **************
  99. I hope you have read this readme ;) You will see why I ask :D
  100. If someone will make this readme easier and more english I would be happy ^^
  101. I will be happy too if you recommend this hack or make some advertisement.
  102.  
  103.  
  104.  

DL: http://tinyurl.com/yzsv9ev
VT: http://tinyurl.com/yax6x6d

Und das memhacks detected sind ist immernoch bullshit ;-)

http://4.bp.blogspot.com/_RW7OHvpTPA8/SuonbgCNCDI/AAAAAAAAADQ/YgXXxX8o3pc/s1600-h/csshud.png
Projekte

Fri 30. Oct 2009, 03:21

by Dovahkiin Go to last post
5 2621
icon

Go to first new post Simple CSS Hack v0.5.4 Posted on: Fri 30. Oct 2009, 00:39

Stormy

preview Preview

Go To Post

Was brauch ich da für ne Garantie? Und was hat das mit L4D 1 zu tun? Logischer Zusammenhang?

Im übrigen hab ich von keinem meiner User mitbekommen, dass jemand gebannt wurde.
Wenn du der Meinung bist memhacks seien detected, bitte sehr. Dann sei dir selbst gegenüber aber so ehrlich und nimm deinen Cham Activator aus der Signatur und biete anderen Usern nicht die Hilfe beim memhacking an ;-)

Im Übrigen würde ich an deiner Stelle meine Beziehung zur deutschen Grammatik überdenken.
Projekte

Fri 30. Oct 2009, 03:21

by Dovahkiin Go to last post
5 2621
icon

Go to first new post Simple CSS Hack v0.5.4 Posted on: Fri 30. Oct 2009, 00:39

Stormy

preview Preview

Go To Post

zu 1.) Die Source Engine komplett umschmeissen? Würde Valve nicht tun Wenns ne andere Engine ist, wäre ich mit meinen Aussagen vorsichtiger.
zu 2.) k, steam detected nur manche Features weil die Herrschaften die sich um VAC  bzw. den Steamclient kümmern in die Mittagspause gegangen sind und sich anschliessend nie wieder blicken haben lassen. Meine User? Zwischen 2 und 3k am Tag. Dürfte für ne aussagekräftige Statistik ausreichen.
zu 3.) Gesundheit
zu PS der beste Keystore den gibts :-P
Projekte

Fri 30. Oct 2009, 03:21

by Dovahkiin Go to last post
5 2621
icon

Go to first new post PARTNER GESUCHT :D Posted on: Tue 4. Aug 2009, 22:37

funky-destroy

preview Preview

Go To Post

Heute war schönes Wetter und ich hatte ne Pizza und ein Zwiefex zum Abendessen...
Projekte

Fri 30. Oct 2009, 02:17

by Nbs23 Go to last post
4 789
icon

Go to first new post Geht das ?!??!? Posted on: Sun 18. Oct 2009, 21:06

SkrY*_-Fire

preview Preview

Go To Post

ich bin auch noch in a good standing
Counter-Strike: Source

Thu 22. Oct 2009, 00:51

by SkrY*_-Fire Go to last post
16 996
icon

Go to first new post [Release] ChamModels Activator v2.1 Posted on: Wed 16. Sep 2009, 00:22

Dovahkiin

preview Preview

Go To Post

den KH verweis würd ich persönlich raus nehmen ^^
Counter-Strike: Source

Wed 14. Oct 2009, 20:05

by disappearer Go to last post
7 1785