Aşağıdaki kodları butonlara kodlayarak hilenize csh, bin ve obj ekleyebilirsiniz, obj butonunu oyun içinde aktif ediniz.
Kod:
Kod:
CSH Kodu
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("csh") <> -1 Then
Label1.Text = moz.BaseAddress.ToString
End If
Next
OBJ Kodu
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("obj") <> -1 Then
Label3.Text = moz.BaseAddress.ToString
End If
Next
.Bin Kodu
Dim p As Process = Process.GetProcessesByName("wolftü.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("wolftü.bin") <> -1 Then
Label2.Text = moz.BaseAddress.ToString
End If
Next
Beyler maalesef kod da bir sıkıntı olmuş fontları almamış nedenini bilmiyorum ama düzeltmeye çalışıcam..