Results 1 to 5 of 5
  1. #1
    PlSlYlClHlO's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    2

    (HELP PLEASE) Pinball Hack

    I've been tryng to learn C++ for a while.. and i'm having trouble... aside from being on Shitty internet... i just dont get it sometimes, and other times... my laptop shoots itself in the foot.


    heres my code
    Code:
    #include <windows.h>
    #include <iostream>
    
    using namespace std;
    int main()
    {
        
        FreeConsole();
    
    HANDLE ProcessHandle; 
    HWND hWnd;
    DWORD PinBallAddress = 0x007ACED2;
    DWORD PinBallAddress2 = 0x0007AFA94;
    DWORD Id;
    int points = 999999;
    hWnd = FindWindow(NULL, "3D Pinball for Windows - Space Cadet");
    while(!hWnd)
    {
    MessageBox(NULL, "hold the fuck on", "lookin for pinball", MB_OK);
    }
    if(!hWind) {
    MessageBox(NULL, "hold the fuck on", "lookin for pinball", MB_OK);
    }
    else
    {
    MessageBox(NULL, "pinball found", "shit.. it worked", MB_OK);
    
        GetWindowThreadProcessId(hWnd,&Id);
    ProcessHandle = OpenProcess(PROCESS_ALL_ACCESS,false,Id);
    while(ProcessHandle)
          
      WriteProcessMemory(ProcessHandle, (LPVOID)PinBallAddress, (LPCVOID)points, sizeof(points), NULL);   
    WriteProcessMemory(ProcessHandle, (LPVOID)PinBallAddress2, (LPCVOID)points, sizeof(points), NULL);  
    }               
    return (0);
    }

    and i'm getting this error
    Quote Originally Posted by DevC++
    Permission denied
    ld returned 1 exit status

    Help Anyone?

    Thanks in Advance

  2. #2
    Katie_Perry's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    3,082
    Reputation
    31
    Thanks
    175
    My Mood
    Sneaky
    You mean hack PinBall as in the Game built-in with the Computer?

  3. #3
    Ad litteram's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Tepic, Nayait. México.
    Posts
    1,391
    Reputation
    -5
    Thanks
    117
    My Mood
    Flirty
    lol... you wanna cheat in the pinball game? XD

    go here dude
    aparently the pinball have some built in cheats ^^
    A sinner once, a sinner twice!! No need for confession now...

    There is no sweet salvation
    Your soul belongs to me
    A screaming pain for redemption
    My angels watch you bleed


  4. #4
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused
    He's probably cheating it to teach himself hacking, thus a good thing. Any way, just remove return (0); dude. Then tell me the next error to fix, if one occurs. I also have a simpler hook source I can give you if problems persist. Try this though.

  5. #5
    orx's Avatar
    Join Date
    Jun 2008
    Gender
    male
    Location
    Estonia
    Posts
    59
    Reputation
    11
    Thanks
    4
    Yea probably it is for learning purposes , not to actually hack pinball , he is just getting a point , where to start hacking

    OrX

Similar Threads

  1. [Help Request] Please Help With Menu Hacks
    By power010 in forum Combat Arms Help
    Replies: 8
    Last Post: 08-26-2011, 04:36 AM
  2. [Help Request] help please hacks dont work
    By solomonjo0 in forum CrossFire Help
    Replies: 9
    Last Post: 07-10-2011, 07:49 PM
  3. [Help Request] PLEASE HELP G-FORCE HACK!!!!
    By baros123 in forum CrossFire Help
    Replies: 7
    Last Post: 06-15-2011, 08:12 PM
  4. help please search hack combat arms eu
    By grego in forum Combat Arms Coding Help & Discussion
    Replies: 2
    Last Post: 05-22-2011, 11:15 AM
  5. [Request] Map Hack RTS help please
    By CJJ in forum Hack Requests
    Replies: 0
    Last Post: 05-06-2007, 11:57 PM

Tags for this Thread