GamerzPlanet - For All Your Online Gaming Needs!!

Go Back   GamerzPlanet - For All Your Online Gaming Needs!! > Online Gaming > WarRock

WarRock Discuss anything about WarRock.



yo ne body got hack codes for vb6?

WarRock


Closed Thread
 
Thread Tools Display Modes
Old 10-11-2007, 07:02 AM   #1
Lurker
 
Last Online: 06-22-2008 08:51 AM
Join Date: Jul 2007
Posts: 7
Thanks: 0
Thanked 2 Times in 1 Post
gamerscoop is on a distinguished road
iTrader: 0 / 0%
Points: 373.00
Bank: 0.00
Total Points: 373.00
yo ne body got hack codes for vb6?

i wanna make some free public hax and need some code for vb6 cus im a noob lol nebody willing to give? my xfire is bwnerman and thx if u do peace.
gamerscoop is offline  
Sponsored Links
Old 10-11-2007, 07:36 AM   #2
Registered User
 
Last Online: 03-30-2008 10:33 PM
Join Date: Nov 2006
Posts: 95
Thanks: 11
Thanked 24 Times in 6 Posts
kukukuku is on a distinguished road
iTrader: 0 / 0%
Points: 1,294.00
Bank: 0.00
Total Points: 1,294.00
Re: yo ne body got hack codes for vb6?

It's described really well in this thread:
[Only registered and activated users can see links. ]

You can also use a memory trainer creation kit to do it though. You would search for the variables with memory scanning application like T-Search. Only if you could bypass the PB first though.
kukukuku is offline  
Old 10-11-2007, 05:45 PM   #3
Registered User
 
Last Online: 08-04-2008 10:02 PM
Join Date: Aug 2007
Age: 26
Posts: 12
Thanks: 7
Thanked 26 Times in 5 Posts
jonny1925 is on a distinguished road
iTrader: 0 / 0%
Points: 1,241.00
Bank: 0.00
Total Points: 1,241.00
Re: yo ne body got hack codes for vb6?

here are some undetecded adresses

Quote:
Undetected Addresses


Stamina : 007F2B34 - Freeze at 1120403456

Crosshair : 00943A3C - Freeze at 1

5th Slot : 00B4C7D0 - Freeze at 4

Scope : 00943A16 - Change value to 1

Instant Spawn :00B56F60 and 00E1FEC8 - Freeze @ 0

No Spread - Freeze all @ 0 00943A50, 00943A52, 00943A51, 00943A53

No recoil - Freeze all @ 0 00943A54, 00943A55, 00943A56, 00943A57, 00943A58, 00943A59



here is a undetecded modul


Quote:
Public Const PROCESS_ALL_ACCESS = &H1F0FFF
Dim f1holder As Integer
Dim timer_pos As Long
'API Declaration
Public Declare Function GetWindowThreadProcessId Lib "user32" (ByVal hWnd As Long, lpdwProcessId As Long) As Long
Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
Public Declare Function GetKeyPress Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
Public Declare Function ReadProcessMem Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
Public Function WriteAByte(gamewindowtext As String, address As Long, value As Byte)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 1, 0&
CloseHandle hProcess
End Function
Public Function WriteAnInt(gamewindowtext As String, address As Long, value As Integer)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 2, 0&
CloseHandle hProcess
End Function
Public Function WriteALong(gamewindowtext As String, address As Long, value As Long)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 4, 0&
CloseHandle hProcess
End Function
Public Function ReadAByte(gamewindowtext As String, address As Long, valbuffer As Byte)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 1, 0&
CloseHandle hProcess
End Function
Public Function ReadAnInt(gamewindowtext As String, address As Long, valbuffer As Integer)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 2, 0&
CloseHandle hProcess
End Function
Public Function ReadALong(gamewindowtext As String, address As Long, valbuffer As Long)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 4, 0&
CloseHandle hProcess
End Function
Public Function ReadAFloat(gamewindowtext As String, address As Long, valbuffer As Single)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
ReadProcessMem phandle, address, valbuffer, 4, 0&
CloseHandle hProcess
End Function
Public Function WriteAFloat(gamewindowtext As String, address As Long, value As Single)
Dim hWnd As Long
Dim pid As Long
Dim phandle As Long
hWnd = FindWindow(vbNullString, gamewindowtext)
If (hWnd = 0) Then
MsgBox "Das Spiel Ist Aus!", vbCritical, "Error"
End
Exit Function
End If
GetWindowThreadProcessId hWnd, pid
phandle = OpenProcess(PROCESS_ALL_ACCESS, False, pid)
If (phandle = 0) Then
MsgBox "Can't get ProcessId", vbCritical, "Error"
Exit Function
End If
WriteProcessMemory phandle, address, value, 4, 0&
CloseHandle hProcess
End Function

Last edited by jonny1925; 10-11-2007 at 05:48 PM..
jonny1925 is offline  
The Following User Says Thank You to jonny1925 For This Useful Post:
rusarmy1 (10-12-2007)
Old 10-12-2007, 09:51 AM   #4
Lurker
 
Last Online: 06-22-2008 08:51 AM
Join Date: Jul 2007
Posts: 7
Thanks: 0
Thanked 2 Times in 1 Post
gamerscoop is on a distinguished road
iTrader: 0 / 0%
Points: 373.00
Bank: 0.00
Total Points: 373.00
Re: yo ne body got hack codes for vb6?

thx both u guys ill try em
gamerscoop is offline  
Old 10-12-2007, 09:48 PM   #5
Lurker
 
Last Online: 02-14-2008 07:08 AM
Join Date: Jul 2007
Age: 17
Posts: 3
Thanks: 18
Thanked 1 Time in 1 Post
rusarmy1 is on a distinguished road
iTrader: 0 / 0%
Points: 0.00
Bank: 0.00
Total Points: 0
Re: yo ne body got hack codes for vb6?

its working !
rusarmy1 is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

All times are GMT -7. The time now is 09:09 AM.


Powered by: vBulletin
Copyright ©2008, GamerzPlanet.Net
SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc.
Network: GamerzPlanet | ForumzPlanet | GzPUpload | GzPArcade | GzP Host | Australian Poker | Watch Desperate Housewives | Visits: