Thread: [help]

Page 1 of 2 12 LastLast
Results 1 to 15 of 21

Hybrid View

  1. #1
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy

    [help]

    ok so im working on a opk
    here is my source
    Code:
    #include <windows.h>
    #define charposoffset 0x66F34 //player pointer 
    #define otherplyrptr 0x37113378 //random pointer 
    #define posyoffset 0xCC 
    #define posxoffset 0xC8 
    #define yoffset 0xCC 
    #define posy
    #define playertarget
    #define posptr
    
    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;
    }
    and when i compile i get theis errors but i dont understand
    Code:
    1>------ Rebuild All started: Project: telekill, Configuration: Debug Win32 ------
    1>Deleting intermediate and output files for project 'telekill', configuration 'Debug|Win32'
    1>Compiling...
    1>telekill.cpp
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(33) : error C2143: syntax error : missing ';' before '='
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(34) : error C2143: syntax error : missing ';' before '='
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(35) : error C2143: syntax error : missing ';' before '='
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(36) : error C2059: syntax error : ','
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(37) : error C2143: syntax error : missing ';' before '='
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(38) : error C2059: syntax error : ','
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(39) : error C2143: syntax error : missing ';' before '='
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(44) : error C2059: syntax error : '>'
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(45) : error C2143: syntax error : missing ';' before '{'
    1>c:\users\--------\documents\visual studio 2008\projects\telekill\telekill\telekill.cpp(46) : error C2059: syntax error : '='
    1>Build log was saved at "file://c:\Users\--------\Documents\Visual Studio 2008\Projects\telekill\telekill\Debug\BuildLog.htm "
    1>telekill - 10 error(s), 0 warning(s)
    ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========[
    help please
    Last edited by speedforyou; 10-03-2010 at 04:37 AM.

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  2. #2
    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
    Lol the error say's it all.

  3. #3
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    i dont get it can you teamveiw?

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  4. #4
    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
    Show us the source or its kinda hard to help you... had this error before when my compiler fucked up and i had those ; after every line...

  5. #5
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    added the source

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  6. #6
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    I believe that this is in English?

    [ missing ';' before '=' ] The errors also have the line numbers, plus highlights the code for you...

  7. The Following 2 Users Say Thank You to freedompeace For This Useful Post:

    eXaLtIc™ (10-03-2010),markoj (10-03-2010)

  8. #7
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    just teamveiw me and help me please!!

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  9. #8
    eXaLtIc™'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    203
    Reputation
    10
    Thanks
    144
    Quote Originally Posted by speedforyou View Post
    just teamveiw me and help me please!!
    Sure ill teamview you look in your pm's

  10. #9
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    thats noob errors
    example:
    first ur posptr is Clientfx.fxd
    second step it is the offset. its not both, its by hacking only the offset(Game-Crash)
    but VisualStudio will never say u that
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

  11. #10
    doofbla's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Biel*****/Germany
    Posts
    369
    Reputation
    10
    Thanks
    179
    My Mood
    Psychedelic
    omg you just c+p from Topblast!
    Since he released his base Telekills and OPKs are coming around like hell from every choob here -.-


    Read the errors ...
    _____________________________________________

    READING TUTORIAL:

    1. READ MY POST
    2. THINK ABOUT MY POST
    3. PRESS THANKS
    4. MAYBE CORRECT MY POSTS :P




    Dijkstra:
    "Computer Science is no more about computers than astronomy is about
    telescopes."


    THANKS BUTTON RIGHT DOWN --->

  12. #11
    LightzOut's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    185
    Reputation
    11
    Thanks
    25
    Quote Originally Posted by doofbla View Post
    omg you just c+p from Topblast!
    Since he released his base Telekills and OPKs are coming around like hell from every choob here -.-


    Read the errors ...
    And where do you think topblasts got that source? Google.

    And here is a link to the original source: https://pastebin.com/dQj6FHR2

    Or here: https://pastebin.com/DYbJKcsy

    There are even more too. All way before topblasts released his edited hans menu.
    Last edited by LightzOut; 10-03-2010 at 02:29 PM.

  13. The Following User Says Thank You to LightzOut For This Useful Post:

    NOOB (10-03-2010)

  14. #12
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    i found it on google thank you very much

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  15. #13
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Wow You Dont Even Know The Syntax

  16. The Following User Says Thank You to whit For This Useful Post:

    markoj (10-03-2010)

  17. #14
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    DRAW posy
    DRAW playertarget
    DRAW posptr
    xD

    H A X O
    Email : Noobmem@hotmail.com


  18. #15
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by mo3ad001 View Post
    DRAW posy
    DRAW playertarget
    DRAW posptr
    xD
    You Dont Either...
    "DWORD" Not DRAW

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help Request] Combat arms Vid help
    By djw111 in forum Combat Arms Help
    Replies: 4
    Last Post: 12-24-2011, 05:06 PM
  2. [Help Request] AFK Bot [help]
    By fet in forum Combat Arms Help
    Replies: 7
    Last Post: 04-28-2011, 03:17 AM
  3. [Help Request] Injector Admin help
    By asdfgas in forum Combat Arms Help
    Replies: 4
    Last Post: 04-27-2011, 06:12 PM
  4. [Help Request] Ajuda / Help
    By - Battery' in forum Combat Arms BR Coding Help
    Replies: 3
    Last Post: 04-22-2011, 07:15 PM
  5. [Help Request] Help my!
    By Windowns7 in forum Combat Arms BR Coding Help
    Replies: 2
    Last Post: 04-18-2011, 01:41 PM