• Trainer
  • Forums
  • Suche
  • Members
  • Kalender
  • Hilfe
  • Extras
Forum stats
Show team
Neue Beiträge ansehen
Heutige Beiträge ansehen
Home of Gamehacking - Archiv
Login to account Create an account
Login
Benutzername:
Passwort: Passwort vergessen?
 



  Home of Gamehacking - Archiv Coding Visual Basic 6, VB.NET
1 2 3 4 Weiter »
Problem Applying Aobscan

Thema geschlossen 
Ansichts-Optionen
Problem Applying Aobscan
DNA Offline
Administrator
*******
Beiträge: 1.330
Themen: 123
Registriert seit: May 2010
Bewertung: 26
#7
24.07.2011, 02:10 (Dieser Beitrag wurde zuletzt bearbeitet: 08.02.2016, 23:05 von DNA.)
change

Visual Basic Code
1
2
3
4
5
6
7
8
9
10
11
12
13
If GetAsyncKeyState(Keys.NumPad1) = &HFFFF8001 Then
            Dim cave As Integer = Allocmem()
            Dim firstscan As Int32
 
            firstscan = AOBSCAN("Brink", "brink", New Byte() {&H8B, &H9F, &H98, &H1B, &H0, &H0, &HD9, &HE8, &H33, &HF6})
 
            If Not firstscan = 0 Then
                WriteASM(cave, New Byte() {&HC7, &H87, &H98, &H1B, &H0, &H0, &HF4, &H1, &H0, &H0, &H8B, &H9F, &H98, &H1B, &H0, &H0, &HC3})
                WriteByte(cave + &H630, firstscan)
                AllocJump(firstscan, cave + &H9999, 1)
            End If
            sapi.speak("Activated")
        End If

to

Visual Basic Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
If GetAsyncKeyState(Keys.NumPad1) = &HFFFF8001 Then
            Dim cave As Integer = Allocmem()
            Dim firstscan As Int32
 
            firstscan = AOBSCAN("Brink", "brink", New Byte() {&H8B, &H9F, &H98, &H1B, &H0, &H0, &HD9, &HE8, &H33, &HF6})
 
            If Not firstscan = 0 Then
                WriteASM(cave, New Byte() {&HC7, &H87, &H98, &H1B, &H0, &H0, &HF4, &H1, &H0, &H0, &H8B, &H9F, &H98, &H1B, &H0, &H0, &HC3})
                WriteByte(cave + &H630, firstscan)
                AllocJump(firstscan, cave , 5)
                AllocJump(cave+17 ,firstscan+5 ,0)
            End If
            sapi.speak("Activated")
        End If



And change

Visual Basic Code
1
2
3
4
5
6
7
8
9
10
11
Public Function AllocJump(ByVal source As Int32, ByVal destination As Int32, Optional ByVal Nops As Integer = 0) As Boolean 'Creates a jump from the specified address to a destination address
        WriteByte(source, &HE8)
        WriteInt32(source + 1, destination - source - 5)
        If Nops = 0 Then
            Return 0
        End If
        For i As Int32 = 1 To Nops
            WriteByte(source + 4 + i, &H90)
        Next
        Return 0
    End Function


to

Visual Basic Code
1
2
3
4
5
6
7
8
9
10
11
Public Function AllocJump(ByVal source As Int32, ByVal destination As Int32, Optional ByVal Nops As Integer = 0) As Boolean 'Creates a jump from the specified address to a destination address
        WriteByte(source, &HE9)
        WriteInt32(source + 1, destination - source - 5)
        If Nops = 0 Then
            Return 0
        End If
        For i As Int32 = 1 To Nops
            WriteByte(source + 4 + i, &H90)
        Next
        Return 0
    End Function


Why do you have this one?

Visual Basic Code
WriteByte(cave + &H630, firstscan)

ACHTUNG: Lesen gefährdet die Dummheit

[Bild: dna-sig.gif]
Suchen
Share Thread:            
Thema geschlossen 


Nachrichten in diesem Thema
Problem Applying Aobscan - von giassamarkos - 23.07.2011, 22:11
RE: Problem Applying Aobscan - von DNA - 24.07.2011, 01:01
RE: Problem Applying Aobscan - von giassamarkos - 24.07.2011, 01:02
RE: Problem Applying Aobscan - von DNA - 24.07.2011, 01:05
RE: Problem Applying Aobscan - von giassamarkos - 24.07.2011, 01:07
RE: Problem Applying Aobscan - von giassamarkos - 24.07.2011, 01:08
RE: Problem Applying Aobscan - von DNA - 24.07.2011, 02:10
RE: Problem Applying Aobscan - von giassamarkos - 24.07.2011, 02:30
RE: Problem Applying Aobscan - von giassamarkos - 24.07.2011, 02:40
RE: Problem Applying Aobscan - von DNA - 24.07.2011, 13:20
RE: Problem Applying Aobscan - von giassamarkos - 24.07.2011, 21:02
RE: Problem Applying Aobscan - von DNA - 25.07.2011, 00:35
RE: Problem Applying Aobscan - von giassamarkos - 25.07.2011, 02:21
RE: Problem Applying Aobscan - von giassamarkos - 25.07.2011, 03:38
RE: Problem Applying Aobscan - von DNA - 25.07.2011, 19:45
RE: Problem Applying Aobscan - von giassamarkos - 26.07.2011, 00:03
RE: Problem Applying Aobscan - von Acubra - 26.07.2011, 00:19
RE: Problem Applying Aobscan - von giassamarkos - 26.07.2011, 01:45
RE: Problem Applying Aobscan - von giassamarkos - 26.07.2011, 00:26
RE: Problem Applying Aobscan - von giassamarkos - 26.07.2011, 07:18
RE: Problem Applying Aobscan - von DNA - 26.07.2011, 20:00
RE: Problem Applying Aobscan - von giassamarkos - 26.07.2011, 23:02
RE: Problem Applying Aobscan - von giassamarkos - 28.07.2011, 03:04
RE: Problem Applying Aobscan - von Serkan34D - 21.09.2015, 17:45
RE: Problem Applying Aobscan - von Acubra - 22.09.2015, 16:28

  • Druckversion anzeigen
  • Thema abonnieren


Benutzer, die gerade dieses Thema anschauen:
1 Gast/Gäste

  • Kontakt
  • Forum team
  • Forum stats
  • Nach oben
 
  • RSS-Synchronisation
  • Lite mode
  • Home of Gamehacking - Archiv
  • Help
 
Forum software by © MyBB - Theme © iAndrew 2014



Linearer Modus
Baumstrukturmodus