Results 1 to 4 of 4
  1. #1
    NoobieLouise
    NoobieLouise is offline
    Guest
    Join Date
    2012 Sep
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    [ASK] Help Create ReadProcessMemory + Looping in DLL File

    How to Create Bot with ReadProcessMemory in DLL File ??

    Detect Address and Value Process.
    help me please.

  2. #2
    freitag
    freitag is offline
    New member
    Join Date
    2012 Apr
    Posts
    7
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    not much sense in using rpm when you are going to create a dll (that will be probably injected...therefor you could access the memory directly)

  3. #3
    avril
    avril is offline
    Guest
    Join Date
    2012 Oct
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    you have to create a dynamic dll and inject

    Code:
    void Main()
    {
     // reading ...  
    }
    
    BOOL APIENTRY DllMain( HMODULE hModule,DWORD  ul_reason_for_call,LPVOID lpReserved)
    {
    	if (ul_reason_for_call == DLL_PROCESS_ATTACH)
    	{
    	DisableThreadLibraryCalls(hModule);
               MessageBoxA(NULL,"Im load!", "ok", MB_OK | MB_ICONINFORMATION);
    	CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)Main,NULL,0,NULL);
    	}
        return TRUE;
    }

  4. #4
    genuine
    genuine is offline
    New member
    Join Date
    2011 Aug
    Posts
    4
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    If youre creating a bot in a DLL file, you don't need to use ReadPRocessMemory, your DLL will already be in the games address space , therefore you have direct access to memory so say you have an address you want to write to, it can be done like so
    DWORD PTR address = 0x00678997;

    *address = 100; //write the value 100 to the data pointed to by "address".

    So no need for RPM/.

    You could alternatively use the function memset();
    Last edited by genuine; 2012-10-24 at 07:18 AM.

Similar Threads

  1. [Help] reading text value with readprocessmemory
    By elshabory in forum Delphi
    Replies: 5
    Last Post: 2013-01-07, 04:34 PM
  2. C#...ReadProcessMemory. ( Need Help)
    By pohkak in forum VB, .NET Framework
    Replies: 5
    Last Post: 2012-09-23, 02:36 PM
  3. [Tutorial] How To create a guild
    By Proaikagamer in forum Aika Guides, Tutorials
    Replies: 4
    Last Post: 2012-01-21, 02:19 PM
  4. [C++] ReadProcessMemory in C# Quick Example
    By Grooguz in forum C/C++
    Replies: 0
    Last Post: 2011-09-30, 04:26 PM
  5. [Guide] Gameobject lists without looping
    By Dwar in forum Perfect World Bots, Cheats
    Replies: 0
    Last Post: 2010-11-21, 03:27 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •