OldSchoolHack

Registrieren / Anmelden Deutsch

Benutzersuche: cssuchtii

Such-Informationen
cssuchtii
Themen im Forum
Thema Forum Letzter Beitrag Beiträge Zugriffe
icon

Go to first new post 1.6 Triggerbot Erstellt am: Do 2. Feb 2012, 15:27

Pr1vateboy

preview Vorschau

Go To Post

naja Trigger only wird schwer...

Wenn du darauf verzichten würdest, lade dir einfach irgendeinen Hack aus Archiv, der nicht älter als 1 Jahr ist zum Beispiel EnhancedAim.

Um Vac musst du dir keine Gedanken machen, da es nicht mehr geupdated wird
Counter-Strike 1.6

So 5. Feb 2012, 11:04

von Mantarochen Go to last post
10 983
icon

Go to first new post Cheat Für esl versus :) Erstellt am: Mi 25. Jan 2012, 00:15

sultan

preview Vorschau

Go To Post

Organner ist auch nicht wirklich wire proof...

Es gibt keine Privates die wire proof sind, auch wenn sies behaupten!
Die einzige Möglichkeit wäre, man beauftragt einen Coder dir einen zu programmieren, allerdings müsstest du dafür schätzungsweise 1000+ Euro zahlen.
Außerdem kommt man an solche Programmierer meistens eh nur wenn man richtige Connections hat...
Counter-Strike: Source

Sa 4. Feb 2012, 19:10

von cssuchtii Go to last post
5 1657
icon

Go to first new post verkaufe cod:mw3 keys Erstellt am: Do 2. Feb 2012, 16:08

marcelmarcel

preview Vorschau

Go To Post

40 finde ich persönlich etwas zu viel, naja...

Will zwar nichts kaufen, aber wie siehts mit Treuhand aus?
Biete Tausche Verkaufe...

Fr 3. Feb 2012, 15:32

von KN4CK3R Go to last post
13 576
icon

Go to first new post CS 1.6 aimbot + Steam bypass Erstellt am: Do 2. Feb 2012, 15:37

Haxxx0r

preview Vorschau

Go To Post

#closerequest
Counter-Strike 1.6

Do 2. Feb 2012, 15:46

von cssuchtii Go to last post
4 1796
icon

Go to first new post lvl down Erstellt am: Mi 1. Feb 2012, 20:53

marcelmarcel

preview Vorschau

Go To Post

Es wäre hilfreich das Spiel zu nennen, um das es sich handelt
Call of Duty: Modern Warfare 3

Do 2. Feb 2012, 01:13

von SilverFire Go to last post
3 434
icon

Go to first new post color "triggerbot" Erstellt am: Sa 28. Jan 2012, 19:30

hollowman

preview Vorschau

Go To Post

