[Help] Visual Basic 6 source

10/29/2014 21:52 emre811#1
Visual Basic 6 source Is there?

Can you share?
10/29/2014 22:00 Frankfurt1337#2
If you would tell us more, we MAYBE could help you. For what source? Server Files? WHAT?
10/30/2014 07:41 emre811#3
Quote:
Originally Posted by Frankfurt1337 View Post
If you would tell us more, we MAYBE could help you. For what source? Server Files? WHAT?
warrock hack source visual basic .
no c++
10/30/2014 10:42 r_a_z_0_r#4
Quote:
Originally Posted by emre811 View Post
warrock hack source visual basic .
no c++
Hackshield is protecting the WarRock process so you can't use ReadWriteMemory to modify addresses etc..
10/30/2014 16:54 Sleutel#5
This has been patched years ago. And why would you still use Visual basic 6? It's really out dated..

Anyways, you might have been looking for these API calls (I use them on VB.NET):
Code:
'API Declaration
    Public Declare Function GetWindowThreadProcessId Lib "user32" Alias "GetWindowThreadProcessId" (ByVal hWnd As Long, lpdwProcessId As Long) As Long
    Public Declare Function OpenProcess Lib "kernel32" Alias "OpenProcess" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
    Public Declare Function WriteProcessMemory Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As IntPtr, lpBuffer() As Byte, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    Public Declare Function CloseHandle Lib "kernel32" Alias "CloseHandle" (ByVal hObject As Long) As Long
    Public Declare Function FindWindowA Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
    Public Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
    Public Declare Function ReadProcessMemory Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As IntPtr, ByRef lpBuffer() As Byte, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
You still have to implement a way to get the process memory addresses + a way to read an byte array and convert it to the desired value.