Page 1 of 5 123 ... LastLast
Results 1 to 15 of 63
  1. #1
    ainkut's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    14
    My Mood
    Innocent

    Fireteam OPK hack coding

    Ok I'll list some stuff.

    I'm wanting to learn to code a Fireteam OPK. Not deathmatch, CTF...well...maybe OMA...dang it! not now..

    Fireteam. Y'know, Cabin Fever, Sand Hog..those ones.

    So here's what I got:
    powerfear's hotkey base
    most up to date LT Client and player addresses(blessings to you Blood!)
    and time. oh boy do i have time! and two college courses in c++.

    So. first step is...to find the XYZ of a random NPC? then push me above them, like a Z or Y up...? ok maybe more than one or two...or something?

  2. The Following 3 Users Say Thank You to ainkut For This Useful Post:

    alex606516 (06-21-2010),codykegg (06-22-2010),Glixxxer (07-07-2010)

  3. #2
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    How much C++ do you know and how much about reversing.

  4. #3
    ainkut's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    14
    My Mood
    Innocent
    I've looked completely through powerfear's base and I understand most of it, only ones I don't are the keys to hex code for keypress. That enough? I can learn fast if need be. Pretty much, never done anything really hardcore hacking.

  5. #4
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    First, find the NPC structure, reverse it, then find the XYZ locations of them. Then change your XYZ to their XYZ. (+25 for Y for telekill).
    Keep me motivated for my hack development!

  6. The Following 2 Users Say Thank You to J For This Useful Post:

    drkillface (07-07-2010),higatoria (07-06-2010)

  7. #5
    ~SuperPlayer~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In A Dark House, And I Hear Voices D:!
    Posts
    351
    Reputation
    9
    Thanks
    35
    My Mood
    Angelic
    good luck with that i hope you figure it out


    EDIT : Blood Ur New Ur a MPGH & 89 Posts Kool Thats Really Impressive.
    Last edited by ~SuperPlayer~; 06-17-2010 at 06:58 AM.

    "Art, like morality, consists in drawing the line somewhere."

    Successful Trades :
    12

    Accounts In Process of Ranking :
    8

  8. #6
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by ~SuperPlayer~ View Post
    good luck with that i hope you figure it out


    EDIT : Blood Ur New Ur a MPGH & 89 Posts Kool Thats Really Impressive.
    Thanks... And im not new, i been at mpgh for like 2 years,.. just a new account.
    Keep me motivated for my hack development!

  9. The Following User Says Thank You to J For This Useful Post:

    higatoria (07-06-2010)

  10. #7
    ~SuperPlayer~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In A Dark House, And I Hear Voices D:!
    Posts
    351
    Reputation
    9
    Thanks
    35
    My Mood
    Angelic
    Quote Originally Posted by Blood View Post
    Thanks... And im not new, i been at mpgh for like 2 years,.. just a new account.
    Ohh Wait Ur That guy that got keylogged?

    "Art, like morality, consists in drawing the line somewhere."

    Successful Trades :
    12

    Accounts In Process of Ranking :
    8

  11. #8
    ainkut's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    14
    My Mood
    Innocent
    Is that done by unpacking the Combat Arms program or another DLL or something? Unpacking or whatever the other "un-" word was. Forgot it.

  12. #9
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by ~SuperPlayer~ View Post
    Ohh Wait Ur That guy that got keylogged?
    No. That was bravia.
    Keep me motivated for my hack development!

  13. The Following 2 Users Say Thank You to J For This Useful Post:

    drkillface (07-07-2010),higatoria (07-06-2010)

  14. #10
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    Hmmm that's some hard shit

  15. The Following User Says Thank You to Mr.Magicman For This Useful Post:

    higatoria (07-06-2010)

  16. #11
    ainkut's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    14
    My Mood
    Innocent
    *scratches head* still clueless. how am I suppose to get the structure out of a compiled executable? the old "unpack in PE Explorer and load in ollydebug thing"?

    edit: how the hell have i been thanked 6 times without my knowledge? that's scary that someone agrees with me..meh *shrugs*.
    Last edited by ainkut; 06-17-2010 at 07:58 AM.

  17. #12
    xXNoobAlertXx's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    125
    Reputation
    9
    Thanks
    76
    Use this and put in the NPC positions.

    Code:
    void teleport()
    {
        DWORD dwPlayerPtr = *(DWORD*)playerpointer;
        if(dwPlayerPtr != 0)
        {
            //save:
            if (GetAsyncKeyState(VK_F5))//tasten change
            {
                posiX = *(float*)(dwPlayerPtr + offsetX);
                posiY = *(float*)(dwPlayerPtr + offsetY);
                posiZ = *(float*)(dwPlayerPtr + offsetZ);
            }
    
            //teleport to saved:
            if (GetAsyncKeyState(VK_F6))
            {
                *(float*)(dwPlayerPtr + offsetX) = posiX;
                *(float*)(dwPlayerPtr + offsetY) = posiY;
                *(float*)(dwPlayerPtr + offsetZ) = posiZ;
            }
        }
    }
    
    void HackThread()
    {
        for(;;)
        {
            teleport();
            Sleep(40);
        }
    }

  18. The Following User Says Thank You to xXNoobAlertXx For This Useful Post:

    ainkut (06-17-2010)

  19. #13
    ainkut's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    14
    My Mood
    Innocent
    I think im gonna needa convert that for powerfear's base. Looks like Gellin's as it is. But thanks for that.

    Now my thing has been, i need to get the structures.

  20. #14
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Oh man I was Late :P
    TOPBLAST was Hay
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  21. #15
    ainkut's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    137
    Reputation
    10
    Thanks
    14
    My Mood
    Innocent
    *open fridge full of sodas and diet sodad* join in. i dont need them.

Page 1 of 5 123 ... LastLast

Similar Threads

  1. <releasing 2 morrow> new opk hack ~source code~ C++
    By pikamew4 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 12-02-2009, 02:59 PM
  2. Coding an OPK hack
    By dohp111 in forum Combat Arms Discussions
    Replies: 26
    Last Post: 10-20-2009, 03:51 PM
  3. OPK Hack Free
    By Mike Green Day in forum WarRock - International Hacks
    Replies: 21
    Last Post: 09-13-2007, 09:18 PM
  4. What Is OPK Hack?
    By EdenAsus in forum WarRock - International Hacks
    Replies: 10
    Last Post: 07-16-2007, 12:32 AM
  5. T> opk hack for bypass newly updated
    By nnumel5 in forum Trade Accounts/Keys/Items
    Replies: 4
    Last Post: 05-23-2007, 07:52 AM