VB Code:
  1. Imports System.Runtime.InteropServices
  2.  
  3. Public Class Form1
  4.  
  5. Public pixColor As Color = GetPixelColor(Cursor.Position.X, Cursor.Position.Y)
  6. Public modelcolor As Color = GetPixelColor(Cursor.Position.X, Cursor.Position.Y)
  7. Public ForeColorStr As String
  8. Public model As String
  9.  
  10.  
  11.  
  12. <DllImport("gdi32.dll")> _
  13. Private Shared Function CreateDC( _
  14. ByVal lpszDriver As String, _
  15. ByVal lpszDevice As String, _
  16. ByVal lpszOutput As String, _
  17. ByVal lpInitData As IntPtr) As IntPtr
  18. End Function
  19.  
  20. <DllImport("gdi32.dll")> _
  21. Private Shared Function DeleteDC(ByVal hdc As IntPtr) As Boolean
  22. End Function
  23.  
  24. <DllImport("gdi32.dll")> _
  25. Private Shared Function GetPixel( _
  26. ByVal hdc As IntPtr, _
  27. ByVal nXPos As Integer, _
  28. ByVal nYPos As Integer) As Integer
  29. End Function
  30.  
  31. Public Function GetPixelColor(ByVal x As Integer, ByVal y As Integer) As Color
  32. Dim hdcScreen As IntPtr = CreateDC("Display", Nothing, Nothing, IntPtr.Zero)
  33. Dim colorRef As Integer = GetPixel(hdcScreen, x, y)
  34. DeleteDC(hdcScreen)
  35.  
  36. Return Color.FromArgb(colorRef And &HFF, _
  37. (colorRef And &HFF00) >> 8, (colorRef And &HFF0000) >> 16)
  38. End Function
  39.  
  40. Public Declare Sub mouse_event Lib "user32" Alias "mouse_event" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)
  41.  
  42. Public Const MOUSEEVENTF_LEFTDOWN = &H2
  43. Public Const MOUSEEVENTF_LEFTUP = &H4
  44.  
  45. Public Sub SimulateClick()
  46. mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)
  47. mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)
  48. End Sub
  49.  
  50.  
  51. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  52.  
  53. 'Dim pixColor As Color = GetPixelColor(Cursor.Position.X, Cursor.Position.Y)
  54. 'Dim ForeColorStr As String = ColorTranslator.ToHtml(pixColor)
  55. 'Label1.Text = ForeColorStr
  56. Timer1.Enabled = False
  57. Timer2.Enabled = True
  58.  
  59.  
  60. End Sub
  61.  
  62. Public Declare Function GetAsyncKeyState Lib "user32.dll" (ByVal vKey As Int32) As UShort
  63.  
  64.  
  65.  
  66.  
  67.  
  68. Public Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
  69.  
  70.  
  71. Dim modelcolor As Color = GetPixelColor(Cursor.Position.X, Cursor.Position.Y)
  72. Dim model As String = ColorTranslator.ToHtml(modelcolor)
  73. Label2.Text = model
  74. Timer4.Enabled = True
  75.  
  76.  
  77.  
  78.  
  79. End Sub
  80.  
  81. Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
  82. If CBool(GetAsyncKeyState(Keys.F12)) Then
  83. Timer1.Enabled = True
  84. Dim pixColor As Color = GetPixelColor(Cursor.Position.X, Cursor.Position.Y)
  85. Dim ForeColorStr As String = ColorTranslator.ToHtml(pixColor)
  86. Label1.Text = ForeColorStr
  87.  
  88.  
  89.  
  90. ' Else : Timer1.Enabled = False
  91. 'Timer2.Enabled = False
  92. End If
  93. End Sub
  94.  
  95. Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer4.Tick
  96.  
  97. If model <> ForeColorStr Then
  98. SimulateClick()
  99. Timer2.Enabled = False
  100. Timer4.Enabled = False
  101.  
  102. Else
  103.  
  104.  
  105.  
  106. End If
  107.  
  108.  
  109. End Sub
  110. End Class

habs mal kurz in die VB tags gesetzt, weil cihs so unübersichtlich fand


Achja ich würde das alles in ner Do Loop Schleife machen, ist deutlich schneller und übersichtlicher
VB, C/C++, Delphi, etc

So 29. Jan 2012, 15:29

von cssuchtii Go to last post
15 1740
icon

Go to first new post color "triggerbot" Erstellt am: Sa 28. Jan 2012, 19:30

hollowman

preview Vorschau

Go To Post

Was machst du eigentlich mit den ganzen Timer
VB, C/C++, Delphi, etc

So 29. Jan 2012, 15:29

von cssuchtii Go to last post
15 1740
icon

Go to first new post color "triggerbot" Erstellt am: Sa 28. Jan 2012, 19:30

hollowman

preview Vorschau

Go To Post

Ich hätte das mithilfe von Chams gelöst, da ists dann ne eindeutige Pixelfarbe vom Gegner...
Das würde ohne Probleme gehen
VB, C/C++, Delphi, etc

So 29. Jan 2012, 15:29

von cssuchtii Go to last post
15 1740
icon

Go to first new post color "triggerbot" Erstellt am: Sa 28. Jan 2012, 19:30

hollowman

preview Vorschau

Go To Post

Soweit ich weiß nicht
VB, C/C++, Delphi, etc

So 29. Jan 2012, 15:29

von cssuchtii Go to last post
15 1740
icon

Go to first new post color "triggerbot" Erstellt am: Sa 28. Jan 2012, 19:30

hollowman

preview Vorschau

Go To Post

ja müsste eigentlich proof sein. Aber wirklich praktisch ist er nicht^^
VB, C/C++, Delphi, etc

So 29. Jan 2012, 15:29

von cssuchtii Go to last post
15 1740
icon

Go to first new post color "triggerbot" Erstellt am: Sa 28. Jan 2012, 19:30

