I wish VB made sense to me. ~~ didn't code this, it's copy-pastaCode:Public Declare Function WriteProcessMemory Lib "kernel32" (ByVal hProcess As Integer, ByVal lpBaseAddress As Integer, ByRef lpBuffer As Long, ByVal nSize As Integer, ByRef lpNumberOfBytesWritten As Integer) As Integer Public Declare Function OpenProcess Lib "kernel32" (ByVal dwDesiredAccess As Integer, ByVal bInheritHandle As Integer, ByVal dwProcessId As Integer) As IntPtr Public Declare Function CloseHandle Lib "kernel32" (ByVal hObject As IntPtr) As Integer Public Const PROCESS_VM_ALL As Integer = &H1F0FFF Public Sub write_memory(ByVal adress As Integer, ByVal value As Long, ByVal bytes As Integer) Dim pHandle As IntPtr Dim proc As Process() = Process.GetProcessesByName("League of Legends") If Not (proc.Length = 0) Then pHandle = OpenProcess(PROCESS_VM_ALL, 0, proc(0).Id) If Not (pHandle = 0) Then WriteProcessMemory(pHandle, adress, value, bytes, 0) End If CloseHandle(pHandle) End If End Sub
Oh, there's also a .exe -> League of Legends Zoom hack
Too lazy to write more atm.
Results 1 to 4 of 4
Thread: VB - LOL Zoom hack
- 30 Jan. 2014 03:41am #1
- Join Date
- Apr. 2013
- Location
- Minnesota
- Posts
- 1,325
- Reputation
- 114
- LCash
- 0.00
VB - LOL Zoom hack
https://discord.gg/TvN6xUb ~ chat on discord pls.
- 01 Feb. 2014 04:28am #2
Interesting info yo.
I could be wrong, since I don't know VB either lmao, but the code seems incomplete.
Looks like it's meant to write memory to League. Modifies some address associated with zoom I'm assuming.
What does the zoom hack actually do?I don't get tired.
- 01 Feb. 2014 04:45am #3
- 01 Feb. 2014 04:46am #4
Noo