omertrans505
Efsane Üye
Merhaba, 5 saattır kodladığımı ReadWriteMemory DLL dosyası build edildim. Tüm functionlar test edildi, çalışıyor. Read ve Write String, Tek function çoklu offset mevcut.
CS:GO, wolftü, Point Blank, vb... tüm oyunları ReadWriteMemory kullanılarak hile yapabilirsiniz.
DLL bana aittir.
Önemli Functionlar:
Kod:
- ReadByte()
- ReadInteger()
- ReadLong()
- ReadFloat()
- ReadDouble
- ReadString() - Varsayılan string
- ReadStringCodepage() - Memory bulunan string. bilmeyen için Google araştırabilirsin.
- ReadArrayBytes()
- WriteByte()
- WriteInteger()
- WriteLong()
- WriteFloat()
- WriteDouble()
- WriteString()
- WriteStringCodepage()
Nasıl kullanılır?:
Kodlar Kullanımı:
C#:
WriteLong("Uygulama Adı", YadaPID, &H12345, "Value", &Hoffset, &Hoffset...);
Label1.text = ReadLong("Uygulama Adı", YadaPID, 0x12345, 0xoffset, 0xoffset...);
//Not: Uygulama yerine PID isteyen UygulamaAdı yerine null yazman yeterli.
vb.net için nothing
C# için null
Visual Basic:
Dim Mem As omertrans156_ReadWriteMemory.ReadWriteMemory = New omertrans156_ReadWriteMemory.ReadWriteMemory
'Offset'siz sadece Process name için örnek kodu:
Mem.WriteLong("Tutorial-i386", Nothing, &H648DBC0, "12345678912345678")
'Offset'siz sadece Process ID için örnek kodu:
Mem.WriteLong(Nothing, 7824, &H648DBC0, "12345678912345678")
'Offset'li sadece Process name için örnek kodu
Mem.WriteLong("Tutorial-i386", Nothing, CSH + &H1E1B18, "12345678912345678", &H88, &H304, &H55C, &H37C, &H6F8)
'Offset'li sadece Process ID için örnek kodu:
Mem.WriteLong(Nothing, 7824, CSH + &H1E1B18, "12345678912345678", &H88, &H304, &H55C, &H37C, &H6F8)
C#:
omertrans156_ReadWriteMemory.ReadWriteMemory Mem = new omertrans156_ReadWriteMemory.ReadWriteMemory();
//Offset'siz sadece Process name için örnek kodu:
Mem.WriteLong("Tutorial-i386", null, 0x648DBC0, "12345678912345678");
//Offset'siz sadece Process ID için örnek kodu:
Mem.WriteLong(null, 7824, 0x648DBC0, "12345678912345678")
//Offset'li sadece Process name için örnek kodu
Mem.WriteLong("Tutorial-i386", null, ModuleBaseAdress + 0x1E1B18, "12345678912345678", 0x88, 0x304, 0x55C, 0x37C, 0x6F8)
//Offset'li sadece Process ID için örnek kodu:
Mem.WriteLong(null, 7824, ModuleBaseAdress + 0x1E1B18, "12345678912345678", 0x88, 0x304, 0x55C, 0x37C, 0x6F8)
Bağlantıları görmek için lütfen
Giriş Yap
Bağlantıları görmek için lütfen
Giriş Yap
AoB Scan gelecek takip kalın.