hollowman

preview Vorschau

Go To Post

was funktioniert auf zBlock nicht? Ich mein keine Materials, Chams von  OSH
VB, C/C++, Delphi, etc

So 29. Jan 2012, 15:29

von cssuchtii Go to last post
15 1740
icon

Go to first new post CSS Pivate League Hack Erstellt am: Mi 25. Jan 2012, 17:46

atari01

preview Vorschau

Go To Post

Ich denk er weiß, was preislich auf ihn zukommen würde...
Counter-Strike: Source

Sa 28. Jan 2012, 13:57

von atari01 Go to last post
13 1562
icon

Go to first new post [VB.NET] CSS Hack fertig - VAC Proofing Erstellt am: Sa 21. Jan 2012, 20:10

Valv3Hacks

preview Vorschau

Go To Post

MemoryHacks, die nur Konsolenbefehle benutzen sind(soweit ich weiß) undetected
VB, C/C++, Delphi, etc

So 22. Jan 2012, 17:08

von Valv3Hacks Go to last post
6 1410
icon

Go to first new post [VB.NET] CSS Hack fertig - VAC Proofing Erstellt am: Sa 21. Jan 2012, 20:10

Valv3Hacks

preview Vorschau

Go To Post

Was für ein hack soll das überhaupt sein und welche Speicherbereiche benutzt du?
VB, C/C++, Delphi, etc

So 22. Jan 2012, 17:08

von Valv3Hacks Go to last post
6 1410
icon

Go to first new post Gibt es diesen Cheat für Pokemon Schwarz? Erstellt am: So 22. Jan 2012, 11:19

Lucyna

preview Vorschau

Go To Post

Sorry ich kenn mich mit Pokemon nich so aus, aber spielt man das online oder geht das nur im offline Modus?

im Offline Modus wäre das sogar ziemlich leicht möglich
Andere MMO und Strategie Spiele

So 22. Jan 2012, 13:58

von Lucyna Go to last post
3 445
icon

Go to first new post CS1.6 Hack Erstellt am: Sa 21. Jan 2012, 17:44

guenthher

preview Vorschau

Go To Post

Im prinzip sind so ziemlich alle Hacks im Hackarchiv, die nicht älter als ein Jahr sind, undetected, da VAC bei cs 1.6 nicht mehr geupdated wird.

Normalerweise wirst du keine Probleme haben mit 64 bit, zumindestens hatte ich nie welche
Counter-Strike 1.6

So 22. Jan 2012, 12:14

von cssuchtii Go to last post
5 628
icon

Go to first new post CS1.6 Hack Erstellt am: Sa 21. Jan 2012, 17:44

guenthher

preview Vorschau

Go To Post

https://www.oldschoolhack.me/hackarchiv_file_2908_enhancedaim-cracked-cs16.html

vielleicht geht der noch...
Counter-Strike 1.6

So 22. Jan 2012, 12:14

von cssuchtii Go to last post
5 628
icon

Go to first new post Winject (Injektor) Erstellt am: Fr 20. Jan 2012, 20:32

Old School Hack

preview Vorschau

Go To Post

unnötig?
Mülleimer

Fr 20. Jan 2012, 22:17

von System Go to last post
2 2763
icon

Go to first new post Memory Hacks Erstellt am: Mi 11. Jan 2012, 17:13

mambasta

preview Vorschau

Go To Post

MemoryHacks sind, wie du vermutet hast, erst dann detected, wenn sie einen falschen Spreicherbereich benutzen...

Du kannst somit eigentlich alle Konsolenbefehle für deine MemoryHacks benutzen, ohne irgendwelche bedenken zu haben.

Es kommt drauf an, ob die Adresse im .Code oder .Data Bereich liegt, falls sie im .Data liegt, wäre es undetected.
Counter-Strike: Source

Do 19. Jan 2012, 14:48

von mambasta Go to last post
9 547
icon

Go to first new post Memory Hacks Erstellt am: Mi 11. Jan 2012, 17:13

mambasta

preview Vorschau

Go To Post

@xst:

War das nicht immer so, dass wenns im .Data liegt, es nicht zu finden ist...
war doch vor einer Woche auch noch so?
Counter-Strike: Source

Do 19. Jan 2012, 14:48

von mambasta Go to last post
9 547