Originally Posted by
Maxisking889
can we get banned with this or not?
3rd party application... bannable only if you get caught.
i would love to see the code for this thing, fascinating... i have looked at WoW memory back in pre-bc and i have not seen anything that points to this being open like that. Are you reading in directX DLL mem(loaded by WoW to manage the graphics) to find where the mob models are? +Reped you
amazing, i have not wrote any program that has successfully read+modified memory without crash, mainly just data processing applications. Did manage to make some processes invisible by using sample search/replace code though... that dosn't count though since it was sample code.
if you don't mind posting source code? 
Edit: Thx, how did you manage to find all them memory addresses? currently trying to understand your code, didn't know background worker could be that use full.... almost done converting to vb.net to simplify it... sorry i don't work with C# as much as vb, since vb was my first language learned... my C skills are not good enough to work with it in C#
... all errors resolved to vb.net equivalence.. but it appiers there is a missing file... something to do with the memory reading class... meant to look generaly like this:
Code:
Imports System
Public Class Memory
Public Sub New()
End Sub
Public Function CloseProcess() As Boolean
End Function
Public Function IsReady() As Integer
End Function
Public Function ReadFloat(ByVal Address As IntPtr) As Single
End Function
Public Function ReadInt(ByVal MemoryAddress As IntPtr) As Integer
End Function
Public Function ReadInt32(ByVal MemoryAddress As IntPtr) As Integer
End Function
Public Function ReadInt64(ByVal MemoryAddress As IntPtr) As Long
End Function
Public Function ReadLong(ByVal MemoryAddress As IntPtr) As Long
End Function
Public Function ReadRaw(ByVal MemoryAddress As IntPtr, ByVal Len As UInteger) As Byte()
End Function
Public Function ReadString(ByVal MemoryAddress As IntPtr) As String
End Function
Public Function ReadString(ByVal MemoryAddress As IntPtr, ByVal Len As UInteger) As String
End Function
Public Function ReadUInt(ByVal MemoryAddress As IntPtr) As UInteger
End Function
Public Function ReadUInt32(ByVal MemoryAddress As IntPtr) As UInteger
End Function
Public Function ReadUInt64(ByVal MemoryAddress As IntPtr) As ULong
End Function
Public Function ReadULong(ByVal MemoryAddress As IntPtr) As ULong
End Function
Public Function SetProcess(ByVal process As Object, ByVal Mode As String) As Boolean
End Function
Public Function WriteDouble(ByVal MemoryAddress As IntPtr, ByVal Data As Double) As Integer
End Function
Public Function WriteFloat(ByVal MemoryAddress As IntPtr, ByVal Data As Single) As Integer
End Function
Public Function WriteInt(ByVal MemoryAddress As IntPtr, ByVal Data As Integer) As Integer
End Function
Public Function WriteInt32(ByVal MemoryAddress As IntPtr, ByVal Data As Integer) As Integer
End Function
Public Function WriteInt64(ByVal MemoryAddress As IntPtr, ByVal Data As Long) As Integer
End Function
Public Function WriteLong(ByVal MemoryAddress As IntPtr, ByVal Data As Long) As Integer
End Function
Public Function WriteString(ByVal MemoryAddress As IntPtr, ByVal Data As String) As Integer
End Function
Public Function WriteUInt(ByVal MemoryAddress As IntPtr, ByVal Data As UInteger) As Integer
End Function
Public Function WriteUInt32(ByVal MemoryAddress As IntPtr, ByVal Data As UInteger) As Integer
End Function
Public Function WriteUInt64(ByVal MemoryAddress As IntPtr, ByVal Data As ULong) As Integer
End Function
Public Function WriteULong(ByVal MemoryAddress As IntPtr, ByVal Data As ULong) As Integer
End Function
End Class
i will look around for a class equive for it... sorry that code is in vb.net
Think i will need to write a DLL in C and use it in vb to achieve it, to bad i am not good with C