Results 1 to 14 of 14
  1. #1
    PimpB's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    3
    My Mood
    Sneaky

    TELE-KILL CODING!!!!

    LEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE EEEEEEEEEECHED before you would've flame me I had to of put that... Obviously this is not the whole thing..but feel free to give it a go for all you C++ advents!

    FYI this is for Combat Arms..Enjoy ^^

    Code:
    #include <windows.h>
    #include <stdio.h>
    /*Leeched from ***************.net*/
    
    DWORD *PlayerIsInamge = (DWORD*)0xPLAYER_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 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*)ab;
    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;
    }
    Last edited by PimpB; 12-30-2009 at 04:32 PM.

  2. The Following User Says Thank You to PimpB For This Useful Post:

    Void (12-30-2009)

  3. #2
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    I think for a lot of people who code in C++, the problem with making these type of hacks would be finding the addresses, not the actual code.

    Not saying I could make something like this.

  4. #3
    neofar's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    the minds of many
    Posts
    1,224
    Reputation
    22
    Thanks
    83
    My Mood
    Daring
    you gave us a reason to flame you.

    1: theres a million posts like this
    2: expect to be flamed when you leech :/
    3: it contains the websites name..
    thats advertisement my friend


    P.L.U.R.

  5. #4
    Bartdood's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Brit
    Posts
    61
    Reputation
    10
    Thanks
    3
    My Mood
    Psychedelic
    IVE SEEN THIS LIKE 100000 Times GTFO ******.
    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 []

  6. #5
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    neofar, you can't flame people for sharing. He's just sharing what he found with us, and as for the advertisement, he probably didn't mean to. He probably just wanted to know that he leeched it so he wouldn't get flamed.

  7. #6
    crushed's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    My name is Jay. k?
    Posts
    415
    Reputation
    10
    Thanks
    113
    My Mood
    Sneaky
    If you've seen it, then why are you wasting your time posting, I don't get why half of you can't just ignore shit. Lol. Ignorance is bliss.

  8. The Following 2 Users Say Thank You to crushed For This Useful Post:

    Void (12-30-2009),zeco (12-30-2009)

  9. #7
    Matrix_NEO006's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Posts
    240
    Reputation
    12
    Thanks
    33
    My Mood
    Lonely
    Quote Originally Posted by Davidm44 View Post
    I think for a lot of people who code in C++, the problem with making these type of hacks would be finding the addresses, not the actual code.

    Not saying I could make something like this.
    yup i mean i can code but its hard to find the addresses and some calculations.

  10. #8
    NuB_GhOsT's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Australia
    Posts
    1,083
    Reputation
    18
    Thanks
    60
    My Mood
    Devilish
    Cool Seen it e;se where but thanks for sharing

  11. #9
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    I've seen it in this section before... GTFO LEECHER
    Ah we-a blaze the fyah, make it bun dem!

  12. #10
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Davidm44 View Post
    I think for a lot of people who code in C++, the problem with making these type of hacks would be finding the addresses, not the actual code.

    Not saying I could make something like this.
    Very true.
    Expecially for CA.

  13. #11
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    So that's where headsup's shit teleport code came from... ;l

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  14. #12
    dean-wingess's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    409
    Reputation
    29
    Thanks
    213
    My Mood
    Stressed
    what the fuck is this?
    this code will never work its for Operation7 if you try it in ca your Cam will just move to this possition

  15. #13
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Quote Originally Posted by dean-wingess View Post
    what the fuck is this?
    this code will never work its for Operation7 if you try it in ca your Cam will just move to this possition
    I think if your cam moves you can kill the person.

    It's like that unmentionalble ghostmode... you see the person, and they don't see you. Your camera is moving.

  16. #14
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    You gotta get your position then put it to their position.

Similar Threads

  1. opk/tele kill
    By Effexx in forum Combat Arms Discussions
    Replies: 30
    Last Post: 11-05-2010, 08:46 PM
  2. How to use the opk and tele kill in FLAMESWOR10
    By wrijoy in forum Combat Arms Help
    Replies: 12
    Last Post: 09-21-2010, 07:58 AM
  3. Is Tele kill Or OPK allowed in hacks.?
    By Motion HD in forum Combat Arms Hacks & Cheats
    Replies: 31
    Last Post: 05-05-2010, 07:40 AM
  4. [Discussion] Tele kill and opk
    By ExT3sy in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 04-24-2010, 01:00 PM
  5. [Search] Tele Kill
    By peter101 in forum Combat Arms Europe Hacks
    Replies: 6
    Last Post: 04-21-2009, 06:02 AM