Results 1 to 5 of 5
  1. #1
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed

    [Help]Bad Suffix

    I was using WriteProcessMemory() function and it said "bad suffix" on my address, what does that mean?

  2. #2
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by 258456 View Post
    I was using WriteProcessMemory() function and it said "bad suffix" on my address, what does that mean?
    how are you writing your address?
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  3. #3
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    WriteProcessMemory(Blah blah, (void*) 00001834C, blah blah, blah, NULL);


    well i was hacking a flash game on the internet, here is my code:

    Code:
    #include <windows.h>
    #include <iostream>
    int main()
    {
    DWORD newdata = 0x1181C719;
    	DWORD newdatasize = sizeof(newdata);
    	DWORD pid = 6864;
    	HWND WindowHandle = FindWindow(NULL, TEXT("Catapult Madness | Armor Games"));
    while(!WindowHandle) //If the handle is null...
    {
    Sleep(50); //Wait 50 miliseconds..
    WindowHandle = FindWindow(NULL,TEXT("Catapult Madness | Armor Games"));//and try again
    }
    GetWindowThreadProcessId(WindowHandle, & pid);
    HANDLE ProcessHandle = OpenProcess(PROCESS_ALL_ACCESS, 0, pid);
    WriteProcessMemory(ProcessHandle, (void*) 00001871C ,&newdata, newdatasize, (NULL)); 
    
    
    }
    Last edited by 258456; 08-28-2010 at 12:08 PM.

  4. #4
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Change 00001871C to 0x00001871C. The compiler assumes everything is decimal without the suffix.

  5. The Following 3 Users Say Thank You to Void For This Useful Post:

    258456 (08-29-2010),Hell_Demon (08-29-2010),why06 (08-29-2010)

  6. #5
    258456's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    ghjghj
    Posts
    1,222
    Reputation
    18
    Thanks
    300
    My Mood
    Relaxed
    thanks void as usual lol

Similar Threads

  1. PLS HELP BAD UNSTABLE PING
    By whgan in forum CrossFire Help
    Replies: 4
    Last Post: 05-06-2010, 01:08 PM
  2. need help bad
    By urmom3 in forum Combat Arms Help
    Replies: 3
    Last Post: 04-02-2010, 10:02 PM
  3. Really need help badly.
    By elliscp01 in forum Combat Arms Help
    Replies: 5
    Last Post: 01-30-2010, 05:10 AM
  4. Need help, BADLY.
    By bobs__bees in forum CrossFire Hacks & Cheats
    Replies: 1
    Last Post: 08-13-2009, 02:25 PM
  5. I Need Help... BADLY
    By inkjet555 in forum CrossFire Hacks & Cheats
    Replies: 1
    Last Post: 07-30-2009, 03:17 AM