Ir para conteúdo
Faça parte da equipe! (2024) ×

[VB]Criando Hacks pro muaway


HackerDlll
 Compartilhar

Posts Recomendados

Atençao

 

Abra visual basic Clika com direio sua form adiciona medule e cole seguinte codigo..

 

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 "The Game Is Not Working", 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 "The Game Is Not Working", 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 "The Game Is Not Working", 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 "The Game Is Not Working", 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 "The Game Is Not Working", 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 "The Game Is Not Working", 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 "The Game Is Not Working", 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 "The Game Is Not Working", 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

 

2° Crie um ComandButton No caso vcs cria ai se for faze todos cria os 10 Button

 

Cole o seguinte codigo

 

Call WriteALong("PROCESSO DO MU AKI", &H <- NÃO APAGUEM O H E COLOQUEM O PROCESSO AKI, 1)

 

Exemplo

 

Call WriteALong("muaway", &H083A9444, 1)

Esse andress 083A944C e de cria guild quolquer lugar

 

Andress

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Dupe HaCker = 083A9444

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Guild HaCker = 083A944C

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Vault HaCker = 083A9441

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Bug Arma = 083906F0

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Repair HaCker = 083A945C

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Trade Hacker = 083A9424

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

AutoClick Esquerdo 088A35E4

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

AutoClick Direito 088A35CC

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Move HaCker = 1557B8

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Value Move HaCker:

 

~~> Lorencia ( 0 )

~~> Dungeon ( 1 )

~~> Devias ( 2 )

~~> Noria ( 3 )

~~> Lost Tower ( 4 )

~~> Arena ( 6 )

~~> Atlans ( 7 )

~~> Tarkan ( 8 )

~~> Icarus ( 10 )

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ADDRESS By: Fernando ^^

 

Meu Primeiro Projeto VB

 

Print

 

20pa5id.jpg

Link para o comentário
Compartilhar em outros sites

Este tópico está impedido de receber novos posts.
 Compartilhar

  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...

Informação Importante

Nós fazemos uso de cookies no seu dispositivo para ajudar a tornar este site melhor. Você pode ajustar suas configurações de cookies , caso contrário, vamos supor que você está bem para continuar.