Page 4 of 6 FirstFirst ... 23456 LastLast
Results 46 to 60 of 89
  1. #46
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by wassup40 View Post
    I cant learn from nothing,
    and would i put that code at the buttom of the source i sad i need help with?.
    Yes, but you can learn from a computer connected to the Internet.

    I learnt my programming skills from meddling around with C++. I have never read a book on it to date.

  2. #47
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Quote Originally Posted by Jabuuty671 View Post
    This thread totally contradicts your avatar and signature i made

    You dun have the C++ down, and you don't even have an OPK/Telekilll (see signature)

    :/ sad monster, i read all posts (all 5 pages)
    I never said i had opk./

  3. #48
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by Jabuuty671 View Post
    This thread totally contradicts your avatar and signature i made

    You dun have the C++ down, and you don't even have an OPK/Telekilll (see signature)

    :/ sad monster, i read all posts (all 5 pages)
    oh shit D: Jabuuty sounds angry /

  4. #49
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by wassup40 View Post

    I never said i had opk./
    It's called misleading people. You don't need to say that you do - you simply inferred it.

    Jabuuty671 may have thought differently if you told him you were misleading people with your signature. But hey, most signatures at MPGH CA source code section are fake - "VIP -60%, OPK - 32%, AIMBOT - 99%, DirectX hook - 99% (need a DirectX hook)"...

  5. #50
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Anyway can ya help me fix undefined.

  6. #51
    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 freedompeace View Post
    It's called misleading people. You don't need to say that you do - you simply inferred it.

    Jabuuty671 may have thought differently if you told him you were misleading people with your signature. But hey, most signatures at MPGH CA source code section are fake - "VIP -60%, OPK - 32%, AIMBOT - 99%, DirectX hook - 99% (need a DirectX hook)"...
    QFTT (too short)

  7. #52
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    well i have this
    Code:
    #include <windows.h>
    #define charposoffset 0x66F34 //player pointer 
    #define otherplyrptr 0x3782E260 //random pointer 
    #define posyoffset 0xCC 
    #define posxoffset 0xC8 
    #define yoffset 0xCC 
    
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll"     ) != NULL 
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL 
    && GetModuleHandleA( "CShell.dll"   ) != NULL )
    return true;
    return false;
    }
    
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }    
    void main()
    {
    posptr=NULL; 
    posptr = (DWORD)GetModuleHandleA("ClientFX.fxd"); 
    posptr += charposoffset; 
    memcpy(&posy,(void *)(posptr),4); 
    posy += posyoffset; 
    memcpy(&playertarget,(void *)(otherplyrptr),4); 
    playertarget += yoffset; 
    while(true)
    {
    PushToConsole("SkelModelStencil 1");
    
    if(posy > posyoffset && playertarget > yoffset) 
                            { 
                                    *(float*)playertarget = *(float*)posy; 
                                    *(float*)(playertarget+0x4) = *(float*)(posy+0x4); 
                                    *(float*)(playertarget-0x4) = *(float*)(posy-0x4); 
                            }  
    }
    }
    DWORD WINAPI dwHackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(100);
    main();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    iam using codernever's tut to just test,
    but posptr,
    posy,
    and playertarget are undefined.

  8. #53
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by wassup40 View Post

    but posptr,
    posy,
    and playertarget are undefined.
    gee, what could that possibly mean ? the many mysteries of C++....

  9. #54
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    but how do i define them? theres no point typing #define posy becouse that wouldnt do anything.

  10. #55
    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 Crash View Post
    gee, what could that possibly mean ? the many mysteries of C++....
    I dont know. C++ is suck an alien language.
    Noone will ever know what is means :\
    Better take it down to Area 51 :P

  11. #56
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by wassup40 View Post
    but how do i define them? theres no point typing #define posy becouse that wouldnt do anything.
    ._.

    You must have lied about learning ANY C++ at all.

    The first thing you learn in ANY language is how to define a function.

  12. #57
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    i have watched like 41 vids and nun mention how to do this..

  13. #58
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by freedompeace View Post
    ._.

    You must have lied about learning ANY C++ at all.

    The first thing you learn in ANY language is how to define a function.
    It's not a function...

    And that C+P opk source is really messy...

  14. #59
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    I wish u guy's would stop answering my question with something retarded i just want it answerd !

  15. #60
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by wassup40 View Post
    I wish u guy's would stop answering my question with something retarded i just want it answerd !
    IDK ?!!?

    Code:
    #define posy 0x?!?@?!?@
    
    DWORD posy = !!?!??!@?!@??;
    ????!?@?#!@?%$?$$&?%^?*?

Page 4 of 6 FirstFirst ... 23456 LastLast

Similar Threads

  1. help with NPC opk/telekill
    By supercarz1991 in forum Combat Arms Coding Help & Discussion
    Replies: 16
    Last Post: 02-06-2011, 12:18 AM
  2. Help OPK
    By Shakey1232 in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 10-21-2008, 03:03 AM
  3. (help) OPK
    By shawnee21 in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 08-21-2008, 02:26 PM
  4. [Help] Opk, ByPass
    By Raever in forum Visual Basic Programming
    Replies: 4
    Last Post: 06-09-2008, 11:30 AM
  5. [Help] OPK
    By JuniorD in forum WarRock - International Hacks
    Replies: 3
    Last Post: 11-26-2007, 12:36 AM