Page 3 of 3 FirstFirst 123
Results 31 to 36 of 36
  1. #31
    Bluthera's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Location
    Shibuya, Tokyo
    Posts
    2,375
    Reputation
    13
    Thanks
    373
    My Mood
    Tired
    Quote Originally Posted by Melodia View Post
    I am far from being one of the best coders of MPGH, Lawl, Just take a look in the coding sections, There are best people.
    Yea. Look over here, Melodia is the best. Hawk and I just ask around for codes we can twiddle with. Well I do. Hawk just asks for minor stuff

    But while Melodia is awesome, you can go ahead and as NextGen for VB, or Why06 for C++
    [IMG]https://i564.photobucke*****m/albums/ss89/JRendell21/Graphics/Flow-Signature.jpg[/IMG]

  2. #32
    meeeeeeeeee's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    113
    Reputation
    13
    Thanks
    37
    I asked nextgen and he said oh it's so simple blah blah blah, so that didn't really help.
    But why are you banned?

  3. #33
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by meeeeeeeeee View Post
    I asked nextgen and he said oh it's so simple blah blah blah, so that didn't really help.
    But why are you banned?
    hmmmmmmmmmmm............

    Which part of your question did you askme in which I said..."blah blah blah"

    Windows API is readily available to use, with tons of documentation, probably more documentation then any other form of documentation there is.

    Module Makers are pieces of software that replaces the atypical code with random (strings) so it is "undetected"

    Writing memory is easy once you are undetected , it

    Writeprocessmemory

    [php]
    <DllImport("kernel32.dll", SetLastError:=True)> _
    Public Shared Function WriteProcessMemory(ByVal hProcess As IntPtr, ByVal lpBaseAddress As IntPtr, ByVal lpBuffer As Byte(), ByVal nSize As System.UInt32, <Out()> ByRef lpNumberOfBytesWritten As Int32) As Boolean
    End Function
    [/php]

    Example of use

    [php]
    Public Shared Function Poke(ByVal proc As Process, ByVal target As Integer, ByVal data As Byte()) As Boolean
    Return WriteProcessMemory(proc.Handle, New IntPtr(target), data, data.Length, 0)
    End Function
    [/php]

    You can also readprocessmemory()

    [php]
    Private Declare Function ReadProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByRef lpBuffer As Single, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer _
    ) As Integer
    [/php]

    Example
    Add textbox

    [php]
    ReadProcessMemory(pHandle, BaseAddress,str, 1, 0 & Text1.text)=str
    [/php]

    so in research you can probally find a more detailed explanation, If I said "it was easy" I will usually offer a suggestion as to why I believe it should be easy.

    In a trainer you will need

    CloseHandle, OpenProcess, WriteProcessMemory. All Api to be referenced in your project

    [php]
    <DllImport("kernel32.dll")> _
    Public Shared Function CloseHandle(ByVal hObject As IntPtr) As Int32
    End Function
    <DllImport("kernel32.dll")> _
    Public Shared Function OpenProcess(ByVal dwDesiredAccess As UInt32, ByVal bInheritHandle As Int32, ByVal dwProcessId As UInt32) As IntPtr
    End Function
    <DllImport("kernel32.dll")> _
    Public Shared Function WriteProcessMemory(ByVal hProcess As IntPtr, ByVal lpBaseAddress As IntPtr, ByVal lpBuffer As UInteger(), ByVal nSize As UInt32, ByVal lpNumberOfBytesWritten As IntPtr) As Int32
    End Function
    [/php]

    Once added, you would use it like this

    [php]
    Dim pHandle As IntPtr
    Dim Address As IntPtr = DirectCast(&Hca0c62, IntPtr)
    Dim Write As UInteger() = New UInteger() {&Hfffff}

    Dim proc As System.Diagnostics.Process() = System.Diagnostics.Process.GetProcessesByName("PIN BALL")

    pHandle = OpenProcess(&H1f0fff, 0, DirectCast(proc(0).Id, UInt32))
    WriteProcessMemory(pHandle, Address, Write, 4, DirectCast(0, IntPtr))
    CloseHandle(pHandle)
    [/php]


    if thats what you needed

    all of this is the norm, and microsoft has tons of documentation , MSDN

    Last edited by NextGen1; 03-19-2010 at 12:17 AM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. The Following User Says Thank You to NextGen1 For This Useful Post:

    Melodia (03-19-2010)

  5. #34
    meeeeeeeeee's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    113
    Reputation
    13
    Thanks
    37
    you dindn't say the blah blah blah part i just didn't wan't to type it all

  6. #35
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    I know, I was kidding


     


     


     



    The Most complete application MPGH will ever offer - 68%




  7. #36
    Melodia's Avatar
    Join Date
    Dec 2009
    Gender
    female
    Posts
    2,608
    Reputation
    276
    Thanks
    1,662
    My Mood
    Dead
    Quote Originally Posted by NextGen1 View Post


    hmmmmmmmmmmm............

    Which part of your question did you askme in which I said..."blah blah blah"

    Windows API is readily available to use, with tons of documentation, probably more documentation then any other form of documentation there is.

    Module Makers are pieces of software that replaces the atypical code with random (strings) so it is "undetected"

    Writing memory is easy once you are undetected , it

    Blah Blah...
    Thanks for helping him, This is VB'ry, Witch I don't like, But you explained better than anoyone could, Mr. VB Minion

    @meee

    Any advencement ?
    Love You All~

Page 3 of 3 FirstFirst 123

Similar Threads

  1. Learn how to code C++ || Day 3 - Variables and Date Types
    By P0SEID0N in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 8
    Last Post: 04-16-2010, 09:26 PM
  2. Learn how to code C++ || Day 3 - Variables and Date Types
    By P0SEID0N in forum C++/C Programming
    Replies: 5
    Last Post: 04-16-2010, 02:51 AM
  3. Free list of Premium and non-Premium accounts
    By pkerkid in forum WarRock - International Hacks
    Replies: 5
    Last Post: 02-14-2009, 06:29 PM
  4. BUYING LVL 21-29 NON PREMIUM AND NON RETAIL VIA MAIL
    By UberlyPwned in forum Trade Accounts/Keys/Items
    Replies: 0
    Last Post: 10-25-2007, 02:36 PM
  5. Trigger Macro (NEED A NON USB MOUSE AND QMACRO)
    By sf0d in forum WarRock - International Hacks
    Replies: 6
    Last Post: 04-24-2007, 10:20 PM