Page 2 of 7 FirstFirst 1234 ... LastLast
Results 16 to 30 of 91
  1. #16
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    same here bro
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  2. #17
    wilson-'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed
    Upload the complied DLL here. I will work on it.

  3. #18
    randomnamekabe's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    In The Thread
    Posts
    3,682
    Reputation
    25
    Thanks
    624
    Quote Originally Posted by wilson- View Post
    Upload the complied DLL here. I will work on it.
    Nowhone has a compiled DLL cause this is not a completed code.

  4. #19
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    1. It should be a DLL, not an app
    2. I just LOVE how so many noobs think they can copy/paste source code and expect it to work.
    3. Correct me if Im wrong, but you need to get the Player Pointer for this to work.

  5. The Following User Says Thank You to Iamazn1 For This Useful Post:

    headsup (12-01-2009)

  6. #20
    NeonNoise's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    ten steps ahead of you
    Posts
    593
    Reputation
    38
    Thanks
    42
    My Mood
    Amused
    yea your right

  7. #21
    BrianV12's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Here
    Posts
    169
    Reputation
    10
    Thanks
    20
    My Mood
    Relaxed
    Wow. Nice try. Copy and pasting. Lol.

  8. #22
    RawVb's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    SoFLa
    Posts
    81
    Reputation
    10
    Thanks
    6
    Post a more thorough post I am getting a lot of errors >.>

    and so are others

    EDIT:: Headsup posted the same thing Why would you make another post>?
    Last edited by RawVb; 11-30-2009 at 10:31 PM.

  9. #23
    DaBombMonster's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Earth
    Posts
    32
    Reputation
    10
    Thanks
    3
    My Mood
    Fine

    Yeah

    Copy and Pasting lol... whole bunch of errors i'am getting

    ________

    *I should put a Sig in here*

    DON'T MESS WITH MPGH

  10. #24
    Bartdood's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Brit
    Posts
    61
    Reputation
    10
    Thanks
    3
    My Mood
    Psychedelic

    Smile

    #include "stdafx.h"
    #include "CaHack1.h"
    #include <windows.h>
    #include <stdio.h>
    /*Creditz goes to headsup*/

    DWORD *PlayerIsIngame = (DWORD*)PLAYER_POINTER ;

    int ArrayX[100];
    int ArrayY[100];
    int ArrayZ[100];

    int curx, cury, curz;
    int ArraySwitch=0, ArraySwitch2=0;

    DWORD X, Y, Z;
    DWORD WINAPI SetTeleportCoor (LPVOID);
    DWORD WINAPI SaveTeleportCoor(LPVOID);
    DWORD WINAPI ArrayTeleport(LPVOID);

    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)SaveTeleportCoor, NULL, NULL, NULL);
    CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)SetTeleportCoor, NULL, NULL, NULL);
    }
    return TRUE;
    }

    DWORD WINAPI SetTeleportCoor(LPVOID)
    {
    for( ; ; )
    {
    if(*PlayerIsIngame)
    {
    X = ( PLAYER_POINTER );
    X = *(DWORD*)X;
    X += 0x18c; //Offset X
    curx = *(int*)X;

    Y = ( PLAYER_POINTER );
    Y = *(DWORD*)Y;
    Y += 0x194; //Offset Y
    cury = *(int*)Y;

    Z = (PLAYER_POINTER);
    Z = *(DWORD*)Z;
    Z += 0x190; //Offset Z
    curz = *(int*)Z;

    if(GetAsyncKeyState(VK_NUMPAD8)&1) // Saving Current Possition
    {

    ArrayX[ArraySwitch] = curx;
    ArrayY[ArraySwitch] = cury;
    ArrayZ[ArraySwitch] = curz;
    ArraySwitch++;
    Sleep(2);

    }
    }
    }
    return 0;
    }

    DWORD WINAPI ArrayTeleport(LPVOID)
    {
    for( ; ; )
    {
    if(GetAsyncKeyState(VK_NUMPAD1)&1) //Teleport Forward
    {

    DWORD *first = (DWORD*)X;
    *(int*)X = ArrayX[ArraySwitch2];
    DWORD *secound = (DWORD*)Y;
    *(int*)Y = ArrayY[ArraySwitch2];
    DWORD *third = (DWORD*)Z;
    *(int*)Z = ArrayZ[ArraySwitch2];
    Sleep(1);
    ArraySwitch2++;

    }
    if(GetAsyncKeyState(VK_NUMPAD2)&1) //Teleport Backward
    {

    ArraySwitch2--;

    DWORD *first = (DWORD*)X;
    *(int*)X = ArrayX[ArraySwitch2];
    DWORD *secound = (DWORD*)Y;
    *(int*)Y = ArrayY[ArraySwitch2];
    DWORD *third = (DWORD*)Z;
    *(int*)Z = ArrayZ[ArraySwitch2];
    Sleep(1);
    }
    Sleep(21);
    }
    return 0;
    }
    If You Look PlayerIngame Or Something Was Spelled Wrong I Corrected That And Much More So Now Theres Only 4 Errors
    I think I'm Closer Than Pika I Just Dont Understand The PLAYER_POINTER ,,, Sorry Guys I'll Need A Bit More Work With It.
    Last edited by Bartdood; 12-01-2009 at 01:15 PM. Reason: Theres winkys
    Get Called Hacker When Not Actually Hacking []
    Get Called Hacker When Hacking []
    Get Banned []
    Get KDR 1 []
    Get KDR 2 []
    Get KDR 3 []
    Get To A High Rank []
    Get Banned On A High Rank Account []
    Get Banned Lots Of Times []
    Finish this shit list []

  11. #25
    randomnamekabe's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    In The Thread
    Posts
    3,682
    Reputation
    25
    Thanks
    624
    Quote Originally Posted by Bartdood View Post
    If You Look PlayerIngame Or Something Was Spelled Wrong I Corrected That And Much More So Now Theres Only 4 Errors
    I think I'm Closer Than Pika I Just Dont Understand The PLAYER_POINTER ,,, Sorry Guys I'll Need A Bit More Work With It.
    Nice.
    I dont understand the pointers either.

    Oh.... I do. but first we need c memory hacking engine like cheat engine to get the pointers.

  12. #26
    Bartdood's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Brit
    Posts
    61
    Reputation
    10
    Thanks
    3
    My Mood
    Psychedelic
    So what do we need to do with cheat engine? and cheat engine shuts down ca so... were screwed?
    Get Called Hacker When Not Actually Hacking []
    Get Called Hacker When Hacking []
    Get Banned []
    Get KDR 1 []
    Get KDR 2 []
    Get KDR 3 []
    Get To A High Rank []
    Get Banned On A High Rank Account []
    Get Banned Lots Of Times []
    Finish this shit list []

  13. #27
    randomnamekabe's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    In The Thread
    Posts
    3,682
    Reputation
    25
    Thanks
    624
    Quote Originally Posted by Bartdood View Post
    So what do we need to do with cheat engine? and cheat engine shuts down ca so... were screwed?
    We need some memory hacking thing like MHS or cheat engine to find the coordinates and the addy of that coordinates to get the pointer.

    Then we put the pointer in and it should get us closer or finish it.

  14. #28
    Bartdood's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Brit
    Posts
    61
    Reputation
    10
    Thanks
    3
    My Mood
    Psychedelic
    Ok , That Doesnt Make Sense To Me Because I've Been Learning C++ For 2Days But Im Getting A Grasp So... I'll See If I Know What Your Mean When I Get A Bit Better.
    Get Called Hacker When Not Actually Hacking []
    Get Called Hacker When Hacking []
    Get Banned []
    Get KDR 1 []
    Get KDR 2 []
    Get KDR 3 []
    Get To A High Rank []
    Get Banned On A High Rank Account []
    Get Banned Lots Of Times []
    Finish this shit list []

  15. #29
    granter101's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Aussssssssieeeee
    Posts
    54
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    Very close, change the x-mode code to the reverse axis-v

    Hope this helped

    (this is the pointer)

  16. #30
    randomnamekabe's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    In The Thread
    Posts
    3,682
    Reputation
    25
    Thanks
    624
    Quote Originally Posted by Bartdood View Post
    Ok , That Doesnt Make Sense To Me Because I've Been Learning C++ For 2Days But Im Getting A Grasp So... I'll See If I Know What Your Mean When I Get A Bit Better.
    I am talking about a completely seperate program and idea.
    We use c++ (the code provided in this thread)
    and we use the memory pointers (we need to find them) and then we have our hack.

Page 2 of 7 FirstFirst 1234 ... LastLast

Similar Threads

  1. Buying *working* and *undetectable* Hacks
    By major clucker in forum Trade Accounts/Keys/Items
    Replies: 1
    Last Post: 12-30-2007, 03:53 PM
  2. [Working] Adventure Quest Hack
    By Papaya in forum BattleOn Games Hacks, Cheats & Trainers
    Replies: 12
    Last Post: 08-15-2007, 04:55 AM
  3. (release)!!!marien teleport hack!!!!!!!!
    By prox32 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 07-27-2007, 08:37 PM
  4. LVL 16 wr account + Working Bypass + Some hacks for a retail code
    By eusker03 in forum Trade Accounts/Keys/Items
    Replies: 2
    Last Post: 06-11-2007, 03:49 AM
  5. [Trade]Working bypass for Hacks
    By xxpagxx in forum WarRock - International Hacks
    Replies: 17
    Last Post: 05-21-2007, 01:11 PM

Tags for this Thread